DEV Community

aquila
aquila

Posted on • Updated on

Capture ping on linux using Wireshark

On linux, I want to capture ping incoming/outgoing.
Then I installed wireshark with yum command.
yum install wireshark

To watch ping,
tshark -2 -R icmp

"-R" is the option to filter on read, it must be used with -2.
icmp is protocol which is used by ping

Top comments (0)