summaryrefslogtreecommitdiff
path: root/test/set-ipv6-method
diff options
context:
space:
mode:
authorJukka Rissanen <jukka.rissanen@nokia.com>2011-02-21 17:40:24 +0200
committerSamuel Ortiz <sameo@linux.intel.com>2011-02-21 18:34:21 +0100
commitb5c187743d140e18babafa7e51c60ceefc59f137 (patch)
tree84472e43bad401683a2bd6164e9417f878185cae /test/set-ipv6-method
parente3d6f2e0c3a1d952941c3579b5288f90f00b9598 (diff)
downloadconnman-b5c187743d140e18babafa7e51c60ceefc59f137.tar.gz
connman-b5c187743d140e18babafa7e51c60ceefc59f137.tar.bz2
connman-b5c187743d140e18babafa7e51c60ceefc59f137.zip
test: Enable or disable IPv6 privacy extension
Diffstat (limited to 'test/set-ipv6-method')
-rwxr-xr-xtest/set-ipv6-method18
1 files changed, 11 insertions, 7 deletions
diff --git a/test/set-ipv6-method b/test/set-ipv6-method
index 274e89bb..c0b251ef 100755
--- a/test/set-ipv6-method
+++ b/test/set-ipv6-method
@@ -4,7 +4,7 @@ import sys
import dbus
def print_usage():
- print "Usage: %s <service> off|manual|auto [<address> [prefixlen] [gateway]]" % (sys.argv[0])
+ print "Usage: %s <service> off|manual|auto [<address> [prefixlen] [gateway]] [<privacy>]" % (sys.argv[0])
if (len(sys.argv) < 3):
print_usage()
@@ -20,12 +20,16 @@ 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]
+if sys.argv[2] == "auto":
+ if (len(sys.argv) > 3):
+ ipv6_configuration["Privacy"] = sys.argv[3]
+else:
+ 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