examples/l3fwd: fix IP reserved address range
authorStephen Hemminger <stephen@networkplumber.org>
Tue, 5 Nov 2019 16:09:21 +0000 (08:09 -0800)
committerDavid Marchand <david.marchand@redhat.com>
Fri, 8 Nov 2019 14:34:10 +0000 (15:34 +0100)
The original patch used incorrect subnet range for testing.

Fixes: 37afe381bde4 ("examples/l3fwd: use reserved IP addresses")
Cc: stable@dpdk.org
Reported-by: Hemant Agrawal <hemant.agrawal@nxp.com>
Reported-by: Ferruh Yigit <ferruh.yigit@intel.com>
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com>
doc/guides/testpmd_app_ug/run_app.rst
examples/l3fwd/l3fwd_lpm.c

index 00e0c2a..858cec7 100644 (file)
@@ -129,9 +129,9 @@ The command line options are:
 *   ``--tx-ip=SRC,DST``
 
     Set the source and destination IP address used when doing transmit only test.
-    The defaults address values are source 192.18.0.1 and
-    destination 192.18.0.2. These are special purpose addresses
-    reserved for benchmarking (RFC 2544).
+    The defaults address values are source 198.18.0.1 and
+    destination 198.18.0.2. These are special purpose addresses
+    reserved for benchmarking (RFC 5735).
 
 *   ``--tx-udp=SRC[,DST]``
 
index a3a65f7..349de27 100644 (file)
@@ -41,16 +41,16 @@ struct ipv6_l3fwd_lpm_route {
        uint8_t  if_out;
 };
 
-/* 192.18.0.0/16 are set aside for RFC2544 benchmarking. */
+/* 198.18.0.0/16 are set aside for RFC2544 benchmarking (RFC5735). */
 static struct ipv4_l3fwd_lpm_route ipv4_l3fwd_lpm_route_array[] = {
-       {RTE_IPV4(192, 18, 0, 0), 24, 0},
-       {RTE_IPV4(192, 18, 1, 0), 24, 1},
-       {RTE_IPV4(192, 18, 2, 0), 24, 2},
-       {RTE_IPV4(192, 18, 3, 0), 24, 3},
-       {RTE_IPV4(192, 18, 4, 0), 24, 4},
-       {RTE_IPV4(192, 18, 5, 0), 24, 5},
-       {RTE_IPV4(192, 18, 6, 0), 24, 6},
-       {RTE_IPV4(192, 18, 7, 0), 24, 7},
+       {RTE_IPV4(198, 18, 0, 0), 24, 0},
+       {RTE_IPV4(198, 18, 1, 0), 24, 1},
+       {RTE_IPV4(198, 18, 2, 0), 24, 2},
+       {RTE_IPV4(198, 18, 3, 0), 24, 3},
+       {RTE_IPV4(198, 18, 4, 0), 24, 4},
+       {RTE_IPV4(198, 18, 5, 0), 24, 5},
+       {RTE_IPV4(198, 18, 6, 0), 24, 6},
+       {RTE_IPV4(198, 18, 7, 0), 24, 7},
 };
 
 /* 2001:0200::/48 is IANA reserved range for IPv6 benchmarking (RFC5180) */