If you go with the schedule reboot method, you can do this directly with a script now without having to toggle switchports... (I am a broken record, scripting all the things.) You want: https://dashboard.meraki.com/api_docs#reboot-a-device 1. Pull a list of your devices 2. Filter it for only MRs by checking the model name 3. You'll get a list of dicts that include the serial number and networkId 4. For dict in list, call the reboot command Now schedule it as a cron job. 🙂 Or a Windows task I guess.
... View more