1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 20:15:23 +02:00

tshark: add capture filter (#2872)

This commit is contained in:
Anatoli Babenia 2019-09-18 18:09:38 +03:00 committed by Lucas Gabriel Schneider
parent c84b654561
commit f840d3d0dc

View file

@ -6,7 +6,11 @@
`tshark`
- Only output captured packets matching a specific wireshark filter:
- Only capture packets matching a specific capture filter:
`tshark -f '{{udp port 53}}'`
- Only show packets matching a specific output filter:
`tshark -Y '{{http.request.method == "GET"}}'`