Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道您可以监控服务器上的传入 ping:
sudo tcpdump -vi enp2s0 proto \\icmp
但我刚刚发现它只有在使用其 IPv4 地址 ping 服务器时才有效。当我尝试使用它的 IPv6 地址和 ping6 命令 ping 它时,我似乎没有收到任何数据包。
所以问题是:当有人使用服务器的 IPv6 地址对您执行 ping 操作时,您如何监控服务器。
ICMP(用于 IPv4)和 ICMPv6(用于 IPv6)是不同的协议。
要监控 IPv6 ICMP ping,您只需将 ICMPv6 指定为协议:
sudo tcpdump -vi eth0 icmp6