Schedules
Location in Dashboard: Wireless
>> Configure
>> SSID Availability
Diagram
Classes
ssids (meraki.domains.organizations.networks.wireless)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
schedules | Class | [schedules] | No |
schedules (meraki.domains.organizations.networks.wireless.ssids)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
enabled | Boolean | true , false | No | |
ranges | List | [ranges] | No | |
ranges_in_seconds | List | [ranges_in_seconds] | No |
ranges (meraki.domains.organizations.networks.wireless.ssids.schedules)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
start_day | Choice | Sunday , Monday , Tuesday , Wednesday , Thursday , Friday , Saturday | Yes | |
start_time | String | Regex: ^([01]?[0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]$ | Yes | |
end_day | Choice | Sunday , Monday , Tuesday , Wednesday , Thursday , Friday , Saturday | Yes | |
end_time | String | Regex: ^([01]?[0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]$ | Yes |
ranges_in_seconds (meraki.domains.organizations.networks.wireless.ssids.schedules)
Name | Type | Constraint | Mandatory | Default Value |
---|---|---|---|---|
start | Integer | min: 1 , max: 604800 | Yes | |
end | Integer | min: 1 , max: 604800 | Yes |
Config Sample
Example-1: The following example demonstrates how to set a maintenance schedule specific to an SSID named “CORP” with ssid number “0”. The configuration first enables the schedule and then sets the unavailability window for each day of the week with the time mentioned in 24 hour format. The “start_day” and “end_day” can be same or the “end_day” can be few days further down the week.
Note: The Schedule should always be sequentially defined starting with Sunday and down to any day until saturday. For example, the schedules can be like Sunday-Sunday, Monday-Firday and Saturday-Saturday. It cannot be, Monday-Firday, Saturday-Saturday and then Sunday-Sunday. Monday-Firday and Saturday-Saturday is also valid if there is no schedule for Sunday.
meraki: domains: - name: EMEA administrator: name: Foo Bar organizations: - name: Dev networks: - name: Dev-main-cx-provider product_types: - appliance - camera - switch - wireless wireless: ssids: - name: CORP ssid_number: '0' schedules: enabled: true ranges: - start_day: Sunday start_time: 01:00:00 end_time: 06:00:00 end_day: Sunday - start_day: Monday start_time: 05:00:00 end_time: 06:00:00 end_day: Monday - start_day: Tuesday start_time: 05:00:00 end_time: 06:00:00 end_day: Tuesday - start_day: Wednesday start_time: 05:00:00 end_time: 06:00:00 end_day: Wednesday - start_day: Thursday start_time: 05:00:00 end_time: 06:00:00 end_day: Thursday - start_day: Friday start_time: 05:00:00 end_time: 06:00:00 end_day: Friday - start_day: Saturday start_time: 00:30:00 end_time: 06:00:00 end_day: Saturday