Share

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.

Important: SCM does not support authenticated proxy which requires the user provides valid credentials to the proxy.

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

  1. Click Start, click Run, type cmd, and then click OK.

  2. netsh winhttp set proxy proxyservername:portnumber. Replace proxyservername with either the fully qualified domain name (FQDN) or IP Address of the proxy server.

Removing proxy settings by netsh.

To use the Netsh.exe tool to remove a proxy server

  1. Click Start, click Run, type cmd, and then click OK.
  2. 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

  1. Click Start, click Run, type cmd, and then click OK.
  2. 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

Was this information helpful?