Proxy Configuration
Simulation Compute Manager supports proxy network. You need to specify proxy servers in order to make all SCM services work on Proxy network environment. Once you set up the proxy configuration, you must restart SCM service.
Proxy server settings on Windows
The proxy setting order is as follows :
SCM_PROXY environment variable.
set [<variable>=[<string>]]
e.g. set SCM_PROXY=https://127.1.1.1:808
e.g. set SCM_PROXY=https://proxyserver.example.com:808
Registry settings by netsh.
To use the Netsh.exe tool to configure a proxy server
Click Start, click Run, type cmd, and then click OK.
netsh winhttp set proxy proxyservername:portnumber
. Replace proxyservername with either the fully qualified domain name (FQDN) or IP Address of the proxy server.- Example IP Address and port number https://127.1.1.1:808
- Example fully qualified domain name and port number https://proxyserver.example.com:808
Removing proxy settings by netsh.
To use the Netsh.exe tool to remove a proxy server
- Click Start, click Run, type cmd, and then click OK.
- At the command prompt, type
netsh winhttp reset proxy
then press ENTER
Verify proxy configuration by netsh
To verify the current proxy configuration by using the Netsh.exe tool
- Click Start, click Run, type cmd, and then click OK.
- At the command prompt, type
netsh winhttp show proxy
, and then press ENTER.
Proxy server settings on Linux
The proxy setting order is as follows:
SCM_PROXY environment variable.
export SCM_PROXY=proxyservername:port
e.g. export SCM_PROXY=https://127.1.1.1:808
all_proxy environment variable.
This variable can be used to set a single proxy for all protocols.
export all_proxy=proxyservername:port
e.g. export all_proxy=https://127.1.1.1:808
http(s)_proxy environment variable.
This variable value is used for all http(s) traffic.
export http_proxy=proxyservername:port
e.g. export http_proxy=https://127.1.1.1:808