手机
当前位置:查字典教程网 >操作系统 >unix linux >在Linux系统中给iptables规则添加注释的教程
在Linux系统中给iptables规则添加注释的教程
摘要:给iptables规则添加注释,以此给你的老板和同事一个好印象。方法如下:什么是iptables的注释呢?iptables的注释一般使用在每...

给iptables规则添加注释,以此给你的老板和同事一个好印象。方法如下:

什么是iptables的注释呢?

iptables的注释一般使用在每条规则的后面,注释一般用 /* */ 包住。(具体的见下面的iptables规则中的注释 /* allow SSH to this host from anywhere */ )

$ sudo iptables -L

Chain INPUT (policy DROP)

target prot opt source destination

ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED /* allow inbound traffic for established and related connections */

fail2ban-ssh tcp -- anywhere anywhere multiport dports ssh

ACCEPT tcp -- anywhere anywhere tcp dpt:ssh /* allow SSH to this host from anywhere */

ACCEPT udp -- anywhere anywhere udp dpt:route /* allow incoming RIP on the internal interface */

ACCEPT all -- localhost localhost /* allow any local-only traffic */

ACCEPT ipv6 -- tserv2.ash1.he.net anywhere /* allow IPv6 tunnel traffic from HE */

ACCEPT icmp -- anywhere anywhere /* allow ICMP traffic to this host from anywhere */</p> <p> Chain FORWARD (policy DROP)

target prot opt source destination

ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED /* allow inbound traffic for established and related connections */

ACCEPT all -- anywhere anywhere /* allow all Internet bound traffic from the internal network */

ACCEPT icmp -- anywhere anywhere /* forward any ICMP traffic */</p> <p> Chain OUTPUT (policy ACCEPT)

target prot opt source destination</p> <p> Chain fail2ban-ssh (1 references)

target prot opt source destination

RETURN all -- anywhere anywhere

为新的iptables规则添加注释

为新的iptables规则添加注释的语法为 : comment --comment “要添加的注释文字”

具体的例子:下面添加一条允许ssh流量通过的规则,并且给这条规则添加注释:

$ sudo iptables -A INPUT -p tcp -m tcp --dport 22 -m comment --comment "allow SSH to this host from anywhere" -j ACCEPT

然后用 -L 列出规则,就会看到刚才添加的规则和下面的一样:

$ sudo iptables -L</p> <p>ACCEPT tcp -- anywhere anywhere tcp dpt:ssh /* allow SSH to this host from anywhere */

教程完!

【在Linux系统中给iptables规则添加注释的教程】相关文章:

Linux操作系统中的七件超厉害的武器

完美解决Linux操作系统下aes解密失败的问题

Linux系统中的mount挂载磁盘命令使用教程

Linux系统中cat命令使用的实例教程

Linux防火墙iptables简明教程

Linux中swap交换分区的创建和容量调整的教程

Linux系统下常见基本问题的解决方法

Linux系统下获取主板信息的方法

在Linux下生成crypt加密密码的方法

Linux 系统中确保访问三级域名畅通的方法

精品推荐
分类导航