How to work through Corp Firewall/Proxy
For working the ONAP flow through Corporate proxies. Here are a few guidelines
Step-by-step guide
On the platform /etc/environment
export http_proxy="http://proxy.att.com:port"
export https_proxy="http://proxy.att.com:port"
sudo –E abc_install.sh where is the ONAP component
On each docker install script
export http_proxy="http://proxy.att.com:port"
export https_proxy="http://proxy.att.com:port"
sudo –E dockerabc_install.sh
On Java install.xml scripts add the proxy
<proxies>
<proxy>
<id>optional</id>
<active>true</active>
<protocol>http</protocol>
<host>proxy.att.com</host>
<port>1234</port>
<nonProxyHosts>localhost,127.0.0.1,*.att.com</nonProxyHosts>
</proxy><proxy>
<id>optional</id>
<active>true</active>
<protocol>https</protocol>
<host> proxy.att.com </host>
<port>1234</port>
<nonProxyHosts>localhost,127.0.0.1,*.att.com</nonProxyHosts>
</proxy>
</proxies>