Configure Squid For Internet access
Configure Squid For Internet access.
1. Install squid
yum install squid
2. Enable squid for to start after boot
chkconfig squid on
3. Edit the /etc/squid/squid.conf and following entries as per your need.
acl localnet src 10.0.0.0/28
http_port 192.168.1.2:8080
dns_nameservers 192.168.1.10 192.168.1.11
4. service squid start
5. Now check the access log if connection are coming or not.
tail -f /var/log/squid/access.log
No comments