Hi All
For the API https://developer.cisco.com/meraki/api-v1/get-device-appliance-uplinks-settings/
I can get the static of WAN1 or WAN2 public ip address. However, how can I get the dynamic ip for the WAN1 or WAN2 if the WAN interface is not using static bur dynamic ip from ISP?
The API can get the result with "dynamic". But would like to get the result which a public ip address is assigned by ISP provider. OR I should use another API command to retrieve the dynamic public IP address assigned at WAN interface? Thank you.
{
"interfaces": {
"wan1": {
"enabled": true,
"vlanTagging": { "enabled": false },
"svis": {
"ipv4": {
"assignmentMode": "dynamic"
},
"ipv6": {
"assignmentMode": "dynamic"
}
},
"pppoe": {
"enabled": true,
"authentication": {
"enabled": true,
"username": "xxxxxxxxxxxxx"
}
}
},
"wan2": {
"enabled": false,
"vlanTagging": { "enabled": false },
"svis": {
"ipv4": {
"assignmentMode": "dynamic"
},
"ipv6": {
"assignmentMode": "dynamic"
}
},
"pppoe": { "enabled": false }
}
}
}
Thanks.