From 157a5f2da7c80cf9ebea77c58ec8095e9b3333c9 Mon Sep 17 00:00:00 2001 From: pmikus Date: Tue, 12 May 2020 13:39:57 +0000 Subject: [PATCH] FIX: L3fwd properly Signed-off-by: pmikus Change-Id: Ibdfc0350a101c4815f25456176e25bb1d90fd881 --- .../trex/trex-sl-3n-ethip4-ip4dst253_l3fwd.py | 12 ++++++------ resources/libraries/bash/entry/patch_l3fwd_flip_routes | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/GPL/traffic_profiles/trex/trex-sl-3n-ethip4-ip4dst253_l3fwd.py b/GPL/traffic_profiles/trex/trex-sl-3n-ethip4-ip4dst253_l3fwd.py index ed4f5b5bd6..31e69e07ba 100644 --- a/GPL/traffic_profiles/trex/trex-sl-3n-ethip4-ip4dst253_l3fwd.py +++ b/GPL/traffic_profiles/trex/trex-sl-3n-ethip4-ip4dst253_l3fwd.py @@ -18,10 +18,10 @@ Stream profile: - Packet: ETH / IP / - Direction 0 --> 1: - Source IP address range: 20.20.20.2 - - Destination IP address range: 1.1.1.2 - 1.1.1.254 + - Destination IP address range: 198.18.0.2 - 198.18.0.254 - Direction 1 --> 0: - Source IP address range: 10.10.10.2 - - Destination IP address range: 2.1.1.2 - 2.1.1.254 + - Destination IP address range: 198.18.1.2 - 198.18.1.254 """ from trex.stl.api import * @@ -38,12 +38,12 @@ class TrafficStreams(TrafficStreamsBaseClass): # IPs used in packet headers. self.p1_src_start_ip = u"20.20.20.2" - self.p1_dst_start_ip = u"1.1.1.2" - self.p1_dst_end_ip = u"1.1.1.254" + self.p1_dst_start_ip = u"198.18.0.2" + self.p1_dst_end_ip = u"198.18.0.254" self.p2_src_start_ip = u"10.10.10.2" - self.p2_dst_start_ip = u"2.1.1.2" - self.p2_dst_end_ip = u"2.1.1.254" + self.p2_dst_start_ip = u"198.18.1.2" + self.p2_dst_end_ip = u"198.18.1.254" def define_packets(self): """Defines the packets to be sent from the traffic generator. diff --git a/resources/libraries/bash/entry/patch_l3fwd_flip_routes b/resources/libraries/bash/entry/patch_l3fwd_flip_routes index e0b204eb9c..c1fb0d93b3 100755 --- a/resources/libraries/bash/entry/patch_l3fwd_flip_routes +++ b/resources/libraries/bash/entry/patch_l3fwd_flip_routes @@ -2,9 +2,9 @@ patch --ignore-whitespace l3fwd_lpm.c <<"_EOF" 44,45c44,45 -< {IPv4(1, 1, 1, 0), 24, 0}, -< {IPv4(2, 1, 1, 0), 24, 1}, +< {RTE_IPV4(198, 18, 0, 0), 24, 0}, +< {RTE_IPV4(198, 18, 1, 0), 24, 1}, --- -> {IPv4(1, 1, 1, 0), 24, 1}, -> {IPv4(2, 1, 1, 0), 24, 0}, +> {RTE_IPV4(198, 18, 0, 0), 24, 1}, +> {RTE_IPV4(198, 18, 1, 0), 24, 0}, _EOF -- 2.16.6