From owner-freebsd-newbies@FreeBSD.ORG Mon Oct 4 21:08:07 2004 Return-Path: Delivered-To: freebsd-newbies@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B5A2A16A4CE for ; Mon, 4 Oct 2004 21:08:07 +0000 (GMT) Received: from sccmmhc92.asp.att.net (sccmmhc92.asp.att.net [204.127.203.212]) by mx1.FreeBSD.org (Postfix) with ESMTP id E530D43D1F for ; Mon, 4 Oct 2004 21:08:06 +0000 (GMT) (envelope-from radioguy@uni.edu) Received: from rei.dave.cedar-falls.ia.us (12-219-24-19.client.mchsi.com[12.219.24.19]) by sccmmhc92.asp.att.net (sccmmhc92) with SMTP id <20041004210806m9200at9h4e>; Mon, 4 Oct 2004 21:08:06 +0000 Received: by rei.dave.cedar-falls.ia.us (sSMTP sendmail emulation); Mon, 4 Oct 2004 16:09:40 -0500 Date: Mon, 4 Oct 2004 16:09:39 -0500 From: Dave Vollenweider To: Daniel M Message-ID: <20041004210939.GA461@rei.dave.cedar-falls.ia.us> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i cc: freebsd-newbies@freebsd.org Subject: Re: network question X-BeenThere: freebsd-newbies@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Gathering place for new users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Oct 2004 21:08:07 -0000 On Mon, Oct 04, 2004 at 08:42:45PM +0000, Daniel M wrote: > How do i configure DHCP? > > and Telnet/SSH server? > First, not to brush you off, but all technical questions go to freebsd-questions. You don't have to subscribe to send a message to them and you can view the reply from the mailing list archive on the FreeBSD web site. That said, are you trying to configure DHCP as a client or as a server? I can guarantee you that's the first question people will ask if you do bring this over to freebsd-questions. As for telent/SSH, I don't recommend telnet at all; it's notorious for being insecure since everything's done in the clear and someone who's sniffing your connection can get your username and password easily. Plus SSH has more features, including port forwarding and scp and sftp; you can use it as a secure FTP server when you use sftp into your box running sshd. A simple sshd_enable="YES" in your rc.conf file will turn the SSH server on when rc.conf is read again, either from rebooting or returning from single-user mode. You can read the sshd man page and look through the /etc/ssh/sshd_config file to find out more in addition to posting your question in freebsd-questions. This page in the FreeBSD Handbook will also give you some tips: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/openssh.html Hope this helps. - Dave V.