diff options
Diffstat (limited to 'scripts/stl/flow_stats.py')
-rw-r--r-- | scripts/stl/flow_stats.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/stl/flow_stats.py b/scripts/stl/flow_stats.py index 05d7a9f7..e2701d23 100644 --- a/scripts/stl/flow_stats.py +++ b/scripts/stl/flow_stats.py @@ -6,8 +6,12 @@ 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)) + mode = STLTXCont(pps=1000), + flow_stats = STLFlowStats(pg_id = 7)), + + STLStream(packet = STLPktBuilder(pkt ="stl/yaml/udp_594B_no_crc.pcap"), # path relative to pwd + mode = STLTXCont(pps=5000), + flow_stats = STLFlowStats(pg_id = 12)) ] |