diff --git a/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.xml b/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.xml index 7d4188610f..634f0622eb 100644 --- a/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.xml +++ b/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.xml @@ -4557,50 +4557,36 @@ Received 264951 bytes in 0.1 seconds - To automatically configure a machine on a - LAN which acts as a client, not a - router, two items are required. First to enable the - em0 to receive the router - solicitation messages, add this line to + To configure a &os; system as an + IPv6 client, add these two lines to rc.conf: - ifconfig_em0_ipv6="inet6 accept_rtadv" + ifconfig_em0_ipv6="inet6 accept_rtadv" +rtsold_enable="YES" - Secondly, the router solicitation daemon, &man.rtsol.8;, - should be enabled by adding the following to - rc.conf: - - rtsold_enable="YES" + The first line enables the specified interface to receive + router solicitation messages. The second line enables the + router solicitation daemon, &man.rtsol.8;. For &os; 8.x, - add: + add a third line: ipv6_enable="YES" - To statically assign the IPv6 - address, - 2001:db8:4672:6565:2026:5043:2d42:5344, - to fxp0, add the following for - &os; 9.x: + If the interface needs a statically assigned IPv6 + address, add an entry to specify the static address and + associated prefix length: - ifconfig_fxp0_ipv6="inet6 2001:db8:4672:6565:2026:5043:2d42:5344 prefixlen 64" + ifconfig_fxp0_ipv6="inet6 2001:db8:4672:6565:2026:5043:2d42:5344 prefixlen 64" - - Be sure to change prefixlen - 64 to the appropriate value for the - subnet. - + On a &os; 8.x system, + that line uses this format instead: - For &os; 8.x, - add: + ipv6_ifconfig_fxp0="2001:db8:4672:6565:2026:5043:2d42:5344" - ipv6_ifconfig_fxp0="2001:db8:4672:6565:2026:5043:2d42:5344" + To assign a default router, specify its address: - To assign a default router of - 2001:db8:4672:6565::1, add the - following to /etc/rc.conf: - - ipv6_defaultrouter="2001:db8:4672:6565::1" + ipv6_defaultrouter="2001:db8:4672:6565::1"