From owner-freebsd-questions@FreeBSD.ORG Fri Sep 16 02:31:18 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37F2816A41F for ; Fri, 16 Sep 2005 02:31:18 +0000 (GMT) (envelope-from rjhjr@cox.net) Received: from eastrmmtao02.cox.net (eastrmmtao02.cox.net [68.230.240.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id A158B43D46 for ; Fri, 16 Sep 2005 02:31:17 +0000 (GMT) (envelope-from rjhjr@cox.net) Received: from localhost ([68.230.186.138]) by eastrmmtao02.cox.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20050916023115.CWLJ20229.eastrmmtao02.cox.net@localhost> for ; Thu, 15 Sep 2005 22:31:15 -0400 Date: Thu, 15 Sep 2005 22:31:16 -0400 From: Bob Hall To: freebsd-questions@freebsd.org Message-ID: <20050916023116.GA34278@kongemord.krig.net> Mail-Followup-To: Bob Hall , freebsd-questions@freebsd.org References: <000a01c5ba63$13d238c0$14d71840@casey> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <000a01c5ba63$13d238c0$14d71840@casey> User-Agent: Mutt/1.4.2.1i Subject: Re: Can I do this? 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: Fri, 16 Sep 2005 02:31:18 -0000 On Thu, Sep 15, 2005 at 10:05:12PM -0400, Lisa Casey wrote: > What's the quickest & easiest way to change the IP address on the new 5.3 > box? Should I do it via /stand/sysinstall or should I change it in > /etc/rc.conf and /etc/hosts (or do I need to do something with ifconfig - > which I'm least comfortable with). Make the changes in rc.conf so that the box will be configured correctly then next time it is rebooted. To change the address without rebooting, you'll have to use ifconfig. Do ifconfig -a to get the device, e.g. xl0. Then do ifconfig xl0 192.168.2.1 changing 'xl0' to your device and '192.168.2.1' to your address.