diff options
author | Peter Mikus <peter.mikus@protonmail.ch> | 2024-05-01 04:55:46 +0000 |
---|---|---|
committer | Peter Mikus <peter.mikus@protonmail.ch> | 2024-05-01 04:56:17 +0000 |
commit | ad9b1d6c106b25cbd7bef4bd38faa626e9714c76 (patch) | |
tree | a42f4aec64cb3f40a59dd3d86f7e52e499338fa9 /GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd1000000-6p.py | |
parent | 2a23f2c162050e53d2fd9a53a12de295c8e1f3e3 (diff) |
Revert "feat(profiles): Do not repeat seeds in 6p profiles"
This reverts commit b8f31fc3da4b0a6ab5805eea61af0fe7e869a453.
Change-Id: I65f79bb323f48d9e7b3ed7a1990db1b1486da26e
Signed-off-by: Peter Mikus <peter.mikus@protonmail.ch>
Diffstat (limited to 'GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd1000000-6p.py')
-rw-r--r-- | GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd1000000-6p.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd1000000-6p.py b/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd1000000-6p.py index 639bf52723..141a5f2123 100644 --- a/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd1000000-6p.py +++ b/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd1000000-6p.py @@ -1,4 +1,4 @@ -# Copyright (c) 2024 Cisco and/or its affiliates. +# Copyright (c) 2023 Cisco and/or its affiliates. # # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later # @@ -47,36 +47,42 @@ class TrafficStreams(TrafficStreamsScaleClass): "src_start_ip": "10.0.0.1", "dst_start_ip": "20.0.0.0", "dst_end_ip": "20.15.66.63", + "seed": 1 }, # Direction W --> E: { "src_start_ip": "30.0.0.1", "dst_start_ip": "40.0.0.0", "dst_end_ip": "40.15.66.63", + "seed": 2 }, # Direction W --> E: { "src_start_ip": "50.0.0.1", "dst_start_ip": "60.0.0.0", "dst_end_ip": "60.15.66.63", + "seed": 1 }, # Direction E --> W: { "src_start_ip": "20.0.0.1", "dst_start_ip": "10.0.0.0", "dst_end_ip": "10.15.66.63", + "seed": 2 }, # Direction E --> W: { "src_start_ip": "40.0.0.1", "dst_start_ip": "30.0.0.0", "dst_end_ip": "30.15.66.63", + "seed": 1 }, # Direction E --> W: { "src_start_ip": "60.0.0.1", "dst_start_ip": "50.0.0.0", "dst_end_ip": "50.15.66.63", + "seed": 2 } ] self.pkt_base = [] @@ -107,7 +113,7 @@ class TrafficStreams(TrafficStreamsScaleClass): min_value=self.pkt_data[i]["dst_start_ip"], max_value=self.pkt_data[i]["dst_end_ip"], size=4, - seed=i + 1, + seed=self.pkt_data[i]["seed"], limit=(2**24 - 1) ), STLVmWrFlowVar( |