标签: python https firewall iptables
我想使用python实现一个简单的防火墙,它将阻止访问给定的站点列表。为此,我想知道如何使用python-iptables阻止特定站点。例如,如何阻止访问www.facebook.com?
答案 0 :(得分:0)
试试这个link,它运作完美,使用子进程并说阻塞。
或者您也可以使用iptables
iptables -A OUTPUT -d www.facebook.com -j DROP