Verde : Online Registration via Proxy Server

Verde : Online Registration via Proxy Server

If the Verde Server does not have direct internet access and if it is required to communicate via a Proxy Server, following configuration needs to be done on the Verde Server so the outgoing network traffic from Verde Server gets redirected via the configured Proxy Server.

Step-1: Modify file /usr/lib/verde/etc/licsrv/etc/licsrv.conf

[root@verde01 /]# cat /usr/lib/verde/etc/licsrv/etc/licsrv.conf
{
"ProxyEnable": 1,
"ProxyServer": "###.###.###.###:port"
}

Note: Configure proper IP Address and port number of the Proxy Server as per the details specific to the environment. 
 
Make sure to restart the license service after changing the config file

In case, you are performing some tests using WGET or CURL, you might require to modify the following files also.

Step-1: Modify file /etc/environment

[root@verde01 /]# cat /etc/environment
export http_proxy="http://###.###.###.###:port"
export https_proxy="https://###.###.###.###:port"
export HTTP_PROXY="http://###.###.###.###:port"
export HTTPS_PROXY="https://###.###.###.###:port"

Step-2 Modify  file  /etc/profile.d/proxy

[root@verde01 /]# cat /etc/profile.d/proxy
export http_proxy="http://###.###.###.###:port"
export https_proxy="https://###.###.###.###:port"
export HTTP_PROXY="http://###.###.###.###:port"
export HTTPS_PROXY="https://###.###.###.###:port"