From owner-freebsd-questions@FreeBSD.ORG Wed Dec 6 05:12:44 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 385D416A492 for ; Wed, 6 Dec 2006 05:12:44 +0000 (UTC) (envelope-from on@cs.ait.ac.th) Received: from mail.cs.ait.ac.th (mail.cs.ait.ac.th [192.41.170.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A53943CAC for ; Wed, 6 Dec 2006 05:11:58 +0000 (GMT) (envelope-from on@cs.ait.ac.th) Received: from banyan.cs.ait.ac.th (banyan.cs.ait.ac.th [192.41.170.5]) by mail.cs.ait.ac.th (8.13.1/8.12.11) with ESMTP id kB65BfQb018064 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 6 Dec 2006 12:11:41 +0700 (ICT) Received: (from on@localhost) by banyan.cs.ait.ac.th (8.13.3/8.12.11) id kB65Cckq076549; Wed, 6 Dec 2006 12:12:38 +0700 (ICT) Date: Wed, 6 Dec 2006 12:12:38 +0700 (ICT) Message-Id: <200612060512.kB65Cckq076549@banyan.cs.ait.ac.th> From: Olivier Nicole To: ratheesh@eginnovations.com In-reply-to: <000301c718f3$91915990$5e0aa8c0@CHN.EGURKHA.COM> (ratheesh@eginnovations.com) References: <000301c718f3$91915990$5e0aa8c0@CHN.EGURKHA.COM> X-Virus-Scanned: on CSIM by amavisd-milter (http://www.amavis.org/) Cc: freebsd-questions@freebsd.org Subject: Re: cant able to telnet the freebsd system X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 05:12:44 -0000 > I put entry in /etc/rc.conf as > inetd_enable="YES" > and after that /etc/inetd.conf I uncomment the telnet line to activate > the telnet server > then restarted the telnet service > /etc/rc.d/inetd restart > and it get restarted If you had to enable inetd, it means it was the first time it was executed, maybe "/etc/rc.d/inetd start" would be better as it was not started before. Are you sure that inetd is running? ps auwx|grep inetd Are you sure that your machine is listening on telnet port? netstat -a |grep telnet Olivier