mirror of git://git.sysmocom.de/ofono
parent
72eb1d7b5f
commit
77856af5bd
@ -0,0 +1,25 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
import dbus
|
||||
|
||||
bus = dbus.SystemBus()
|
||||
|
||||
manager = dbus.Interface(bus.get_object('org.ofono', '/'),
|
||||
'org.ofono.Manager')
|
||||
|
||||
modems = manager.GetModems()
|
||||
|
||||
for path, properties in modems:
|
||||
if "org.ofono.AllowedAccessPoints" not in properties["Interfaces"]:
|
||||
continue
|
||||
|
||||
allowedAccessPoints = dbus.Interface(bus.get_object('org.ofono',
|
||||
path), 'org.ofono.AllowedAccessPoints')
|
||||
|
||||
apns = allowedAccessPoints.GetAllowedAccessPoints()
|
||||
|
||||
print("Allowed Access Points for [ %s ]" % (path))
|
||||
for apn in apns:
|
||||
print(" [ %s]" % (apn))
|
||||
|
||||
print("")
|
Loading…
Reference in new issue