Skip to content

Commit 95f9905

Browse files
Update meraki-bssid-dump.py (#7)
1 parent 29cce4d commit 95f9905

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meraki-bssid-dump.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#loop through devices
1616
for device in dash.networks.getNetworkDevices(net['id']):
1717
#check if device is an AP
18-
if 'MR' in device.get('model', ''):
18+
if 'MR' in device.get('model', '') or 'CW' in device.get('model', ''):
1919
print(f" Processing AP device: {device['serial']}...")
2020
#get BSSID list
2121
status = dash.wireless.getDeviceWirelessStatus(device['serial'])

0 commit comments

Comments
 (0)