From owner-svn-src-all@FreeBSD.ORG Sun Apr 18 05:49:16 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C54E2106564A; Sun, 18 Apr 2010 05:49:16 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from pele.citylink.co.nz (pele.citylink.co.nz [202.8.44.226]) by mx1.freebsd.org (Postfix) with ESMTP id 846EC8FC16; Sun, 18 Apr 2010 05:49:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by pele.citylink.co.nz (Postfix) with ESMTP id 5076993736; Sun, 18 Apr 2010 17:49:15 +1200 (NZST) X-Virus-Scanned: Debian amavisd-new at citylink.co.nz Received: from pele.citylink.co.nz ([127.0.0.1]) by localhost (pele.citylink.co.nz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6tBhq0rPfNQ8; Sun, 18 Apr 2010 17:49:10 +1200 (NZST) Received: from citylink.fud.org.nz (unknown [202.8.44.45]) by pele.citylink.co.nz (Postfix) with ESMTP; Sun, 18 Apr 2010 17:49:10 +1200 (NZST) Received: by citylink.fud.org.nz (Postfix, from userid 1001) id 19A8D11432; Sun, 18 Apr 2010 17:49:10 +1200 (NZST) Date: Sun, 18 Apr 2010 17:49:09 +1200 From: Andrew Thompson To: Doug Barton Message-ID: <20100418054909.GA8617@citylink.fud.org.nz> References: <201004171848.o3HImI3u040381@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201004171848.o3HImI3u040381@svn.freebsd.org> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r206769 - in head: etc/defaults share/man/man5 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Apr 2010 05:49:16 -0000 On Sat, Apr 17, 2010 at 06:48:18PM +0000, Doug Barton wrote: > Author: dougb > Date: Sat Apr 17 18:48:18 2010 > New Revision: 206769 > URL: http://svn.freebsd.org/changeset/base/206769 > > Log: > In case a user wants to configure only an IPv6 link-local address > add an example that shows how to do it. > > Modified: > head/etc/defaults/rc.conf > head/share/man/man5/rc.conf.5 > > Modified: head/etc/defaults/rc.conf > ============================================================================== > --- head/etc/defaults/rc.conf Sat Apr 17 18:35:07 2010 (r206768) > +++ head/etc/defaults/rc.conf Sat Apr 17 18:48:18 2010 (r206769) > @@ -211,6 +211,7 @@ ifconfig_lo0="inet 127.0.0.1" # default > #ifconfig_lo0_alias0="inet 127.0.0.254 netmask 0xffffffff" # Sample alias entry. > #ifconfig_ed0_ipx="ipx 0x00010010" # Sample IPX address family entry. > #ifconfig_ed0_ipv6="RTADV" # Sample IPv6 entry for RA/rtsol(8) > +#ifconfig_ed0_ipv6="inet6 auto_linklocal" # To configure only link-local Magic ifconfig parameters in rc.conf are usually in upper case, what makes this one different? Andrew