> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/linux/tcpdump/capture-icmp-packets.md).

# Capture ICMP Packets

In order to capture ICMP packets using `tcpdump` we can use the following command -

## Usage

```bash
sudo tcpdump icmp
```

We can also add `-vv` argument for more verbose output.

***Source:*** [***Danielmiessler***](https://danielmiessler.com/study/tcpdump/#protocol)
