aboutsummaryrefslogtreecommitdiffstats
path: root/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst10000-2p.py
diff options
context:
space:
mode:
Diffstat (limited to 'GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst10000-2p.py')
-rw-r--r--GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst10000-2p.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst10000-2p.py b/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst10000-2p.py
index 7a02aac9f8..5e7be6b03b 100644
--- a/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst10000-2p.py
+++ b/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst10000-2p.py
@@ -46,14 +46,14 @@ class TrafficStreams(TrafficStreamsScaleClass):
{
"src_start_ip": "2100::1",
"dst_start_ip": "2200::0",
- "dst_end_ip": "2200::270F"
+ "dst_end_ip": "2200::270F",
},
# Direction E --> W:
{
"src_start_ip": "2200::1",
"dst_start_ip": "2100::0",
- "dst_end_ip": "2100::270F"
- }
+ "dst_end_ip": "2100::270F",
+ },
]
self.pkt_base = []
self.pkt_vm = []
@@ -69,14 +69,14 @@ class TrafficStreams(TrafficStreamsScaleClass):
for i in range(len(self.pkt_data)):
base, count = self._get_start_end_ipv6(
self.pkt_data[i]["dst_start_ip"],
- self.pkt_data[i]["dst_end_ip"]
+ self.pkt_data[i]["dst_end_ip"],
)
self.pkt_base.append(
- Ether() /
- IPv6(
+ Ether()
+ / IPv6(
src=self.pkt_data[i]["src_start_ip"],
- dst=self.pkt_data[i]["dst_start_ip"]
+ dst=self.pkt_data[i]["dst_start_ip"],
)
)
self.pkt_vm.append(
@@ -87,13 +87,13 @@ class TrafficStreams(TrafficStreamsScaleClass):
min_value=base,
max_value=base + count,
size=8,
- op="inc"
+ op="inc",
),
STLVmWrFlowVar(
fv_name="ipv6_dst",
pkt_offset="IPv6.dst",
- offset_fixup=8
- )
+ offset_fixup=8,
+ ),
]
)
)