Cacti監控Centos抓包unreachable - admin prohibited

09:10:41.023399 IP 192.168.1.80 > 192.168.2.182: ICMP host 192.168.1.80 unreachable - admin prohibited, length 79

抓包發現老是有這個出現,並且是跟在GetRequest後面。tcp

打開iptables配置:spa

最開始網上找的配置語句是這個,code

-A INPUT -p udp -m udp --sport 161 -j ACCEPT

後面覺得還須要開放tcp,又加了一條,blog

-A INPUT -p tcp -m state --state NEW -m tcp --dport 161 -j ACCEPT 
-A INPUT -p udp -m udp --sport 161 -j ACCEPT

最後發現udp那條是錯誤的,因而,ip

-A INPUT -p udp -m state --state NEW -m udp --dport 161 -j ACCEPT

再抓包,就看見每一個GetRequest後面都是GetResponse了。it

順便記下此次抓包的命令table

tcpdump -nn -X 'host 192.168.2.182' -c 10
相關文章
相關標籤/搜索