From mboxrd@z Thu Jan 1 00:00:00 1970 From: erik quanstrom Date: Thu, 28 Aug 2008 13:58:45 -0400 To: antonin.vecera@gmail.com, 9fans@9fans.net Message-ID: <4cdccb8951708f610b57db148464e028@coraid.com> In-Reply-To: <10b109140808280915h3216372bh219ec5d56b54e1f8@mail.gmail.com> References: <10b109140808280915h3216372bh219ec5d56b54e1f8@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] What is the status of IPv6? Topicbox-Message-UUID: 09eeae18-ead4-11e9-9d60-3106f5b1d025 > - assign IPv6 link-local address (ip/ipconfig -6) > - manually assign IPv6 address to my ethernet card (ip/ipconfig ether > /net/ether0 add fd32:6e43:fb94::a) ipconfig -N only checks ndb if there is no valid ip on the interface. (cf. /sys/src/cmd/ip/ipconfig/main.c:^/main. dondbconfig is set with the -N flag. if(!validip(conf.laddr) && !ppp) if(dondbconfig) ndbconfig(); else dodhcp = 1; ) also, when booting, ipconfig (typically) run with no options and checks with dhcpd. since dhcp returns a single address, you can't use this option to configure multiple addresses to the same interface. you could specify ip=$ipv6address. i would think the drawback to this would be that you loose your ip4 address. you can always add additional ip addresses in /rc/bin/cpurc or /rc/bin/termrc if you wish, but it seems a bit clunky. one is tempted to suggest adding OP9ipaddr1 to dhcpd's menu of plan 9 specific options. - erik