summaryrefslogtreecommitdiffstats
path: root/scripts/automation/trex_control_plane/examples/stateless_example.py
diff options
context:
space:
mode:
authorDan Klein <danklei@cisco.com>2015-10-28 07:28:37 +0200
committerDan Klein <danklei@cisco.com>2015-10-28 07:28:37 +0200
commit0c2b3c83f9cc0c25277c39660dce132aad55c3d7 (patch)
treeeaf8dc249b49aae9ca70d4ff927a7be9a889380f /scripts/automation/trex_control_plane/examples/stateless_example.py
parentfe6e03366eae72376f1201ed68744cb1206773de (diff)
updated more HLTAPI functionality and fixed found bugs.
Working: Start/stop traffic, traffic config (semi), connect, clean Missing: stats Next: boost console
Diffstat (limited to 'scripts/automation/trex_control_plane/examples/stateless_example.py')
-rwxr-xr-x[-rw-r--r--]scripts/automation/trex_control_plane/examples/stateless_example.py31
1 files changed, 30 insertions, 1 deletions
diff --git a/scripts/automation/trex_control_plane/examples/stateless_example.py b/scripts/automation/trex_control_plane/examples/stateless_example.py
index f97bce4c..bb0fe983 100644..100755
--- a/scripts/automation/trex_control_plane/examples/stateless_example.py
+++ b/scripts/automation/trex_control_plane/examples/stateless_example.py
@@ -1 +1,30 @@
-__author__ = 'danklei'
+#!/router/bin/python
+
+import trex_root_path
+from client.trex_hltapi import CTRexHltApi
+
+if __name__ == "__main__":
+ port_list = [1,2]
+ try:
+ hlt_client = CTRexHltApi()
+ con = hlt_client.connect("localhost", port_list, "danklei", break_locks=True, reset=True)#, port=6666)
+ print con
+
+ res = hlt_client.traffic_config("create", 1)#, ip_src_addr="2000.2.2")
+ print res
+ res = hlt_client.traffic_config("create", 2)#, ip_src_addr="2000.2.2")
+ print res
+
+ res = hlt_client.traffic_control("run", [1, 2])#, ip_src_addr="2000.2.2")
+ print res
+
+ res = hlt_client.traffic_control("stop", [1, 2])#, ip_src_addr="2000.2.2")
+ print res
+
+
+
+ except Exception as e:
+ raise
+ finally:
+ res = hlt_client.cleanup_session(port_list)
+ print res \ No newline at end of file