X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=GPL%2Ftraffic_profiles%2Ftrex%2Ftrex-stl-ethip4-ip4dst1000000-2p.py;fp=GPL%2Ftraffic_profiles%2Ftrex%2Ftrex-stl-ethip4-ip4dst1000000-2p.py;h=f2e7938ff2ea310eeddfa0bdb9f7c20549410361;hb=2a23f2c162050e53d2fd9a53a12de295c8e1f3e3;hp=6fc6b10d9d1a0b1986c45c1151d74137979ef1b7;hpb=e3d82022e7230656a29af6b5273664f7dbacf5b8;p=csit.git diff --git a/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst1000000-2p.py b/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst1000000-2p.py index 6fc6b10d9d..f2e7938ff2 100644 --- a/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst1000000-2p.py +++ b/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst1000000-2p.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 # @@ -46,14 +46,14 @@ class TrafficStreams(TrafficStreamsScaleClass): { "src_start_ip": "10.0.0.1", "dst_start_ip": "20.0.0.0", - "dst_end_ip": "20.15.66.63", + "dst_end_ip": "20.15.66.63" }, # Direction E --> W: { "src_start_ip": "20.0.0.1", "dst_start_ip": "10.0.0.0", - "dst_end_ip": "10.15.66.63", - }, + "dst_end_ip": "10.15.66.63" + } ] self.pkt_base = [] self.pkt_vm = [] @@ -68,11 +68,11 @@ class TrafficStreams(TrafficStreamsScaleClass): """ for i in range(len(self.pkt_data)): self.pkt_base.append( - Ether() - / IP( + Ether() / + IP( src=self.pkt_data[i]["src_start_ip"], dst=self.pkt_data[i]["dst_start_ip"], - proto=61, + proto=61 ) ) self.pkt_vm.append( @@ -83,15 +83,15 @@ class TrafficStreams(TrafficStreamsScaleClass): min_value=self.pkt_data[i]["dst_start_ip"], max_value=self.pkt_data[i]["dst_end_ip"], size=4, - op="inc", + op="inc" ), STLVmWrFlowVar( fv_name="dst", - pkt_offset="IP.dst", + pkt_offset="IP.dst" ), STLVmFixIpv4( - offset="IP", - ), + offset="IP" + ) ] ) )