分类目录归档:iptables

iptables-comment加注释

iptables 可以加载comment模块,对规则加以解释,方便管理!

1# iptables -m comment -help
2iptables v1.4.10
3.
4.
5.
6comment match options:
7--comment COMMENT Attach a comment to a rule

示例:

01# iptables -t filter -I INPUT -p tcp --dport 21 -j ACCEPT -m comment --comment "remark"
02# iptables -t filter -I INPUT -m comment --comment "remark" -p tcp --dport 21 -j ACCEPT
03 
04# iptables -t filter -nL INPUT
05Chain INPUT (policy ACCEPT)
06target     prot opt source               destination        
07ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           tcp dpt:21 /* remark */
08ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           /* remark */ tcp dpt:21
09 
10 
11 
12# iptables -t filter -I INPUT -m comment --comment "remark1" -p tcp --dport 21 -j ACCEPT -m comment --comment "remark2"
13 
14# iptables -t filter -nL INPUT
15Chain INPUT (policy ACCEPT)
16target     prot opt source               destination        
17ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           /* remark1 */ tcp dpt:21 /* remark2 */

参考:

http://spamcleaner.org/en/misc/iptables-comment.html