summaryrefslogtreecommitdiffstats
path: root/scripts/stl/flow_stats.py
diff options
context:
space:
mode:
authorHanoh Haim <hhaim@cisco.com>2016-03-07 12:54:33 +0200
committerHanoh Haim <hhaim@cisco.com>2016-03-07 12:54:33 +0200
commitfadf9cb9e331f70157b90f79d9e2b10a0471013e (patch)
treef05647626e0446c9f8691659c4a51060a3918805 /scripts/stl/flow_stats.py
parent1f6826dda8ffa724f8ba8c3dc4b22883d5c99603 (diff)
parentea61eabf9f76ef4dea1ad2a4f0cd5cd8f367bd02 (diff)
Merge scapy remove crypto. for ADS server
Diffstat (limited to 'scripts/stl/flow_stats.py')
-rw-r--r--scripts/stl/flow_stats.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/scripts/stl/flow_stats.py b/scripts/stl/flow_stats.py
new file mode 100644
index 00000000..05d7a9f7
--- /dev/null
+++ b/scripts/stl/flow_stats.py
@@ -0,0 +1,19 @@
+from trex_stl_lib.api import *
+
+# stream from pcap file. continues pps 10 in sec
+
+class STLS1(object):
+
+ def get_streams (self, direction = 0):
+ return [STLStream(packet = STLPktBuilder(pkt ="stl/yaml/udp_64B_no_crc.pcap"), # path relative to pwd
+ mode = STLTXCont(pps=10),
+ flow_stats = STLFlowStats(pg_id = 7))
+ ]
+
+
+# dynamic load - used for trex console or simulator
+def register():
+ return STLS1()
+
+
+