I'm able to confirm the proxy is up and running by executing this from the UTM shell....
# curl -x http://UTMIP:8080 -L -v Google
However, when I try to use the proxy from another internal machine on the same subnet, port 8080 is not responding.
A quick port check on the UTM shows....
# netstat -anutp | grep LISTEN | grep httpproxy
tcp 0 0 0.0.0.0:18080 0.0.0.0:* LISTEN 24227/httpproxy
tcp 0 0 127.0.0.1:18081 0.0.0.0:* LISTEN 24227/httpproxy
tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN 24227/httpproxy
tcp 0 0 :::18080 :::* LISTEN 24227/httpproxy
tcp 0 0 ::1:18081 :::* LISTEN 24227/httpproxy
tcp 0 0 :::8080 :::* LISTEN 24227/httpproxy
The eth0 address is 192.168.1.2. Since httpproxy is only listening to port 8080 on 0.0.0.0 and not 192.168.1.2 as well, any other internal host on the 192.168.0.0 subnet isn't able to use the proxy. I want to use this proxy for internal hosts only, not external hosts. Is is not possible to use httpproxy for internal hosts?
This thread was automatically locked due to age.