- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
List all the Device with same start name
Hi Team,
I'm new to the Meraki Portal admin. Is there a way to list all devices with the same starting name, such as 'QPCYWA,' across all networks?
Thank you,
Jason
- Labels:
-
Administrators
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
1. Login to the Meraki Dashboard
2. Select your organization -> Networks -> View All Networks
3. Switch to the Devices tab from the table on the right side of the screen
4. In the search bar, type QPCYWA and that should filter it across all networks
Alternatively, you can do this via the Inventory page as well
1. Login to the Meraki Dashboard
2. Select your organization -> Configure -> Inventory -> QPCYWA and it will filter for that.
Hope that helps 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you, and I apologize for the confusion. I didn't make my question clear. I'm looking to check all the client devices connected to our network, not the network devices themselves.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Jason,
That sounds like a job the Meraki API would be able to accomplish as the dashbaord does not provide a way to get client details across all networks in one location.
You will need to iterate through all your networks using - Get Organization Networks - Meraki Dashboard API v1 - Cisco Meraki Developer Hub
Then using the network id information, grab the list of clients using and filter on the description field ="QPCYWA " - Get Network Clients - Meraki Dashboard API v1 - Cisco Meraki Developer Hub
You can refer to automation-scripts/find_clients.py at master · meraki/automation-scripts · GitHub as a base line and tweak it as per your requirements
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
As Craieggg suggested this can be done using API and export the result to Excel and filter there.