summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/stl/udp_1pkt_simple_bdir.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/scripts/stl/udp_1pkt_simple_bdir.py b/scripts/stl/udp_1pkt_simple_bdir.py
new file mode 100644
index 00000000..c3371974
--- /dev/null
+++ b/scripts/stl/udp_1pkt_simple_bdir.py
@@ -0,0 +1,35 @@
+from trex_stl_lib.api import *
+
+class STLS1(object):
+
+ def create_stream (self):
+ return STLStream(
+ packet =
+ STLPktBuilder(
+ pkt = Ether()/IP(src="16.0.0.1",dst="48.0.0.1")/
+ UDP(dport=12,sport=1025)/(10*'x')
+ ),
+ mode = STLTXCont())
+
+ def get_streams (self, direction = 0):
+ # create 1 stream
+ if direction==0:
+ src_ip="16.0.0.1"
+ dst_ip="48.0.0.1"
+ else:
+ src_ip="48.0.0.1"
+ dst_ip="16.0.0.1"
+
+ pkt = STLPktBuilder(
+ pkt = Ether()/IP(src=src_ip,dst=dst_ip)/
+ UDP(dport=12,sport=1025)/(10*'x') )
+
+ return [ STLStream( packet = pkt,mode = STLTXCont()) ]
+
+
+# dynamic load - used for trex console or simulator
+def register():
+ return STLS1()
+
+
+