[Midnightbsd-cvs] src [8585] trunk: add net.link.stf.permit_rfc1918 sysctl.

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Mon Sep 19 12:23:06 EDT 2016


Revision: 8585
          http://svnweb.midnightbsd.org/src/?rev=8585
Author:   laffer1
Date:     2016-09-19 12:23:05 -0400 (Mon, 19 Sep 2016)
Log Message:
-----------
add net.link.stf.permit_rfc1918 sysctl. You can use private IPv4 addresses with stf(4)

Modified Paths:
--------------
    trunk/share/man/man4/stf.4
    trunk/sys/net/if_stf.c

Modified: trunk/share/man/man4/stf.4
===================================================================
--- trunk/share/man/man4/stf.4	2016-09-19 16:21:27 UTC (rev 8584)
+++ trunk/share/man/man4/stf.4	2016-09-19 16:23:05 UTC (rev 8585)
@@ -29,7 +29,7 @@
 .\"
 .\" $MidnightBSD$
 .\"
-.Dd July 23, 2011
+.Dd December 28, 2012
 .Dt STF 4
 .Os
 .Sh NAME
@@ -180,6 +180,22 @@
 If you wish to use the configuration,
 you must not advertise your 6to4 address to others.
 .\"
+.Sh SYSCTL VARIABLES
+The following
+.Xr sysctl 8
+variables can be used to control the behavior of the
+.Nm stf .
+The default value is shown next to each variable.
+.Bl -tag -width indent
+.It Va net.link.stf.permit_rfc1918 : No 0
+The RFC3056 requires the use of globally unique 32-bit IPv4
+addresses. This sysctl variable controls the behaviour of this
+requirement. When it set to not 0, 
+.Nm stf 
+allows the use of private IPv4 addresses described in the RFC1918.
+This may be useful for an Intranet environment or when some mechanisms
+of network address translation (NAT) are used.
+.El
 .Sh EXAMPLES
 Note that
 .Li 8504:0506

Modified: trunk/sys/net/if_stf.c
===================================================================
--- trunk/sys/net/if_stf.c	2016-09-19 16:21:27 UTC (rev 8584)
+++ trunk/sys/net/if_stf.c	2016-09-19 16:23:05 UTC (rev 8585)
@@ -127,6 +127,11 @@
 SYSCTL_INT(_net_link_stf, OID_AUTO, route_cache, CTLFLAG_RW,
     &stf_route_cache, 0, "Caching of IPv4 routes for 6to4 Output");
 
+static int stf_permit_rfc1918 = 0;
+TUNABLE_INT("net.link.stf.permit_rfc1918", &stf_permit_rfc1918);
+SYSCTL_INT(_net_link_stf, OID_AUTO, permit_rfc1918, CTLFLAG_RW | CTLFLAG_TUN,
+    &stf_permit_rfc1918, 0, "Permit the use of private IPv4 addresses");
+
 #define STFNAME		"stf"
 #define STFUNIT		0
 
@@ -580,9 +585,10 @@
 	 * returns 1 if private address range:
 	 * 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16
 	 */
-	if ((ntohl(in->s_addr) & 0xff000000) >> 24 == 10 ||
+	if (stf_permit_rfc1918 == 0 && (
+	    (ntohl(in->s_addr) & 0xff000000) >> 24 == 10 ||
 	    (ntohl(in->s_addr) & 0xfff00000) >> 16 == 172 * 256 + 16 ||
-	    (ntohl(in->s_addr) & 0xffff0000) >> 16 == 192 * 256 + 168)
+	    (ntohl(in->s_addr) & 0xffff0000) >> 16 == 192 * 256 + 168))
 		return 1;
 
 	return 0;



More information about the Midnightbsd-cvs mailing list