linux icmp阻塞,linux – 为什么不阻止ICMP?

我想我的CentOS 5.3系统几乎完成了我的iptables设置.这是我的剧本……

# Establish a clean slate

iptables -P INPUT ACCEPT

iptables -P FORWARD ACCEPT

iptables -P OUTPUT ACCEPT

iptables -F # Flush all rules

iptables -X # Delete all chains

# Disable routing. Drop packets if they reach the end of the chain.

iptables -P FORWARD DROP

# Drop all packets with a bad state

iptables -A INPUT -m state --state INVALID -j DROP

# Accept any packets that have something to do with ones we've sent on outbound

iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT

# Accept any packets coming or going on localhost (this can be very important)

iptables -A INPUT -i lo -j ACCEPT

# Accept ICMP

iptables -A INPUT -p icmp -j ACCEPT

# Allow ssh

iptables -A INPUT -p tcp --dport 22 -j ACCEPT

# Allow httpd

iptables -A INPUT -p tcp --dport 80 -j ACCEPT

# Allow SSL

iptables -A INPUT -p tcp --dport 443 -j ACCEPT

# Block all other traffic

iptables -A INPUT -j DROP

对于上下文,此计算机是虚拟专用服务器Web应用程序主机.

在一个previous question,Lee B说我应该“更多地锁定ICMP”.为什么不完全阻止它?如果我这样做会发生什么(会发生什么坏事)?

如果我不需要阻止ICMP,我怎么能更多地锁定它?

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值