tldr/pages/common/ngrep.md
zhangda7 34aec29c08 ngrep: add page (#930)
* ngrep: add page

* ngrep: update command

* ngrep: update syntax
2016-09-01 20:50:09 +05:30

24 lines
438 B
Markdown

# ngrep
> Filter network traffic packets using regular expressions.
- Capture traffic of all interfaces:
`ngrep -d any`
- Capture traffic of a specific interface:
`ngrep -d {{eth0}}`
- Capture traffic crossing port 22 of interface eth0:
`ngrep -d {{eth0}} port {{22}}`
- Capture traffic from or to a host:
`ngrep host {{www.example.com}}`
- Filter keyword 'User-Agent:' of interface eth0:
`ngrep -d {{eth0}} '{{User-Agent:}}'`