diff options
author | Jan Gelety <jgelety@cisco.com> | 2020-08-06 03:34:31 +0200 |
---|---|---|
committer | Jan Gelety <jgelety@cisco.com> | 2020-08-07 22:03:19 +0200 |
commit | ff1f49d9ba97ddfee3229907e3a344503e072578 (patch) | |
tree | 44897453f4cddb795ea8adb4cb05af2d12a6f975 /GPL/traffic_profiles/trex/trex-sl-2n-ethip4udp-1u1p.py | |
parent | 42d1016e92cf2b8ba4e493d878c475de325a447a (diff) |
Perf: NAT44 endpoint-dependent mode - udp, part I
- continuation of https://gerrit.fd.io/r/c/csit/+/26898 as there was
reached limit of changes (1000)
Jira: CSIT-1711
- udp synthetic profiles w/o data packets
- udp cps perf tests, phase I (no special "search cps" KW)
Part I means that we are using MRR tests to collect traffic data
until there is ready new CPS test type with corresponding algorithm.
Change-Id: I0d30feb9ecf1d0bff937152656f8eb422f831378
Signed-off-by: Jan Gelety <jgelety@cisco.com>
Diffstat (limited to 'GPL/traffic_profiles/trex/trex-sl-2n-ethip4udp-1u1p.py')
-rw-r--r-- | GPL/traffic_profiles/trex/trex-sl-2n-ethip4udp-1u1p.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/GPL/traffic_profiles/trex/trex-sl-2n-ethip4udp-1u1p.py b/GPL/traffic_profiles/trex/trex-sl-2n-ethip4udp-1u1p.py index a892ec8822..4f96ffe342 100644 --- a/GPL/traffic_profiles/trex/trex-sl-2n-ethip4udp-1u1p.py +++ b/GPL/traffic_profiles/trex/trex-sl-2n-ethip4udp-1u1p.py @@ -18,11 +18,11 @@ Stream profile: - Packet: ETH / IP / UDP - Direction 0 --> 1: - Source IP address range: 20.0.0.0 - - Destination IP address range: 12.0.0.2 + - Destination IP address range: 30.0.0.0 - Source UDP port range: 1024 - Destination UDP port range: 1024 - Direction 1 --> 0: - - Source IP address range: 12.0.0.2 + - Source IP address range: 30.0.0.0 - Destination IP address range: 200.0.0.0 - Source UDP port range: 1024 - Destination UDP port range: 1028 @@ -42,9 +42,9 @@ class TrafficStreams(TrafficStreamsBaseClass): # IPs used in packet headers. self.p1_src_ip = u"20.0.0.0" - self.p1_dst_ip = u"12.0.0.2" + self.p1_dst_ip = u"30.0.0.0" - self.p2_src_ip = u"12.0.0.2" + self.p2_src_ip = u"30.0.0.0" self.p2_dst_ip = u"200.0.0.0" # UDP ports used in packet headers. @@ -52,7 +52,7 @@ class TrafficStreams(TrafficStreamsBaseClass): self.p1_dst_udp_port = 1024 self.p2_src_udp_port = 1024 - self.p2_dst_udp_port = 1028 + self.p2_dst_udp_port = 2048 def define_packets(self): """Defines the packets to be sent from the traffic generator. |