Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 17 Jan 2014 01:23:31 +0000 (UTC)
From:      "Andrey V. Elsukov" <ae@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r260799 - user/ae/inet6/etc/rc.d
Message-ID:  <201401170123.s0H1NVPP002940@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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] | '')



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401170123.s0H1NVPP002940>