X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=GPL%2Ftraffic_profiles%2Ftrex%2Ftrex-stl-ethip6-ip6dst-rnd10000-2p.py;fp=GPL%2Ftraffic_profiles%2Ftrex%2Ftrex-stl-ethip6-ip6dst-rnd10000-2p.py;h=eba560ae6df9ab6226de4fcbdac480dd556078a9;hb=2a23f2c162050e53d2fd9a53a12de295c8e1f3e3;hp=585629f7b5b3a6b83bb4ff61dff362c373d3363d;hpb=e3d82022e7230656a29af6b5273664f7dbacf5b8;p=csit.git diff --git a/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst-rnd10000-2p.py b/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst-rnd10000-2p.py index 585629f7b5..eba560ae6d 100644 --- a/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst-rnd10000-2p.py +++ b/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst-rnd10000-2p.py @@ -53,7 +53,7 @@ class TrafficStreams(TrafficStreamsScaleClass): "src_start_ip": "2200::1", "dst_start_ip": "2100::0", "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( @@ -88,13 +88,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 + ) ] ) )