From: Isaku Yamahata <[email protected]>
Signed-off-by: Isaku Yamahata <[email protected]>
Signed-off-by: FUJITA Tomonori <[email protected]>
---
bin/ryu-client | 17 ++++++++++++++++-
1 files changed, 16 insertions(+), 1 deletions(-)
diff --git a/bin/ryu-client b/bin/ryu-client
index 3d816b8..292ee26 100755
--- a/bin/ryu-client
+++ b/bin/ryu-client
@@ -19,9 +19,10 @@
import sys
from optparse import OptionParser
-from ryu.app.client import TunnelClient
from ryu.app.client import OFPClient
+from ryu.app.client import QuantumIfaceClient
from ryu.app.client import SwitchConfClient
+from ryu.app.client import TunnelClient
def client_test():
@@ -39,6 +40,7 @@ def client_test():
ofp_client = OFPClient(address)
tun_client = TunnelClient(address)
sc_client = SwitchConfClient(address)
+ qi_client = QuantumIfaceClient(address)
commands = {
'list_nets': lambda a: sys.stdout.write(ofp_client.get_networks()),
@@ -72,6 +74,19 @@ def client_test():
'sc_get_key': lambda a: sys.stdout.write(
sc_client.get_key(a[1], a[2])),
'sc_delete_key': lambda a: sc_client.delete_key(a[1], a[2]),
+
+ 'qi_list_iface': lambda a: sys.stdout.write(qi_client.list_ifaces()),
+ 'qi_delete_iface': lambda a: qi_client.delete_iface(a[1]),
+ 'qi_list_keys': lambda a: sys.stdout.write(
+ qi_client.list_keys(a[1])),
+ 'qi_create_key': lambda a: qi_client.create_network_id(
+ a[1], a[2], a[3]),
+ 'qi_update_key': lambda a: qi_client.update_network_id(
+ a[1], a[2], a[3]),
+ 'qi_get_net_id': lambda a: sys.stdout.write(
+ qi_client.get_network_id(a[1])),
+ 'qi_create_net_id': lambda a: qi_client.create_network_id(a[1], a[2]),
+ 'qi_update_net_id': lambda a: qi_client.update_network_id(a[1], a[2]),
}
# allow '-', instead of '_'
--
1.7.4.4
------------------------------------------------------------------------------
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel