14
2
Can I somehow monitor incoming pings on a Linux machine? netcat doesn't seem to support that.
14
2
Can I somehow monitor incoming pings on a Linux machine? netcat doesn't seem to support that.
22
You can use tcpdump ip proto \\icmp
to monitor incoming pings (ICMP echo requests)
2
You could setup a rule in iptables that logs icmp packets.
1
If you want something nicer than tcpdump (GUI and stuff), you can try with Wireshark.