Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ネットワークに 3 つの IP 範囲があり、コマンド ラインで Facebook アクセスをブロックしました。
iptables -I FORWARD -m string --algo bm --string "facebook.com" -j DROP
ネットワーク範囲「192.168.0.x」を例外にしたい
どうやってやるの?
前もって感謝します!
マークnegateを使用して送信元 IP アドレスを単純化できます。!
negate
!
iptables -I FORWARD ! -s 192.168.0.0/24 -m string --algo bm --string "facebook.com" -j DROP