Configuring Proxy
Some enterprise networks are configured with a Proxy Server when accessing the Internet. The SDA Connectivity Service complies with this scenario, but an extra configuration step is needed.
Pre-requisite: proxy is configured in the OS
$ echo HTTP_PROXY=$HTTP_PROXY \
HTTPS_PROXY=$HTTPS_PROXY \
ALL_PROXY=$ALL_PROXY \
http_proxy=$http_proxy \
https_proxy=$https_proxy \
all_proxy=$all_proxyConfigure proxy in the Connectivity Client
$ sudo sda-gateway proxy set --help
>> Usage: sda-gateway proxy set [OPTIONS]
>>
>> Set the proxy configuration
>>
>> Options:
>> -t, --type [http|https|socks4|socks5]
>> Proxy protocol type [required]
>> -h, --host TEXT Proxy host [required]
>> -p, --port INTEGER Proxy port [required]
>> -u, --username TEXT Proxy username
>> -w, --password TEXT Proxy password
>> --help Show this message and exit.Last updated