Changeset e86a0c6
- Timestamp:
- 12/03/18 14:27:53 (2 years ago)
- Branches:
- develop
- Children:
- c337c62f
- Parents:
- 99ee456
- Location:
- tools/traceends
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/traceends/traceends.1
rd6dc0f6 re86a0c6 1 .TH TRACEENDS "1" " September 2011" "traceends (libtrace)" "User Commands"1 .TH TRACEENDS "1" "December 2018" "traceends (libtrace)" "User Commands" 2 2 .SH NAME 3 3 traceends \- summarise traffic done by every endpoint observed in a trace 4 4 .SH SYNOPSIS 5 .B tracetopends 6 [ \fB-f \fRbpf | \fB--filter=\fRbpf] 7 [ \fB-a \fRaddrtype | \fB--address=\fRaddrtype] 5 .B traceends 6 [ \fB-t \fRthreads | \fB--threads=\fRthreads ] 7 [ \fB-f \fRbpf | \fB--filter=\fRbpf ] 8 [ \fB-a \fRaddrtype | \fB--address=\fRaddrtype ] 9 [ \fB-S \fR| \fB--ignore-source\fR ] 10 [ \fB-D \fR| \fB--ignore-dest\fR ] 8 11 [ \fB-H | \fB--help] 9 12 … … 14 17 program directly \-\- see \fBtracetopends\fR instead. 15 18 19 .SH OPTIONS 20 .TP 21 \fB\-t\fR threads 22 Use the given number of threads for packet processing. Defaults to 1 thread. 23 16 24 .TP 17 25 \fB\-f\fR bpf filter 18 output only packets that match tcpdump style bpf filter 26 Ignore packets that do not match this tcpdump style bpf filter. 19 27 20 28 .TP … … 23 31 and "v6" which will report endpoint stats for each observed MAC address, IPv4 24 32 address and IPv6 address respectively. 33 34 .TP 35 \fB\-S, --ignore-source\fR 36 Do not track endpoints which are sending traffic. Mutually exclusive with the 37 \fBignore-dest\fR option. 38 39 .TP 40 \fB\-D, --ignore-dest\fR 41 Do not track endpoints which are receiving traffic. Mutually exclusive with the 42 \fBignore-source\fR option. 25 43 26 44 .SH OUTPUT -
tools/traceends/tracetopends.1
rd6dc0f6 re86a0c6 1 .TH TRACETOPENDS "1" " September 2011" "tracetopends (libtrace)" "User Commands"1 .TH TRACETOPENDS "1" "December 2018" "tracetopends (libtrace)" "User Commands" 2 2 .SH NAME 3 3 tracetopends \- reports the endpoints that are responsible for the most traffic … … 5 5 .SH SYNOPSIS 6 6 .B tracetopends 7 [ \fB-t \fRthreads ] 7 8 [ \fB-f \fRbpf ] 8 9 [ \fB-A \fRaddrtype ] 10 [ \fB-S ] 11 [ \fb-D ] 9 12 [ \fB-s ] 10 13 [ \fB-d ] … … 17 20 tracetopends reports the number of bytes and packets sent and received by the 18 21 busiest endpoints observed in the input trace(s). 22 23 .SH OPTIONS 24 25 .TP 26 \fB\-t\fR threads 27 Use the given number of threads for packet processing. Defaults to 1 thread. 19 28 20 29 .TP … … 31 40 and "v6" which will report endpoint stats for each observed MAC address, IPv4 32 41 address and IPv6 address respectively. 42 43 .TP 44 \fB\-S 45 Do not track endpoints which are sending traffic. Mutually exclusive with the 46 \fB\-D \fRoption. 47 48 .TP 49 \fB\-D 50 Do not track endpoints which are receiving traffic. Mutually exclusive with the 51 \fB\-S \fRoption. 33 52 34 53 .TP … … 73 92 Find the IPv4 addresses that are sending the most traffic. 74 93 .nf 75 tracetopends -A v4 -b -s erf:trace.erf.gz94 tracetopends -A v4 -b -s -S erf:trace.erf.gz 76 95 .fi 77 96
Note: See TracChangeset
for help on using the changeset viewer.