X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=GPL%2Ftraffic_profiles%2Ftrex%2Ftrex-stl-ethip6-ip6dst1000000-6p.py;fp=GPL%2Ftraffic_profiles%2Ftrex%2Ftrex-stl-ethip6-ip6dst1000000-6p.py;h=926847a7f8f215ba953cf394cf457b7505c7b283;hb=4e2635deff33db4bea476003ac222ffd9ab504b1;hp=4a1307c510c628e75429b50fb5e85581ffa09f6e;hpb=b8f31fc3da4b0a6ab5805eea61af0fe7e869a453;p=csit.git diff --git a/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst1000000-6p.py b/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst1000000-6p.py index 4a1307c510..926847a7f8 100644 --- a/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst1000000-6p.py +++ b/GPL/traffic_profiles/trex/trex-stl-ethip6-ip6dst1000000-6p.py @@ -46,38 +46,38 @@ class TrafficStreams(TrafficStreamsScaleClass): { "src_start_ip": "2100::1", "dst_start_ip": "2200::0", - "dst_end_ip": "2200::F:423F" + "dst_end_ip": "2200::F:423F", }, # Direction W --> E: { "src_start_ip": "2300::1", "dst_start_ip": "2400::0", - "dst_end_ip": "2400::F:423F" + "dst_end_ip": "2400::F:423F", }, # Direction W --> E: { "src_start_ip": "2500::1", "dst_start_ip": "2600::0", - "dst_end_ip": "2600::F:423F" + "dst_end_ip": "2600::F:423F", }, # Direction E --> W: { "src_start_ip": "2200::1", "dst_start_ip": "2100::0", - "dst_end_ip": "2100::F:423F" + "dst_end_ip": "2100::F:423F", }, # Direction E --> W: { "src_start_ip": "2400::1", "dst_start_ip": "2300::0", - "dst_end_ip": "2300::F:423F" + "dst_end_ip": "2300::F:423F", }, # Direction E --> W: { "src_start_ip": "2600::1", "dst_start_ip": "2500::0", - "dst_end_ip": "2500::F:423F" - } + "dst_end_ip": "2500::F:423F", + }, ] 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( @@ -111,13 +111,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, + ), ] ) )