The Linux Blog UNIX, LINUX, BSD, OSX

31Mar/090

Squid Proxy Server Mac Address based filtering

Setting up ACL's based on MAC address

Open squid.conf:
# vi /etc/squid/squid.conf
Local acl, section and append ACL as follows:
acl macf1 arp mac-address
acl macf2 arp 00:11:22:33:44:55
http_access allow macf1
http_access allow macf2
http_access deny all

Save and close the file. Restart squid server:
# /etc/init.d/squid restart

Thanks to cyberciti.biz