From owner-freebsd-questions@FreeBSD.ORG Wed Dec 6 05:35:59 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 9EF9516A403 for ; Wed, 6 Dec 2006 05:35:59 +0000 (UTC) (envelope-from lane@joeandlane.com) Received: from elasmtp-banded.atl.sa.earthlink.net (elasmtp-banded.atl.sa.earthlink.net [209.86.89.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id E08BE43CA5 for ; Wed, 6 Dec 2006 05:35:15 +0000 (GMT) (envelope-from lane@joeandlane.com) Received: from [66.47.111.183] (helo=joeandlane.com) by elasmtp-banded.atl.sa.earthlink.net with asmtp (Exim 4.34) id 1GrpRk-0004dK-Gl for freebsd-questions@freebsd.org; Wed, 06 Dec 2006 00:35:56 -0500 Received: from joeandlane.com (localhost.localnet.local [127.0.0.1]) by joeandlane.com (8.13.8/8.13.1) with ESMTP id kB65cYlX036918 for ; Tue, 5 Dec 2006 23:38:34 -0600 (CST) (envelope-from lane@joeandlane.com) Received: from localhost (localhost [[UNIX: localhost]]) by joeandlane.com (8.13.8/8.13.1/Submit) id kB65cYpa036916 for freebsd-questions@freebsd.org; Tue, 5 Dec 2006 23:38:34 -0600 (CST) (envelope-from lane@joeandlane.com) X-Authentication-Warning: joeandlane.com: lholcombe set sender to lane@joeandlane.com using -f From: Lane To: freebsd-questions@freebsd.org Date: Tue, 5 Dec 2006 23:38:34 -0600 User-Agent: KMail/1.9.4 References: <000301c718f3$91915990$5e0aa8c0@CHN.EGURKHA.COM> In-Reply-To: <000301c718f3$91915990$5e0aa8c0@CHN.EGURKHA.COM> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200612052338.34366.lane@joeandlane.com> X-CD-SOLUTIONS-MailScanner-Information: Please contact the ISP for more information X-CD-SOLUTIONS-MailScanner: Found to be clean X-CD-SOLUTIONS-MailScanner-From: lane@joeandlane.com X-ELNK-Trace: e56a4b6ca9bdfda11aa676d7e74259b7b3291a7d08dfec798f65ed50a6f03da7bc3dee0602e63aaa350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 66.47.111.183 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:35:59 -0000 On Tuesday 05 December 2006 23:01, ratheesh@eginnovations.com wrote: > Hi Team > > 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 > > but I couldnt able to telnet the server both locally or remote > > Regards > > Ratheesh > > > > _______________________________________________ The way to do this "live" (i.e. without rebooting) is ls -al | grep inetd take note othe number, such as: 697 ?? Is 0:00.01 /usr/sbin/inetd -wW -C 60 Then kill -HUP 697 This will restart inetd and anything that it manages for you, such as telnet, ftp, or whatever. lane