X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=GPL%2Ftraffic_profiles%2Ftrex%2Ftrex-stl-ethip4-ip4dst-rnd10000-2p.py;fp=GPL%2Ftraffic_profiles%2Ftrex%2Ftrex-stl-ethip4-ip4dst-rnd10000-2p.py;h=2ae8580bab591020fddd0f64c7e85d99cd001f1b;hb=4e2635deff33db4bea476003ac222ffd9ab504b1;hp=142694b772e906857611af93cf43e97c0b778763;hpb=b8f31fc3da4b0a6ab5805eea61af0fe7e869a453;p=csit.git diff --git a/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd10000-2p.py b/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd10000-2p.py index 142694b772..2ae8580bab 100644 --- a/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd10000-2p.py +++ b/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd10000-2p.py @@ -53,7 +53,7 @@ class TrafficStreams(TrafficStreamsScaleClass): "src_start_ip": "20.0.0.1", "dst_start_ip": "10.0.0.0", "dst_end_ip": "10.0.39.15", - } + }, ] self.pkt_base = [] self.pkt_vm = [] @@ -68,11 +68,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( @@ -84,15 +84,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", + ), ] ) )