test: Test script for setting IPv6 Method
authorJukka Rissanen <jukka.rissanen@nokia.com>
Mon, 10 Jan 2011 16:03:27 +0000 (18:03 +0200)
committerSamuel Ortiz <sameo@linux.intel.com>
Mon, 10 Jan 2011 17:36:10 +0000 (18:36 +0100)
test/set-ipv6-method [new file with mode: 0755]

diff --git a/test/set-ipv6-method b/test/set-ipv6-method
new file mode 100755 (executable)
index 0000000..274e89b
--- /dev/null
@@ -0,0 +1,33 @@
+#!/usr/bin/python
+
+import sys
+import dbus
+
+def print_usage():
+       print "Usage: %s <service> off|manual|auto [<address> [prefixlen] [gateway]]" % (sys.argv[0])
+
+if (len(sys.argv) < 3):
+       print_usage()
+       sys.exit(1)
+
+bus = dbus.SystemBus()
+path = "/profile/default/" + sys.argv[1]
+service = dbus.Interface(bus.get_object('net.connman', path),
+                                       'net.connman.Service')
+
+properties = service.GetProperties()
+
+print "Setting method %s for %s" % (sys.argv[2], sys.argv[1])
+
+ipv6_configuration = { "Method": sys.argv[2] }
+if (len(sys.argv) > 3):
+       ipv6_configuration["Address"] = sys.argv[3]
+if (len(sys.argv) > 4):
+       ipv6_configuration["PrefixLength"] = sys.argv[4]
+if (len(sys.argv) > 5):
+       ipv6_configuration["Gateway"] = sys.argv[5]
+
+service.SetProperty("IPv6.Configuration", ipv6_configuration)
+print "New IPv6.Configuration: ", ipv6_configuration
+
+print