svn commit: r231327 - stable/8/sys/net

Bjoern A. Zeeb bz at FreeBSD.org
Fri Feb 10 00:51:33 UTC 2012


Author: bz
Date: Fri Feb 10 00:51:32 2012
New Revision: 231327
URL: http://svn.freebsd.org/changeset/base/231327

Log:
  MFC r230510:
  
   Replace random ARIN direct assignment legacy IPs with proper RFC 5735
   TEST-NET1 block for use in documentation and example code addresses.

Modified:
  stable/8/sys/net/route.c
Directory Properties:
  stable/8/sys/   (props changed)

Modified: stable/8/sys/net/route.c
==============================================================================
--- stable/8/sys/net/route.c	Fri Feb 10 00:51:23 2012	(r231326)
+++ stable/8/sys/net/route.c	Fri Feb 10 00:51:32 2012	(r231327)
@@ -1502,10 +1502,10 @@ rtinit1(struct ifaddr *ifa, int cmd, int
 #ifdef RADIX_MPATH
 			/*
 			 * in case address alias finds the first address
-			 * e.g. ifconfig bge0 192.103.54.246/24
-			 * e.g. ifconfig bge0 192.103.54.247/24
-			 * the address set in the route is 192.103.54.246
-			 * so we need to replace it with 192.103.54.247
+			 * e.g. ifconfig bge0 192.0.2.246/24
+			 * e.g. ifconfig bge0 192.0.2.247/24
+			 * the address set in the route is 192.0.2.246
+			 * so we need to replace it with 192.0.2.247
 			 */
 			if (memcmp(rt->rt_ifa->ifa_addr,
 			    ifa->ifa_addr, ifa->ifa_addr->sa_len)) {


More information about the svn-src-all mailing list