Ubuntu 10.04.4에는 firehol 및 tinyproxy가있는 투명한 프록시 설정이 있지만 http에서는 잘 작동하지만 https에서는 작동하지 않습니다.
다음 명령이 정상적으로 완료되면 tinyproxy에 직접 연결하는 것이 좋습니다.
env http_proxy=localhost:8888 curl http://www.google.com
env https_proxy=localhost:8888 curl https://www.google.com
HTTP 투명 프록시도 잘 작동합니다.
curl http://www.google.com
그러나 https를 사용하여 Google에 직접 액세스하면 명령이 중단됩니다.
curl https://www.google.com
다음은 firehol 및 tinyproxy에 대한 전체 구성 파일입니다. 투명한 프록시 이외의 용도로 firehol을 사용하는 데 관심이 없습니다.
firehol.conf :
transparent_proxy "80 443" 8888 proxy
interface any world
client all accept
server all accept
tinyproxy.conf (업스트림 프록시를 제외한 모든 기본값) :
User nobody
Group nogroup
Port 8888
Timeout 600
DefaultErrorFile "/usr/share/tinyproxy/default.html"
StatFile "/usr/share/tinyproxy/stats.html"
Logfile "/var/log/tinyproxy/tinyproxy.log"
LogLevel Info
PidFile "/var/run/tinyproxy/tinyproxy.pid"
MaxClients 100
MinSpareServers 5
MaxSpareServers 20
StartServers 10
MaxRequestsPerChild 0
ViaProxyName "tinyproxy"
ConnectPort 443
ConnectPort 563
upstream corporate.fire.wall:8080