We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29cce4d commit 95f9905Copy full SHA for 95f9905
meraki-bssid-dump.py
@@ -15,7 +15,7 @@
15
#loop through devices
16
for device in dash.networks.getNetworkDevices(net['id']):
17
#check if device is an AP
18
- if 'MR' in device.get('model', ''):
+ if 'MR' in device.get('model', '') or 'CW' in device.get('model', ''):
19
print(f" Processing AP device: {device['serial']}...")
20
#get BSSID list
21
status = dash.wireless.getDeviceWirelessStatus(device['serial'])
0 commit comments