If you are using a plain HTTP proxy server or an SSL-secured HTTP proxy server, define that proxy server and any hosts to exclude in the local.properties file in LISA_HOME.
Follow these steps:
Example:
The first two lines of the following example specify that the URL for the HTTP proxy server is http://192.168.24.242:49185.
The third line specifies that the hosts that will not go through this proxy include the loopback address for the localhost (127.0.0.1) and IP addresses in the range 192.168.32.0 through 192.168.32.255. Notice that the pipe symbol (|) is used as the delimiter between the IP addresses to exclude. Notice also that the wildcard (*) represents any valid value, where valid values for an IP address node range from zero to 255. The wildcard character can also be used with FQDNs and host names, if hosts to exclude share a standard naming convention.
lisa.http.webProxy.host=192.168.24.242 lisa.http.webProxy.port=49185 lisa.http.webProxy.nonProxyHosts=127.0.0.1|192.168.32.*
HTTP/S Proxy Server settings in local.properties
## ============================================== ## HTTP Proxy Server ## ============================================== #lisa.http.webProxy.host=<machine name or ip> ##list of excluded machine names or ip addresses delimited by pipes, * wildcard accepted <machine name or ip>[|<machine name or ip>]* lisa.http.webProxy.nonProxyHosts=127.0.0.1 #lisa.http.webProxy.port= ## ============================================== ## HTTPS Proxy Server ## ============================================== #lisa.http.webProxy.ssl.host=<machine name or ip> ##list of excluded machine names or ip addresses delimited by pipes, * wildcard accepted <machine name or ip>[|<machine name or ip>]* lisa.http.webProxy.ssl.nonProxyHosts=127.0.0.1 #lisa.http.webProxy.ssl.port= ## === Leave blank to use integrated NTLM authentication #lisa.http.webProxy.host.domain= used for NTLM authentication #lisa.http.webProxy.host.account= #lisa.http.webProxy.host.credential= ## === Exclude simple host names from proxy use - default value is true #lisa.http.webProxy.nonProxyHosts.excludeSimple=false ## === Preemptively send authorization information rather than waiting for a challenge ## ===== valid values are basic or ntlm #lisa.http.webProxy.preemptiveAuthenticationType=ntlm
Copyright © 2014 CA Technologies.
All rights reserved.
|
|