EXTRA_DIST = get-state list-profiles list-connections select-connection \
list-devices enable-device disable-device start-scanning \
list-networks select-network disable-network create-network \
- set-passphrase simple-agent show-introspection \
+ set-passphrase set-address simple-agent show-introspection \
test-manager test-compat monitor-connman
MAINTAINERCLEANFILES = Makefile.in
--- /dev/null
+#!/usr/bin/python
+
+import sys
+import dbus
+
+if (len(sys.argv) < 2):
+ print "Usage: %s <address>" % (sys.argv[0])
+ sys.exit(1)
+
+bus = dbus.SystemBus()
+
+manager = dbus.Interface(bus.get_object('org.moblin.connman', "/"),
+ 'org.moblin.connman.Manager')
+
+properties = manager.GetProperties()
+
+for path in properties["Devices"]:
+ device = dbus.Interface(bus.get_object('org.moblin.connman', path),
+ 'org.moblin.connman.Device')
+
+ print "Setting static address %s for %s" % (sys.argv[1], path)
+
+ device.SetProperty("IPv4.Method", "static")
+ device.SetProperty("IPv4.Address", sys.argv[1])
+
+ print