summaryrefslogtreecommitdiff
path: root/test/connect-service
blob: 86216020a91d9b6a942e6e2cc25a4626ca1efd39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/python

import sys
import dbus

if (len(sys.argv) < 2):
	print "Usage: %s <ssid> [passphrase] [security]" % (sys.argv[0])
	sys.exit(1)

bus = dbus.SystemBus()

manager = dbus.Interface(bus.get_object("net.connman", "/"),
					"net.connman.Manager")

print "Attempting to connect service %s" % (sys.argv[1])

if len(sys.argv) > 2:
	if len(sys.argv) > 3:
		security = sys.argv[3]
	else:
		security = "rsn"
	passphrase = sys.argv[2]
else:
	security = "none"
	passphrase = ""

path = manager.ConnectService(({ "Type": "wifi", "Mode": "managed",
					"SSID": sys.argv[1],
					"Security": security,
					"Passphrase": passphrase }),
						timeout=60000);
print "Service path is %s" %(path)