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