Update Alternate Management Interface And Device Static IP
PUT {{baseUrl}}/networks/:networkId/wireless/alternateManagementInterface
Update alternate management interface and device static IP #### Body Parameters Parameter|Type|Description :-------------: |:-------------: |:-------------: enabled| boolean| Boolean value to enable or disable alternate management interface vlanId| integer| Alternate management interface VLAN, must be between 1 and 4094 protocols| array| Can be one or more of the following values: 'radius', 'snmp', 'syslog' or 'ldap' accessPoints| array| Array of access point serial number and IP assignment. Note: accessPoints IP assignment is not applicable for template networks, in other words, do not put 'accessPoints' in the body when updating template networks. Also, an empty 'accessPoints' array will remove all previous static IP assignments
Supports Action Batches
Resource | Operation |
---|---|
/networks/{networkId}/wireless/alternateManagementInterface | update |
Request Body
{"enabled"=>"<boolean>", "vlanId"=>"<integer>", "protocols"=>["<string>", "<string>"], "accessPoints"=>[{"serial"=>"<string>", "alternateManagementIp"=>"<string>", "subnetMask"=>"<string>", "gateway"=>"<string>", "dns1"=>"<string>", "dns2"=>"<string>"}, {"serial"=>"<string>", "alternateManagementIp"=>"<string>", "subnetMask"=>"<string>", "gateway"=>"<string>", "dns1"=>"<string>", "dns2"=>"<string>"}]}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
X-Cisco-Meraki-API-Key | null | ||
Content-Type | string |
RESPONSES
status: OK
{"enabled":true,"vlanId":100,"protocols":["radius","snmp","syslog","ldap"],"accessPoints":[{"serial":"Q234-ABCD-5678","alternateManagementIp":"1.2.3.4","subnetMask":"255.255.255.0","gateway":"1.2.3.5","dns1":"8.8.8.8","dns2":"8.8.4.4"}]}