diff options
Diffstat (limited to 'GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst-rnd10000-6p.py')
-rw-r--r-- | GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst-rnd10000-6p.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst-rnd10000-6p.py b/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst-rnd10000-6p.py index 3227cb348d..2d20231177 100644 --- a/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst-rnd10000-6p.py +++ b/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst-rnd10000-6p.py @@ -77,7 +77,7 @@ class TrafficStreams(TrafficStreamsScaleClass): "src_start_ip": "2600::1", "dst_start_ip": "2500::0", "dst_end_ip": "2500::270F", - }, + } ] self.pkt_base = [] self.pkt_vm = [] @@ -93,14 +93,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( @@ -112,13 +112,13 @@ class TrafficStreams(TrafficStreamsScaleClass): max_value=base + count, size=8, seed=i + 1, - limit=(2**24 - 1), + limit=(2**24 - 1) ), STLVmWrFlowVar( fv_name="ipv6_dst", pkt_offset="IPv6.dst", - offset_fixup=8, - ), + offset_fixup=8 + ) ] ) ) |