|
NAMEtcpstat —
report network interface statistics
SYNOPSIS
DESCRIPTIONtcpstat reports certain network interface statistics
much like
vmstat(8)
does for system statistics. Statistics include bandwidth being used, number of
packets, average packet size, and much more.
Network information is collected either by reading data from
filename, or by directly monitoring the network
interface interface. The default action for
interval is the sample interval, in seconds, in which the statistics are based upon and when in default mode, how often the display is updated. If -1 is given, then the interval is taken to be the entire length of the sample. Default is 5 seconds. When reading data from filename,
OPTIONSThe options are as follows:
OUTPUT FORMATThe output string is any quoted string, andtcpstat will write this string to the stdout. In
addition, tcpstat will substitute certain values for
substrings which begin with a "%", as well as most standard
printf(3)
"\" escape characters. Here is a list of all substitution strings:
The default format string for
"Time:%S\tn=%n\tavg=%a\tstddev=%d\tbps=%b\n" which will produce an output which would look similar to: Time:940948785 n=107 avg=251.81 stddev=422.45 bps=43110.40 Time:940948790 n=99 avg=400.21 stddev=539.39 bps=63393.60 Time:940948795 n=43 avg=257.16 stddev=352.83 bps=17692.80 It is worth noting for example, that many of the protocol filters
(%T, %U, etc.) may be seen as being redundant because protocols can be
filtered using SIGNALSUpon receiving a SIGINT,tcpstat will print any
remaining statistics, and then exit. Upon receiving a SIGUSR1 when printing
intervals, tcpstat will print the current statistics
immediately. This can be useful when using an interval length of
"-1" to print statistics on demand.
FILES
EXAMPLEStcpstat -i fxp0 Displays the default statistics every 5 seconds of all traffic currently passing through the fxp0 network interface. tcpstat -r file.dump Displays the default statistics every 5 seconds from the tcpdump(1) generated file "file.dump". tcpstat -f 'port (smtp or http)' -o
'%S %b\n' -r file.dump 2.3 Displays every 2.3 seconds the timestamp together with smtp and http traffic throughput of the data from "file.dump", in a format which would be suitable for gnuplot(1). tcpstat -b 28800 -r file.dump
0.5 Displays what percentage of the traffic in file.dump exceeded the speed of my modem (28800 bits per second.) SEE ALSOtcpdump(1), pcap(3), bpf(4), printf(3)NOTESInterval size affects bandwidthDue to the nature of how bandwidth is actually measured (from discrete samples of data), the bandwidth numbers displayed will vary according to the interval variable. Generally speaking, if you often have rapid bursts of packet data, the bandwidth reported will not reflect this when interval is sufficiently large. This results in an "averaging" effect, which may or may not be desired. On the other hand, if interval is too small (say < 0.01), this results in unrealisticaly large bandwidths for very short amounts of time.The reason for the latter is that most network interfaces do not hand over packets bit by bit, but rather packet by packet. Thus, each packet is reported as being tranfered "instantaneously", resulting in "infinite" (or rather indeterminable) bandwidth. Thus, when counting single bits on the wire, there really is no such thing as "bandwidth" because they aren't really moving from the network stack's point of view (cf. Zeno's Paradox.) A possible solution is to internaly spline the packet sizes together and report the bandwidth as the scalar integral over the given interval, but this has yet to be implimented, and to be honest, would be the proverbial cruise missle to destroy an ant hill. That being said (whew!), a "good value" for interval is usualy somewhere between 0.5 and 2. Difference between normal and 'dumb' bandwidth modes.In normal bandwidth mode, when an interval exceeds the given bandwidth, the extra bytes are "moved" into the next interval. This has the effect of trying to imagine how overloaded an interface would be if the interface had a smaller bandwidth, yet same amount of data tried to get through.In "dumb" bandwidth mode, each interval which exceeds the given bandwidth is simply counted. Nothin' else. HISTORYtcpstat was first written in Winter 1998 using
FreeBSD 3.0, and then finaly retrofited for Linux in
Spring 2000.
AUTHORSPaul Herman ⟨pherman@frenchfries.net⟩Cologne, Germany. Please send all bug reports to this address. BUGSDue to a bug in libpcap, tcpstat will hang indefinately under Linux when no packets arrive. This is because the timeout in pcap_open_live() is ignored under Linux when the interface is idle, which causes pcap_dispatch() to never return.Not tested with link types other than Ethernet, PPP, and "None" types. There may be problems reading non-IPv4 packets across platforms when reading null type link layers. This is due to a lack of a standardized packet type descriptor in libpcap for this link type. Snoop file formats cannot be read from stdin or named pipes.
Visit the GSP FreeBSD Man Page Interface. |