SD-WAN edge is usually activated by clicking the activation link after connecting a personal computer or mobile device to SD-WAN edge. Interface config is included in the activation link encoded in Base64 format. When activation fails, we can decode the configuration and verify.
Once customer clicks the link, SD-WAN edge decodes it and apply the interface config to reach the SD-WAN orchestrator, below is the decoded output in json format from above configuration code block:
[
{
"interface": "GE6",
"v4Disable": false,
"proto": "static",
"ip": "192.168.10.2",
"gateway": "192.168.10.1",
"netmask": "255.255.255.0",
"v6Disable": true
},
{
"interface": "GE5",
"v4Disable": false,
"proto": "pppoe",
"username": "zh013326",
"password": "test1",
"v6Disable": true
},
{
"interface": "GE4",
"v4Disable": false,
"proto": "static",
"ip": "169.254.3.34",
"gateway": "169.254.3.33",
"netmask": "255.255.255.248",
"v6Disable": true
}
]
Please note:
All supported VMware VeloCloud SD-WAN edge versions
echo 'YOUR_BASE64_ENCODED_DATA' | base64 --decode
[Convert]::FromBase64String("YOUR_BASE64_ENCODED_DATA") | Out-File -Encoding UTF8 "output.txt"