From owner-svn-src-user@FreeBSD.ORG Fri Jan 17 01:23:31 2014 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9847BA1B; Fri, 17 Jan 2014 01:23:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 849CC1D27; Fri, 17 Jan 2014 01:23:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0H1NVph002941; Fri, 17 Jan 2014 01:23:31 GMT (envelope-from ae@svn.freebsd.org) Received: (from ae@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0H1NVPP002940; Fri, 17 Jan 2014 01:23:31 GMT (envelope-from ae@svn.freebsd.org) Message-Id: <201401170123.s0H1NVPP002940@svn.freebsd.org> From: "Andrey V. Elsukov" Date: Fri, 17 Jan 2014 01:23:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r260799 - user/ae/inet6/etc/rc.d X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Jan 2014 01:23:31 -0000 Author: ae Date: Fri Jan 17 01:23:31 2014 New Revision: 260799 URL: http://svnweb.freebsd.org/changeset/base/260799 Log: Do not install routes to LLA destinations. Modified: user/ae/inet6/etc/rc.d/routing Modified: user/ae/inet6/etc/rc.d/routing ============================================================================== --- user/ae/inet6/etc/rc.d/routing Fri Jan 17 01:15:34 2014 (r260798) +++ user/ae/inet6/etc/rc.d/routing Fri Jan 17 01:23:31 2014 (r260799) @@ -186,20 +186,11 @@ static_inet6() # Add pre-defined static routes first. ipv6_static_routes="_v4mapped _v4compat ${ipv6_static_routes}" - ipv6_static_routes="_lla _llma ${ipv6_static_routes}" # disallow "internal" addresses to appear on the wire ipv6_route__v4mapped="::ffff:0.0.0.0 -prefixlen 96 ::1 -reject ${fibmod}" ipv6_route__v4compat="::0.0.0.0 -prefixlen 96 ::1 -reject ${fibmod}" - # Disallow link-local unicast packets without outgoing scope - # identifiers. However, if you set "ipv6_default_interface", - # for the host case, you will allow to omit the identifiers. - # Under this configuration, the packets will go to the default - # interface. - ipv6_route__lla="fe80:: -prefixlen 10 ::1 -reject ${fibmod}" - ipv6_route__llma="ff02:: -prefixlen 16 ::1 -reject ${fibmod}" - # Add default route. case ${ipv6_defaultrouter} in [Nn][Oo] | '')