diff options
Diffstat (limited to 'scripts/stl/udp_1pkt_mac.py')
-rw-r--r-- | scripts/stl/udp_1pkt_mac.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/stl/udp_1pkt_mac.py b/scripts/stl/udp_1pkt_mac.py index 375c4a59..a15c286c 100644 --- a/scripts/stl/udp_1pkt_mac.py +++ b/scripts/stl/udp_1pkt_mac.py @@ -14,8 +14,8 @@ class STLS1(object): base_pkt = Ether()/IP(src="16.0.0.1",dst="48.0.0.1")/UDP(dport=12,sport=1025) pad = max(0, size - len(base_pkt)) * 'x' - vm = CTRexScRaw( [ CTRexVmDescFlowVar(name="mac_src", min_value=1, max_value=10, size=1, op="inc"), # 1 byte varible, range 1-10 - CTRexVmDescWrFlowVar(fv_name="mac_src", pkt_offset= 11) # write it to LSB of SRC + vm = CTRexScRaw( [ STLVmFlowVar(name="mac_src", min_value=1, max_value=10, size=1, op="inc"), # 1 byte varible, range 1-10 + STLVmWrFlowVar(fv_name="mac_src", pkt_offset= 11) # write it to LSB of SRC ] ) |