From owner-freebsd-questions@FreeBSD.ORG Fri Feb 23 19:22:23 2007 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 3C66516A4CE for ; Fri, 23 Feb 2007 19:22:23 +0000 (UTC) (envelope-from cryx-freebsd@h3q.com) Received: from mail.h3q.com (mail.h3q.com [217.13.206.148]) by mx1.freebsd.org (Postfix) with ESMTP id 8CBCF13C4B7 for ; Fri, 23 Feb 2007 19:22:18 +0000 (UTC) (envelope-from cryx-freebsd@h3q.com) Received: (qmail 83000 invoked from network); 23 Feb 2007 19:22:10 -0000 Received: from unknown (HELO ?192.168.23.150?) (cryx@85.179.40.109) by mail.h3q.com with AES256-SHA encrypted SMTP; 23 Feb 2007 19:22:10 -0000 Message-ID: <45DF3EE1.6030901@h3q.com> Date: Fri, 23 Feb 2007 20:22:09 +0100 From: Philipp Wuensche User-Agent: Thunderbird 1.5.0.9 (Macintosh/20061207) MIME-Version: 1.0 To: Jim Stapleton References: <80f4f2b20702231107p1cf7f4f3n5896aa7e8ef0ecaf@mail.gmail.com> In-Reply-To: <80f4f2b20702231107p1cf7f4f3n5896aa7e8ef0ecaf@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: problems with jail 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, 23 Feb 2007 19:22:23 -0000 Jim Stapleton wrote: > Jail: > sjss@elrond 14:04:11 (0) ~ > sudo jail /jail/ legolas 192.168.1.85 > /bin/csh > %telnet 192.168.1.4 25 > Trying 192.168.1.4... > ^Z > Suspended > %kill %1 > [1] Terminated telnet 192.168.1.4 25 > %ifconfig -a > nve0: flags=8843 mtu 1500 > ether 00:13:d4:2e:2f:62 > media: Ethernet autoselect (100baseTX ) > status: active > plip0: flags=108810 mtu 1500 > lo0: flags=8049 mtu 16384 > > > OK, from host: > sjss@elrond 14:02:11 (0) ~ > ifconfig -a > nve0: flags=8843 mtu 1500 > inet 192.168.1.84 netmask 0xffffff00 broadcast 192.168.1.255 > ether 00:13:d4:2e:2f:62 > media: Ethernet autoselect (100baseTX ) > status: active > plip0: flags=108810 mtu 1500 > lo0: flags=8049 mtu 16384 > inet6 fe80::1%lo0 prefixlen 64 scopeid 0x3 > inet6 ::1 prefixlen 128 > inet 127.0.0.1 netmask 0xff000000 > sjss@elrond 14:04:08 (0) ~ > jls > JID IP Address Hostname Path > 1 192.168.1.85 legolas /jail > > > > Is that what you needed You only have configured the 192.168.1.84 ipaddr on your nve0 interface, you need to configure the 192.168.1.85 ipaddr. on the interface too. Delete the ifconfig_nve0="inet 192.168.1.84 netmask 255.255.255.0" line in rc.conf and replace it with ipv4_addrs_nve0="192.168.1.84-85/24" and do a reboot. If you don't want to reboot, use "ifconfig nve0 alias 192.168.1.85/32" to configure the alias while the system is running. You could also use the jail_example_interface="nve0" option in rc.conf and reboot, but I don't recommend that because it is somewhat broken and poorly implemented. greetings, philipp