brunocunha
(usa Fedora)
Enviado em 08/04/2009 - 13:44h
configurei o squid assim:
squid.conf:
acl manager proto cache_object
acl localhost src 127.0.0.1/32
acl to_localhost dst 127.0.0.0/8
acl localnet src 192.168.4.0/255.255.255.0 # RFC1918 possible internal network
acl SSL_ports port 443
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 # https
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl CONNECT method CONNECT
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localnet
http_access allow localhost
http_access deny all
icp_access allow localnet
icp_access deny all
htcp_access allow localnet
htcp_access deny all
http_port 8888
hierarchy_stoplist cgi-bin ?
access_log /var/log/squid/access.log squid
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern (cgi-bin|\?) 0 0% 0
refresh_pattern . 0 20% 4320
icp_port 3130
coredump_dir /var/spool/squid
minha rede
eth0 minha maquina com internet, ip dinamico = 192.164.254.17 gat 192.168.254.1
eth2 mplaca de rede para maquinas conectadas no proxy = 192.168.4.1 gat none
maquina connected no proxy eth2 192.168.4.10 gat 192.168.4.1
as maquina estao ligadas via cabo cross-over para testes e o so da mauquina clietne e windows vista
proxy setting 192.168.4.1:8888
n~ao est'a funcionando.
eu fiz o seguinte.
net.ipv4.ip_forward = 1 (by default its 0)
iptables -t nat -A POSTROUTING -o eth2 -j MASQUERADE
iptables -t nat -A PREROUTING -i eth0 -p tcp –dport 80 -j REDIRECT –to-port 8888
now, everything is fine but not working.
any ideias??? thanks