From owner-svn-doc-head@freebsd.org Sat Jul 25 13:55:29 2015 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 37B359AAC62; Sat, 25 Jul 2015 13:55:29 +0000 (UTC) (envelope-from dru@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 279F618C8; Sat, 25 Jul 2015 13:55:29 +0000 (UTC) (envelope-from dru@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6PDtT1m053655; Sat, 25 Jul 2015 13:55:29 GMT (envelope-from dru@FreeBSD.org) Received: (from dru@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t6PDtTmu053654; Sat, 25 Jul 2015 13:55:29 GMT (envelope-from dru@FreeBSD.org) Message-Id: <201507251355.t6PDtTmu053654@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dru set sender to dru@FreeBSD.org using -f From: Dru Lavigne Date: Sat, 25 Jul 2015 13:55:29 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r47078 - head/en_US.ISO8859-1/books/handbook/advanced-networking X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Jul 2015 13:55:29 -0000 Author: dru Date: Sat Jul 25 13:55:28 2015 New Revision: 47078 URL: https://svnweb.freebsd.org/changeset/doc/47078 Log: Make interface naming consistent in this section. PR: 200501 Sponsored by: Essen DevSummit Hackathon Modified: head/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.xml Modified: head/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.xml Sat Jul 25 13:18:20 2015 (r47077) +++ head/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.xml Sat Jul 25 13:55:28 2015 (r47078) @@ -4495,8 +4495,8 @@ Received 264951 bytes in 0.1 seconds - In this example, - fe80::200:21ff:fe03:8e1%rl0 is an + In this example, the rl0 interface is + using fe80::200:21ff:fe03:8e1%rl0, an auto-configured link-local address which was automatically generated from the MAC address. @@ -4602,7 +4602,7 @@ Received 264951 bytes in 0.1 secondsrc.conf: - ifconfig_em0_ipv6="inet6 accept_rtadv" + ifconfig_rl0_ipv6="inet6 accept_rtadv" rtsold_enable="YES" The first line enables the specified interface to receive @@ -4618,12 +4618,12 @@ rtsold_enable="YES" 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_rl0_ipv6="inet6 2001:db8:4672:6565:2026:5043:2d42:5344 prefixlen 64" On a &os; 8.x system, that line uses this format instead: - ipv6_ifconfig_fxp0="2001:db8:4672:6565:2026:5043:2d42:5344" + ipv6_ifconfig_rl0="2001:db8:4672:6565:2026:5043:2d42:5344" To assign a default router, specify its address: @@ -4723,18 +4723,18 @@ rtsold_enable="YES" It is important to specify the interface on which to do IPv6 router solicitation. For example, to tell &man.rtadvd.8; to use - fxp0: + rl0: - rtadvd_interfaces="fxp0" + rtadvd_interfaces="rl0" Next, create the configuration file, /etc/rtadvd.conf as seen in this example: - fxp0:\ + rl0:\ :addrs#1:addr="2001:471:1f11:246::":prefixlen#64:tc=ether: - Replace fxp0 with the interface + Replace rl0 with the interface to be used and 2001:471:1f11:246:: with the prefix of the allocation.