summaryrefslogtreecommitdiffstats
path: root/scripts/automation/trex_control_plane/examples/stateless_example.py
diff options
context:
space:
mode:
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