1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
termshark(1) -- A wireshark-inspired terminal user interface for tshark
=============================================
## SYNOPSIS
`termshark` [options] [FilterOrFile]
## DESCRIPTION
A wireshark-inspired terminal user interface for tshark.
Analyze network traffic interactively from your terminal.
See https://github.com/gcla/termshark for more information.
## OPTIONS
* `-i`=<interface> :
Interface to read.
* `-r`=<file> :
Pcap file to read.
* `-d`=<layer_type>==<selector>,<decode-as protocol> :
Specify dissection of layer type.
* `-Y`=<displaY_filter> :
Apply display filter.
* `-f`=<capture_filter> :
Apply capture filter.
* `--pass-thru`=[yes|no|auto|true|false] :
Run tshark instead (auto => if stdout is not a tty). (default: auto)
* `--log-tty`=[yes|no|true|false] :
Log to the terminal.. (default: false)
* `-h`, `--help` :
Show this help message.
* `-v`, `--version` :
Show version information.
## ARGUMENTS
`FilterOrFile`
Filter (capture for iface, display for pcap), or pcap file to read.
## SEE ALSO
tshark(1)
|