屏蔽IP
1 | #屏蔽单个IP的命令是 |
屏蔽URL
1 | iptables -I INPUT -m string --string "bidder?sid=" --algo bm -j DROP |
保存规则
1 | service iptables save |
iptables 选项
1 | -t, --table table 对指定的表 table 进行操作, table 必须是 raw, nat,filter,mangle 中的一个。如果不指定此选项,默认的是 filter 表。 |
1 | #屏蔽单个IP的命令是 |
1 | iptables -I INPUT -m string --string "bidder?sid=" --algo bm -j DROP |
1 | service iptables save |
1 | -t, --table table 对指定的表 table 进行操作, table 必须是 raw, nat,filter,mangle 中的一个。如果不指定此选项,默认的是 filter 表。 |