Настройка:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
192.168.13.31 GW internet 10.10.15.10 GW LAN 10.10.15.50 SQUID proxy 10.10.15.0/24 LAN Создать на Микротик ip firewall address-list add address=10.10.15.10-10.10.15.40 list=Proxy_Clients ip firewall mangle add action=mark-routing chain=prerouting dst-port=80 new-routing-mark=to_proxy protocol=tcp src-address-list=Proxy_Clients ip firewall nat add action=src-nat chain=srcnat comment=nat out-interface=wan routing-mark=!to_proxy to-addresses=192.168.13.31 ip route add distance=1 gateway=10.10.15.50 routing-mark=to_proxy Создать на машине где SQUID iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j DNAT --to 10.10.15.50:3128 Минимальная настройка SQUID nano /etc/squid/squid.conf http_port 3128 transparent acl all src all acl lan src 10.10.15.0/24 127.0.0.0/8 http_access allow lan Минимальная настройка SARG nano /etc/sarg/sarg.conf найти и отредактировать graphs yes graph_days_bytes_bar_color orange output_dir /var/www/squid-reports charset UTF-8 |