I have a need to run different web scenarios through different explicit HTTP proxy servers, so I can compare the performance of the proxies.
Our HTTP proxy requires authentication, and listens on TCP port 3128.
I've attached a patch to "httptest.c" which enables the above, this was written for v1.6.5 but can easily be forward ported to the latest version of Zabbix.
To use a non-authenticating proxy, you just include the name/IP and port in the variables section, like this:
Or to use a proxy that requires authentication, you can include a username, password, and optional authentication type.
Our HTTP proxy requires authentication, and listens on TCP port 3128.
I've attached a patch to "httptest.c" which enables the above, this was written for v1.6.5 but can easily be forward ported to the latest version of Zabbix.
To use a non-authenticating proxy, you just include the name/IP and port in the variables section, like this:
Code:
{proxy}=10.231.91.8:3128
The httptest.c file is totally different in 1.8.4
Comment