When checking the VAMI interface on the vCenter Cloud Gateway appliance the only options for proxy are enabling or disabling for HTTP, HTTPS and FTP, there is no option to add exceptions:
GET https://<Cloud Gateway IP>:5480/rest/appliance/networking/noproxy
If you want to add entries you can do a PUT against the following URL:
PUT https://<Cloud Gateway IP>:5480/rest/appliance/networking/noproxy
with the following JSON:
{
"servers": [
"localhost",
"127.0.0.1",
"10.0.0.0" ** Add networks that require exception **
]
}
localhost and 127.0.0.1 are always added
In the below example I GET the current list of proxy exceptions:
I then PUT two new exceptions into the list (10.0.0.0 and 192.168.1.0):
Then finally do another GET to show the full list: