Parameters that configure connection to the proxy server used by Dr.Web Updater to connect to Doctor Web update servers (for example, if direct connections to external servers is prohibited by the security policies of your network).
If the parameter value is not specified, the proxy server is not used.
Allowed values:
<connection string> — Proxy server connection string. The string has the following format (URL):
[<protocol>://][<user>:<password>@]<proxyhost>:<port>
where
•<protocol> — Type of the used protocol (in the current version, only http is available). •<user> — Name of the user for connection to proxy. •<password> — Password for connection to proxy. •<proxyhost> — Address of the host where the proxy operates (IP address or domain name). •<port> — Used port. The <protocol> and <user>:<password> parameters can be absent. The address of proxy <proxyhost>:<port> is obligatory.
If the user name (<user>) or password (<password>) contains the following characters: '@', '%' or ':', these characters must be changed to the following codes: "%40", "%25", and "%3A" respectively.
Examples:
1.In the configuration file: •Connection to proxy on host proxyhost.company.org using port 123: Proxy = proxyhost.company.org:123
•Connection to proxy on host 10.26.127.0 using port 3336 over http: protocol as user "legaluser" with password "passw": Proxy = http://legaluser:passw@10.26.127.0:3336
•Connection to proxy on host 10.26.127.0 using port 3336 "user@company.com" with password ''passw%123:": Proxy = user%40company.com:passw%25123%3A@10.26.127.0:3336
2.Using command drweb-ctl cfset for specifying the same parameters: drweb-ctl cfset Update.Proxy proxyhost.company.org:123
drweb-ctl cfset Update.Proxy http://legaluser:passw@10.26.127.0:3336
drweb-ctl cfset Update.Proxy user%40company.com:passw%25123%3A@10.26.127.0:3336
|