01-27-2020 06:19 AM
Hello,
I'm getting my feet wet on new Meraki SDK. I'm having trouble understanding how to call different functions from this link.
What is the logic for e.g. function getNetworkDeviceManagementInterfaceSettings()?
import meraki
api_key = '<api_key>'
m = meraki.DashboardAPI(api_key)
orgs = m.organizations.getOrganizations()
org_id = orgs[0]['id']
#get Networks
nets = m.networks.getOrganizationNetworks
#how to call getNetworkDeviceManagementInterfaceSettings()?
m.networks.getOrganizationNetworks('<network_id>').getNetworkDeviceManagementInterfaceSettings()#?Regards
Solved! Go to Solution.
01-27-2020 07:42 AM
It's a little bit tricky.
you need to know the network and the serial of each device in the network
import meraki
api_key = "<api_key>"
m = meraki.DashboardAPI(api_key)
orgs = m.organizations.getOrganizations()
org_id = orgs[0]["id"]
#get Networks
networks = m.networks.getOrganizationNetworks(org_id)
#iterate through all the networks in the organization
for net in networks:
devices = m.devices.getNetworkDevices(net["id"])
#iterate through all the devices in the network
for d in devices:
#extract the management interface setting for each device
settings = m.management_interface_settings.getNetworkDeviceManagementInterfaceSettings(net["id"],d["serial"])
print(settings)
01-27-2020 07:42 AM
It's a little bit tricky.
you need to know the network and the serial of each device in the network
import meraki
api_key = "<api_key>"
m = meraki.DashboardAPI(api_key)
orgs = m.organizations.getOrganizations()
org_id = orgs[0]["id"]
#get Networks
networks = m.networks.getOrganizationNetworks(org_id)
#iterate through all the networks in the organization
for net in networks:
devices = m.devices.getNetworkDevices(net["id"])
#iterate through all the devices in the network
for d in devices:
#extract the management interface setting for each device
settings = m.management_interface_settings.getNetworkDeviceManagementInterfaceSettings(net["id"],d["serial"])
print(settings)
01-28-2020 05:36 AM
I tried to use different function from that class to update mgmt interface, but It doesn't work for me. What am I doing wrong? How can I update interface WAN2?
below is just a portion of code.
data = {'wan1': {'wanEnabled': 'not configured', 'usingStaticIp': False, 'vlan': None}, 'wan2': {'wanEnabled': 'not configured','usingStaticIp': True,'staticIp': '1.1.1.1','staticSubnetMask': '255.255.255.252','staticGatewayIp': '1.1.1.2.','staticDns': [ '8.8.8.8', '8.8.8.8.']} 'vlan': None}}
settings = m.management_interface_settings.getNetworkDeviceManagementInterfaceSettings(networkID,mx_serial_number, data)
01-29-2020 01:53 AM
every method which starts with "get" will read the data from the dashboard. You won't be able to update the settings with this.
In your case you will need updateNetworkDeviceManagementInterfaceSettings
def updateNetworkDeviceManagementInterfaceSettings(self, networkId: str, serial: str, **kwargs):
"""
**Update the management interface settings for a device**
https://api.meraki.com/api_docs#update-the-management-interface-settings-for-a-device
- networkId (string)
- serial (string)
- wan1 (object): WAN 1 settings
- wan2 (object): WAN 2 settings (only for MX devices)
"""
01-29-2020 01:55 AM
sry it was a typo, I meant updateNetworkDeviceManagementInterfaceSettings() but how to passe arguments for wan2 link?
01-29-2020 02:02 AM
I haven't tried it, but from the docs it should work like that:
data_wan1 = {'wanEnabled': 'not configured', 'usingStaticIp': False, 'vlan': None}
data_wan2 = {'wanEnabled': 'not configured','usingStaticIp': True,'staticIp': '1.1.1.1','staticSubnetMask': '255.255.255.252','staticGatewayIp': '1.1.1.2.','staticDns': [ '8.8.8.8', '8.8.8.8.']} 'vlan': None}
m.management_interface_settings.updateNetworkDeviceManagementInterfaceSettings(networkID,mx_serial_number, wan1=data_wan1, wan2=data_wan2)
01-29-2020 02:05 AM
Thank you!
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide