Update cheatsheets

This commit is contained in:
ivuorinen
2025-04-23 00:19:06 +00:00
parent 8ba6f7fc9e
commit 94c28849c9
382 changed files with 1183 additions and 1056 deletions

View File

@@ -10,16 +10,16 @@ source: https://github.com/tldr-pages/tldr.git
- Display available interfaces:
`dumpcap --list-interfaces`
`dumpcap {{[-D|--list-interfaces]}}`
- Capture packets on a specific interface:
`dumpcap --interface {{1}}`
`dumpcap {{[-i|--interface]}} {{1}}`
- Capture packets to a specific location:
`dumpcap --interface {{1}} -w {{path/to/output_file.pcapng}}`
`dumpcap {{[-i|--interface]}} {{1}} -w {{path/to/output_file.pcapng}}`
- Write to a ring buffer with a specific max file limit of a specific size:
`dumpcap --interface {{1}} -w {{path/to/output_file.pcapng}} --ring-buffer filesize:{{500000}} --ring-buffer files:{{10}}`
`dumpcap {{[-i|--interface]}} {{1}} -w {{path/to/output_file.pcapng}} {{[-b|--ring-buffer]}} filesize:{{500000}} {{[-b|--ring-buffer]}} files:{{10}}`