在cisco设备上你可以打开和关闭它,必须有一个原因.在他们的文档中,它只是说关闭它应该是为了提高安全性,因为它更难获取有关您的网络的信息?这就是cisco文档所说的内容.我需要实现在我公司的交换机上打开和关闭此功能的能力,以便我了解它.无论为什么我仍然必须这样做,但我想知道为什么要这样做或不给他人一个明智的答案.
当我想关闭ICMP重定向时,我这样做:
echo 0 > /proc/sys/net/ipv4/conf/all/accept_redirects
不可达的东西有类似的东西吗?
另一个线程上的用户这样做:
iptables -A OUTPUT -p icmp --icmp-type destination-unreachable -j DROP
这是一个好方法,然后我可以通过停止这种下降再次打开它?
我应该告诉别人他们不需要这个功能吗?
编辑:
在线我看到了这个:
An attacker Could gather information’s about your network when scanning it,like unused IP’s and networks. When working with (interface-) Access-Lists,a deny statement triggers an ICMP Type 3 Code 9/10 message(Network/Host is administratively Prohibited). When disabling ICMP unreachables on the interface where the ACL is applIEd,the deny statement acts like a ‘drop’ and does not reply.解决方法 从 security.SE关于同一主题的非常详尽和精心编写的 answer,我强烈建议您阅读:
At its core ICMP was designed as the deBUGging,troubleshooting,and
error reporting mechanism for IP. This makes it insanely valuable so a
lot of thought needs to into shutting it down. It would be a bit like
tacking >/dev/null 2>&1 to the end of all your cron entrIEs.
Source Quench / Redirect几乎已过时,已从现代网络设备中删除. IPv6要求ICMP完全运行.
底线:除非你完全理解其含义,否则不要阻止任何事情.如果我给你一个建议,那就是阻止你的外部防火墙中的icmp echo,并让其他所有内容保持打开状态.但这只是我的观点.
总结以上是内存溢出为你收集整理的linux – 关闭/打开不可访问消息的原因?全部内容,希望文章能够帮你解决linux – 关闭/打开不可访问消息的原因?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)