Подскажите куда копать.
Есть терминальный сервер(CentOS 6) с интернетом и есть пользователи этого сервера, которым которым нужно открыть доступ только к 2м IP.
Настроил Squid, работает нормально, если ручками прописать в настройки Firefox.
Пользователей у меня немало, вручную прописывать лениво. Решил завернуть весь http траф на squid.
iptables -t nat -A OUTPUT -p tcp -m multiport --dports 80,8000,8088,3128 -j DNAT --to-destination 127.0.0.1:3128
Теперь на запрещенных сайтах, как положено, отображается страница с Access Denied, а на «разрешенных» «The requested URL could not be retrieved»
Access log пуст.
squid.conf:
http_port 127.0.0.1:3128 transparent
acl localnet src 10.x.0.0/16 127.0.0.1
acl allowed_ip dst 10.x.0.0/16 10.x.x.0/24
acl SSL_ports port 443 # https
acl SSL_ports port 563 # snews
acl SSL_ports port 873 # rsync
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 Safe_ports port 631 # cups
acl Safe_ports port 873 # rsync
acl Safe_ports port 901 # SWAT
acl Safe_ports port 22 # ssh
acl purge method PURGE
acl CONNECT method CONNECT
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localnet allowed_ip
http_access deny all
access_log /var/log/squid/access.log squid
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern -i (/cgi-bin/|\?) 0 0% 0
refresh_pattern (Release|Packages(.gz)*)$ 0 20% 2880
refresh_pattern . 0 20% 4320
acl shoutcast rep_header X-HTTP09-First-Line ^ICY.[0-9]
#upgrade_http0.9 deny shoutcast
acl apache rep_header Server ^Apache
#broken_vary_encoding allow apache
hosts_file /etc/hosts
cache deny allowed_ip