在Squid中启用MAC地址过滤

时间:2013-01-25 08:43:52

标签: linux squid

您好请告诉我如何使用Squid上的MAC地址过滤互联网访问....

2 个答案:

答案 0 :(得分:2)

/etc/squid/squid.conf中添加一些内容:

acl mac_addr1 arp ff:ff:ee:aa:00:00
acl mac_addr2 arp 00:11:22:33:44:55
http_access allow mac_addr1
http_access allow mac_addr2
http_access deny all

此示例仅允许http_access到mac_addr1mac_addr2

您必须使用squid支持编译mac。为此,请添加–enable-arp-acl以配置命令。

有关详细信息,请参阅this

答案 1 :(得分:1)

这里有一些关于基于MAC的过滤的规则。

http://tecadmin.net/configure-squid-proxy-server-mac-address-based-filtering/