X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=GPL%2Ftraffic_profiles%2Ftrex%2Ftrex-stl-ethip4-ip4dst-rnd10000-6p.py;fp=GPL%2Ftraffic_profiles%2Ftrex%2Ftrex-stl-ethip4-ip4dst-rnd10000-6p.py;h=0254644743492300f4b4aacf8be345add46a977a;hb=2a23f2c162050e53d2fd9a53a12de295c8e1f3e3;hp=9a20db30fe603732de64778bef801f20469a971f;hpb=e3d82022e7230656a29af6b5273664f7dbacf5b8;p=csit.git diff --git a/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd10000-6p.py b/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd10000-6p.py index 9a20db30fe..0254644743 100644 --- a/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd10000-6p.py +++ b/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd10000-6p.py @@ -77,7 +77,7 @@ class TrafficStreams(TrafficStreamsScaleClass): "src_start_ip": "60.0.0.1", "dst_start_ip": "50.0.0.0", "dst_end_ip": "50.0.39.15", - }, + } ] self.pkt_base = [] self.pkt_vm = [] @@ -92,11 +92,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( @@ -108,15 +108,15 @@ class TrafficStreams(TrafficStreamsScaleClass): max_value=self.pkt_data[i]["dst_end_ip"], size=4, seed=i + 1, - limit=(2**24 - 1), + limit=(2**24 - 1) ), STLVmWrFlowVar( fv_name="dst", - pkt_offset="IP.dst", + pkt_offset="IP.dst" ), STLVmFixIpv4( - offset="IP", - ), + offset="IP" + ) ] ) )