iptables 博大精深,知道基本語法其他 需要什麼就去查資料好了 這裡做一下筆記
這裡列幾條Linux 屏蔽ip的命令,如下:
屏蔽單個IP的命令
iptables -I INPUT -s 192.168.9.198 -j DROP
封整個段即從192.0.0.1到192.255.255.254的命令
iptables -I INPUT -s 192.0.0.0/8 -j DROP
#封某個段 從192.168.8.1到192.168.8.254的命令
iptables -I INPUT -s 192.168.8.0/24 -j DROP