Like almost all open source sniffing applications tcpdump the
libpcap library. People with Windows distributions
are best to check the
Windows PCAP page
for references to WinDUMP. Ethereal (wireshark)
is often used for analyzing the raw dumps.
In the simplest setup tcpdump dumps all traffic to the screen in a text format,
which you can brose via more ot other pager.
tcpdump can also be used to see if a given service may be unresponsive because
your packets are simply not reaching the remote machine. Since tcpdump is a commandline
tool, you'll very probably need to add filters - especially when you're firing tcpdump
up on a remote machine, where you're logged in via SSH. Otherwise you'll get lots
of packet dumps of SSH packets that are telling you of packets dumped that belong
to ssh telling you of packets dumped...
You can limit tcpdump "scope" in several way that can be combined
By port or range of ports
tcpdump -s0 -l -i eth0 port 25
This will dump all packets aimed at, or originating from, a TCP or UDP port 25.
The '-l' is to do line buffering, so we'll actually see each packet as it crosses
the wire.
By excluding one or several ports for services that you are not interested in. If you're debugging network connections over an SSH connection, the following
will probably be the most frequent way that you'll invoke tcpdump:
tcpdump -s0 -l not port 22
By specifying exact server communication with which you are studing.
For example to monitor the communication with the server dp.remote.net:
tcpdump -s0 -l src or dst dp.remote.net
The tcpdump filter syntax is actually powerful enough to enable you to create
a filter that provides only set of packets you want. Although sometimes you look
at wrong direction and too strict filter can make determination of the problem
more difficult. So it is safer to limit communication by host name if you
are studying a single affected host or a couple of them that by port.
Controlling amount of information about each packet
Tcpdump prints verbose information about the sniffed traffic with the -v
option. It can print hex dump of the packet with option -x. For printing
full packet you need to use option -s. One important feature is the
ability to write the "raw packets" to a file using -s0 -w name_of_file.
You can later analyze the capture using any program that understand pcap
raw dump format, for example tcpdump, snort or Ethereal. I think almost all useful
network programs now understand this format and can reuse raw packet tcpdump-generated
files. If you forgot the option -s 0 packets will truncated
and you will not be able to analyze them for example with snort. To print
them from raw tcpdump file you can use option -r. For example tcpdump -r
file_with_capture. You can use option
r with -v (versose) and -vv to get more information.
-nn blocks recognition of protocol and port as well.
Additional useful options
-i eth0 -- Listen on interface eth0. Option
-i specifies
interface to listen. If unspecified,
tcpdump searches the system interface list for the
lowest numbered, configured up interface (excluding loop back).
Ties are broken by choosing the earliest match.
-n -- Don't resolve hostnames.
-nn -- Don't resolve hostnames or port names.
-X -- Show the packet's contents in both
hex and
ASCII.
-v, -vv, -vvv -- Increase the amount of packet information
you get back.
-c -- Only get x number of packets and then
stop.
-s -- Define the size of the capture (use -s0
unless you are intentionally capturing less.)
-S -- Print absolute sequence numbers.
Creating your collection of filter expressions
TCPDUMP will only process packets that match the filter expression. Such a filter
expression can be passed on the command line, or read from a file using the -F filename
parameter.
# tcpdump -F path_to_filter
Tcpdump filter language is similar to snort (actually this language originated
in tcpdump and later was adopted and extended by snort). For more detailed info
on TCPDUMP and filter expressions, please consult the TCPDUMP man page, either via
the man command or
online at tcpdump.org.
Classic example is capturing packets coming and going to particular host:
tcpdump dst host 10.10.10.10 or scr host 10.10.10.10
Here we try to get TCP packets with source port 80
tcpdump src port 80 and tcp
Here are several examples of filters borrowed from
Prelab 2.
Write the syntax of a tcpdump command that captures packets
containing IP datagrams with a source or destination IP address equal to
10.0.1.12.
tcpdump host 10.0.1.12
Write the syntax of a tcpdump command that
captures packets containing ICMP messages with a source or destination IP
address equal to 10.0.1.12.
tcpdump icmp and host 10.0.1.12
Write the syntax of a tcpdump command that captures packets
containing IP datagrams between two hosts with IP addresses 10.0.1.11 and
10.0.1.12, both on interface eth1.
tcpdump -i eth1 host 10.0.1.11 and host 10.0.1.12
Write a tcpdump filter expression that captures packets containing
TCP segments with a source or destination IP address equal to 10.0.1.12.
tcp and host 10.0.1.12
Write a tcpdump filter expression that, in addition to the constraints
in Question 5, only captures packets using port number 23.
tcp port 23 and host 10.0.1.12
Filter can be more complex, for example:
tcpdump '(host 1.2.3.4 and net 192.168.1) and ((tcp
port 80 or port 443))'
Ethereal/Wireshark can display tcpdump logs via GUI interface and you can filter
raw logs via Etherreal/Wireshark too. It can also act as data collection tool of
its own. It will display all the connections it traced during the capture. There
are a couple ways to look for bandwidth hogs.
The "Statistics" menu has a couple of useful options. The "Protocol Hierarchy"
shows what % of packets in the trace is from each type of protocol. In the case
of a bandwith hog, at least what protocol is the culprit should be easy to spot
here.
The "Conversations" screen is also helpful for looking for bandwidth hogs. Since
you can sort the "conversations" by number of packets, the culprit is likely to
hop to the top. This isn't always the case, as it could easily be many small connections
killing the bandwidth, not one big heavy connection.
Versions
TCPDUMP version 3.9.4 is released as of October 2, 2005.
This article is the final part of my
three-part series covering 18 different
tcpdump
tips
and tricks where I continue to demonstrate features that help you filter and organize the information returned by
tcpdump
.
I recommend reading
parts
one
and
two
before
continuing with the content below.
# tcpdump -i any -c4 -A
tcpdump: data link type LINUX_SLL2
dropped privs to tcpdump
tcpdump: verbose output suppressed, use -v[v]... for full protocol decode
listening on any, link-type LINUX_SLL2 (Linux cooked v2), snapshot length 262144 bytes
21:03:21.363917 wlp0s20f3 Out IP6 kkulkarni > ff02::1:ff0e:bfb6: ICMP6, neighbor solicitation, who has kkulkarni, length 32
`.... :.........Q{AZq..w.................................r.pm.....`.b...
21:03:21.363953 lo In IP6 kkulkarni.45656 > kkulkarni.hostmon: Flags [S], seq 3428690149, win 65476, options [mss 65476,sackOK,TS val 1750938785 ecr 0,nop,wscale 7,tfo cookiereq,nop,nop], length 0
`....,...........r.pm............r.pm....X...].....................
h]4........."...
21:03:21.363972 lo In IP6 kkulkarni.hostmon > kkulkarni.45656: Flags [S.], seq 3072789718, ack 3428690150, win 65464, options [mss 65476,sackOK,TS val 1750938785 ecr 1750938785,nop,wscale 7], length 0
`....(...........r.pm............r.pm......X.'...].................
h]4.h]4.....
21:03:21.363988 lo In IP6 kkulkarni.45656 > kkulkarni.hostmon: Flags [.], ack 1, win 512, options [nop,nop,TS val 1750938785 ecr 1750938785], length 0
`.... ...........r.pm............r.pm....X...]...'.......w.....
h]4.h]4.
4 packets captured
173 packets received by filter
0 packets dropped by kernel
15. Options for extra verbosity
With some Linux programs, it's sometimes
useful to have more verbose output.
tcpdump
uses
-v
,
-vv
,
or
-vvv
to
provide different levels of verbosity. See below for examples with no verbosity to three levels of verbosity.
Default verbosity:
# tcpdump -i any -c1
tcpdump: data link type LINUX_SLL2
dropped privs to tcpdump
tcpdump: verbose output suppressed, use -v[v]... for full protocol decode
listening on any, link-type LINUX_SLL2 (Linux cooked v2), snapshot length 262144 bytes
21:06:00.903186 lo In IP kkulkarni.39876 > kkulkarni.hostmon: Flags [S], seq 1718143023, win 65495, options [mss 65495,sackOK,TS val 1879208671 ecr 0,nop,wscale 7,tfo cookiereq,nop,nop], length 0
1 packet captured
100 packets received by filter
0 packets dropped by kernel
Using the
-v
option:
# tcpdump -i any -c1 -v
tcpdump: data link type LINUX_SLL2
dropped privs to tcpdump
tcpdump: listening on any, link-type LINUX_SLL2 (Linux cooked v2), snapshot length 262144 bytes
21:06:04.209638 lo In IP6 (flowlabel 0xd17f0, hlim 1, next-header TCP (6) payload length: 44) kkulkarni.33022 > kkulkarni.hostmon: Flags [S], cksum 0x0d5b (incorrect -> 0x6c92), seq 2003870985, win 65476, options [mss 65476,sackOK,TS val 3266653263 ecr 0,nop,wscale 7,tfo cookiereq,nop,nop], length 0
1 packet captured
20 packets received by filter
0 packets dropped by kernel
Here is the
-vv
option:
# tcpdump -i any -c1 -vv
tcpdump: data link type LINUX_SLL2
dropped privs to tcpdump
tcpdump: listening on any, link-type LINUX_SLL2 (Linux cooked v2), snapshot length 262144 bytes
21:06:05.916423 tun0 Out IP (tos 0x0, ttl 64, id 22069, offset 0, flags [DF], proto TCP (6), length 1360)
kkulkarni.37152 > 10.0.115.119.https: Flags [.], cksum 0xe218 (correct), seq 168413028:168414336, ack 944490821, win 502, options [nop,nop,TS val 1351042119 ecr 3391883323], length 1308
1 packet captured
235 packets received by filter
0 packets dropped by kernel
Finally, display the highest level of detail
with the
-vvv
option:
17 August 1999 (slac.stanford.edu)
This report details an investigation of the TCPDUMP utility.
Tcpdump is a powerful tool that allows us to sniff network packets and make
some statistical analysis out of those dumps. One major drawback to tcpdump
is the size of the flat file containing the text output. But tcpdump allows
us to precisely see all the traffic and enables us to create statistical monitoring
scripts.
In our case, looking at an ethernet segment, tcpdump operates by putting
the network card into promiscuous mode in order to capture all the packets going
through the wire. Tcpdump runs using BSD Packet Filter (BPF) which is the method
of collecting data from this network interface running into promiscuous mode.
BPF receives copies from the driver of sent packets and received packets. Before
traveling through the kernel all the way up to the user process the user can
set a filter so only interesting packets go through the Kernel. SUN OS uses
Network Interface Tap (NIT) which only allows to capture packets received from
the interface but no packets sent by the host. Still the SUN OS tcpdump does
the trick but it performs its own filtering at the user process level which
means that more data goes through the kernel.
We use tcpdump to measure the response time and the packet loss percentages.
It can also tell us about lack of reachability for some distant server.
Using tcpdump we have a view on any TCP/UDP connection Establishment and
Termination. TCP uses a special mechanism to set and close connections (we will
discuss this later on); we measure the time lapse between the packets involved
with this mechanism in order to know how fast some connections operate.
The syntax I used to copy all of the packets being sent and
received by the exploit is as follows:
tcpdump -nXvSs 0 ip and host 192.168.1.101 -w sploit_log
The above noted tcpdump filter will copy all packets with a
valid IP header in them, and write them to the binary log called "sploit_log".
Lastly the IP address of the lab machine being tested is 192.168.1.101.
Now that I have the binary log file and the exploit has been
executed I can look at the packets themselves, and see if there is something
telling in the packets themselves. I use the following tcpdump syntax to look
at the file that was generated:
I wrote this filter for a friend that told me that I couldn't do this in AWK.
I also learned AWK doing this. This is NOT the proper way to do this,
Perl or C is definatly better. But, due to how simple it is, it can quickly
be changed to display the data in any way you want and support more prootcols
too. Right now it only supports IP, TCP, UDP, and ICMP. Drop me a line if you
have any comments or questions.
There is also a few things that can be configured, such as the margins, the
byte order of your machine, and also the starting position of the ip header
in the output. The last option is due to a bug konwn in tcpdump when dumping
on FDDI interfaces. See the script for more information.
Script is at end of examples. Beware, my AWK code looks like C without semicolons.
-sSnarf snaplen bytes of data from each packet rather than
the default of 68 (with SunOS's NIT, the minimum is actually 96).
68 bytes is adequate for IP, ICMP, TCP and UDP but may truncate
protocol information from name server
and NFS packets (see below). Packets truncated
because of a limited snapshot are indicated in
the output with ``[|proto]'', where proto
is the name of the protocol level at which the truncation
has occurred. Note that taking larger snapshots
both increases the amount of time it takes to process packets and, effectively,
decreases the amount of packet buffering. This may cause packets
to be lost. You should limit snaplen
to the smallest number that will capture the protocol information you're interested
in.
Setting snaplen to 0 means use the required length
to catch whole packets.
-C Before writing a raw packet to
a savefile, check whether the file is currently larger than file_size
and, if so, close the current savefile and open a new
one. Savefiles after the first savefile will have the name specified
with the -w flag, with a number after
it, starting at 2 and continuing
upward. The units of file_size are
millions of bytes (1,000,000 bytes, not 1,048,576 bytes).
-i Listen on interface.
If unspecified, tcpdump searches the
system interface list for the lowest numbered, configured up interface (excluding
loop back). Ties are broken by choosing the earliest
match.
-w Write the raw
packets to file rather than parsing and printing
them out. They can later be printed with the -r option. Standard
output is used if file is ``-''.
-r Used to print of view previous capture. For example
tcpdump -r
file_with_capture. There are several useful
options that should be used with it.
-n option blocks DNS resolution.
-nn blocks recognition of protocol
and port as well.
-v (verbose) -vv (super-verbose) can be uses to get more information.
Tcpdump prints out the headers of packets on a network interface that
match the boolean expression. It can also be run with the -w flag,
which causes it to save the packet data to a file for later analysis, and/or with
the -b flag, which causes it to read from a saved packet file rather than
to read packets from a network interface. In all cases, only packets that match
expression will be processed by tcpdump.
Tcpdump will, if not run with the -c flag, continue cap turing
packets until it is interrupted by a SIGINT signal (generated, for example, by typing
your interrupt charac ter, typically control-C) or a SIGTERM signal (typically
generated with the kill(1) command); if run with the -c flag, it will
capture packets until it is interrupted by a SIGINT or SIGTERM signal or the specified
number of packets have been processed.
When tcpdump finishes capturing packets, it will report counts of:
packets ``received by filter'' (the meaning of this depends on the OS on which
you're running tcpdump, and possibly on the way the OS was configured - if
a filter was specified on the command line, on some OSes it counts packets regardless
of whether they were matched by the filter expression, and on other OSes it counts
only packets that were matched by the filter expression and were processed by
tcpdump);
packets ``dropped by kernel'' (this is the number of packets that were dropped,
due to a lack of buffer space, by the packet capture mechanism in the OS on which
tcpdump is running, if the OS reports that information to applications; if
not, it will be reported as 0).
On platforms that support the SIGINFO signal, such as most BSDs, it will report
those counts when it receives a SIG INFO signal (generated, for example, by typing
your ``sta tus'' character, typically control-T) and will continue you have special
privileges:
UnderSunOS3.xor4.xwithNITorBPF: You must have read access to /dev/nit or /dev/bpf*.
UnderSolariswithDLPI: You must have read/write
access to the network pseudo device, e.g. /dev/le. On at least some versions
of Solaris, however, this is not suffi cient to allow tcpdump to capture
in promiscuous mode; on those versions of Solaris, you must be root, or tcpdump
must be installed setuid to root, in order to capture in promiscuous mode.
UnderHP-UXwithDLPI: You must be root or tcpdump
must be installed setuid to root.
UnderIRIXwithsnoop: You must be root or tcpdump
must be installed setuid to root.
UnderLinux: You must be root or tcpdump must be installed
setuid to root.
UnderUltrixandDigitalUNIX: Once the super-user
has enabled promiscuous-mode operation using pfconfig(8), any user may capture
network traffic with tcpdump.
UnderBSD: You must have read access to /dev/bpf*.
Reading a saved packet file doesn't require special privileges.
-a Attempt to convert network and broadcast addresses to names.
-c Exit after receiving count packets.
-C Before writing a raw packet to a savefile, check whether the file
is currently larger than file_size and, if so, close the
current savefile and open a new one. Savefiles after the first savefile will
have the name specified with the -w flag, with a number after it, starting
at 2 and continuing upward. The units of file_size are
millions of bytes (1,000,000 bytes, not 1,048,576 bytes).
-dd Dump packet-matching code as a C program fragment.
-ddd Dump packet-matching code as decimal numbers (pre ceded with
a count).
-e Print the link-level header on each dump line.
-E Use algo:secret for decrypting IPsec ESP packets. Algorithms
may be des-cbc, 3des-cbc, blowfish-cbc, rc3-cbc,
cast128-cbc, or none. The default is des-cbc. The
ability to decrypt packets is only pre sent if tcpdump was compiled
with cryptography enabled. secret the ascii text for ESP secret key.
We cannot take arbitrary binary value at this moment. The option assumes RFC2406
ESP, not RFC1827 ESP. The option is only for debugging pur poses, and the use
of this option with truly `secret' key is discouraged. By presenting IPsec secret
key onto command line you make it visible to others, via ps(1) and other
occasions.
-f Print `foreign' internet addresses numerically rather than symbolically
(this option is intended to get around serious brain damage in Sun's yp server
-- usually it hangs forever translating non- local internet numbers).
-F Use file as input for the filter expression. An additional
expression given on the command line is ignored.
-i Listen on interface. If unspecified, tcpdump searches
the system interface list for the lowest numbered, configured up interface (excluding
loop back). Ties are broken by choosing the earliest match.
On Linux systems with 2.2 or later kernels, an interface argument
of ``any'' can be used to cap ture packets from all interfaces. Note that cap
tures on the ``any'' device will not be done in promiscuous mode.
-l Make stdout line buffered. Useful if you want to see the data
while capturing it. E.g., ``tcpdump -l | tee dat'' or ``tcpdump -l > dat & tail
-f dat''.
-m Load SMI MIB module definitions from file module. This
option can be used several times to load sev eral MIB modules into tcpdump.
numbers, etc.) to names.
-N Don't print domain name qualification of host names. E.g., if
you give this flag then tcpdump will print ``nic'' instead of ``nic.ddn.mil''.
-O Do not run the packet-matching code optimizer. This is useful
only if you suspect a bug in the optimizer.
-pDon't put the interface into promiscuous mode. Note that
the interface might be in promiscuous mode for some other reason; hence, `-p'
cannot be used as an abbreviation for `ether host {local-hw- addr} or ether
broadcast'.
-q Quick (quiet?) output. Print less protocol infor mation so output
lines are shorter.
-R Assume ESP/AH packets to be based on old specifica tion (RFC1825
to RFC1829). If specified, tcpdump will not print replay prevention field.
Since there is no protocol version field in ESP/AH speci fication, tcpdump
cannot deduce the version of ESP/AH protocol.
-r Read packets from file (which was created with the -w option).
Standard input is used if file is ``-''.
-S Print absolute, rather than relative, TCP sequence numbers.
-s Snarf snaplen bytes of data from each packet rather than
the default of 68 (with SunOS's NIT, the mini mum is actually 96). 68 bytes
is adequate for IP, ICMP, TCP and UDP but may truncate protocol infor mation
from name server and NFS packets (see below). Packets truncated because of a
limited snapshot are indicated in the output with ``[|proto]'', where
proto is the name of the proto col level at which the truncation has
occurred. Note that taking larger snapshots both increases the amount of time
it takes to process packets and, effectively, decreases the amount of packet
buffer ing. This may cause packets to be lost. You should limit snaplen
to the smallest number that will capture the protocol information you're inter
ested in. Setting snaplen to 0 means use the required length to catch
whole packets.
-T Force packets selected by "expression" to be inter cedure
Call), rtp (Real-Time Applications proto col), rtcp (Real-Time
Applications control proto col), snmp (Simple Network Management Protocol),
vat (Visual Audio Tool), and wb (distributed White Board).
-tDon't print a timestamp on each dump line.
-tt Print an unformatted timestamp on each dump line.
-ttt Print a delta (in micro-seconds) between current and previous
line on each dump line.
-tttt Print a timestamp in default format proceeded by date on each
dump line. -u Print undecoded NFS handles.
-v (Slightly more) verbose output. For example, the time to live,
identification, total length and options in an IP packet are printed. Also enables
additional packet integrity checks such as verify ing the IP and ICMP header
checksum.
-vv Even more verbose output. For example, additional fields are
printed from NFS reply packets, and SMB packets are fully decoded.
-vvv Even more verbose output. For example, telnet SB ...
SE options are printed in full. With -X telnet options are printed
in hex as well.
-w Write the raw packets to file rather than parsing and printing
them out. They can later be printed with the -r option. Standard output is used
if file is ``-''.
-x Print each packet (minus its link level header) in hex. The smaller
of the entire packet or snaplen bytes will be printed.
-X When printing hex, print ascii too. Thus if -x is also
set, the packet is printed in hex/ascii. This is very handy for analysing new
protocols. Even if -x is not also set, some parts of some packets may
be printed in hex/ascii.
Filter expression selects which packets will be dumped. If no expression
is given, all packets on the net will be dumped. Otherwise, only packets for which
expression is `true' will be dumped. ber) preceded by one or more
qualifiers. There are three different kinds of qualifier:
type qualifiers say what kind of thing the id name or number refers
to. Possible types are host, net and port. E.g., `host
foo', `net 128.3', `port 20'. If there is no type qualifier, host is
assumed.
dir qualifiers specify a particular transfer direction to and/or
from id. Possible directions are src, dst, srcordst and srcanddst. E.g., `src foo',
`dst net 128.3', `src or dst port ftp-data'. If there is no dir qualifier,
srcordst is assumed. For `null' link layers (i.e. point
to point pro tocols such as slip) the inbound and outbound
qualifiers can be used to specify a desired direction.
proto qualifiers restrict the match to a particu lar protocol. Possible
protos are: ether, fddi, tr, ip, ip6,
arp, rarp, decnet, tcp and udp. E.g., `ether
src foo', `arp net 128.3', `tcp port 21'. If there is no proto qualifier, all
protocols consistent with the type are assumed. E.g., `src foo' means `(ip or
arp or rarp) src foo' (except the latter is not legal syntax), `net bar' means
`(ip or arp or rarp) net bar' and `port 53' means `(tcp or udp) port 53'.
[`fddi' is actually an alias for `ether'; the parser treats them identically
as meaning ``the data link level used on the specified network interface.'' FDDI
headers contain Ethernet-like source and destination addresses, and often contain
Ethernet-like packet types, so you can filter on these FDDI fields just as with
the analogous Ethernet fields. FDDI headers also contain other fields, but you cannot
name them explicitly in a filter expression.
Similarly, `tr' is an alias for `ether'; the previous paragraph's statements
about FDDI headers also apply to Token Ring headers.]
In addition to the above, there are some special `primitive' keywords that don't
follow the pattern: gateway, broadcast, less, greater
and arithmetic expressions. All of these are described below.
E.g., `host foo and not port ftp and not port ftp-data'. To save typing,
identical qualifier lists can be omitted. E.g., `tcp dst port ftp or ftp-data or
domain' is exactly the same as `tcp dst port ftp or tcp dst port ftp-data or tcp
dst port domain'.
dsthosthost True if the IPv4/v6 destination field
of the packet is host, which may be either an address or a name.
srchosthost True if the IPv4/v6 source field of the
packet is host.
hosthost True if either the IPv4/v6 source or desti nation
of the packet is host. Any of the above host expressions can be prepended
with the keywords, ip, arp, rarp, or ip6 as in:
iphosthost which is equivalent to: etherproto\ipandhosthost If host is a name with
multiple IP addresses, each address will be checked for a match.
etherdstehost True if the ethernet destination address
is ehost. Ehost may be either a name from /etc/ethers or a number
(see ethers(3N) for numeric format).
ethersrcehost True if the ethernet source address
is ehost.
etherhostehost True if either the ethernet source
or desti nation address is ehost.
gatewayhost True if the packet used host as a gateway.
I.e., the ethernet source or destination address was host but neither
the IP source nor the IP destination was host. Host must be a
name and must be found both by the machine's host-name-to-IP-address resolution
mechanisms (host name file, DNS, NIS, etc.) etc.). (An equivalent expression
is etherhostehostandnothosthost which can be used with either names or num bers for host/ehost.) This syntax does not work in IPv6-enabled configuration
at this moment.
dstnetnet True if the IPv4/v6 destination address
of the packet has a network number of net. Net may be either a
name from /etc/networks or a network number (see networks(4) for details).
srcnetnet True if the IPv4/v6 source address of the
packet has a network number of net.
netnet True if either the IPv4/v6 source or desti nation
address of the packet has a network number of net.
netnetmasknetmask True if the IP address
matches net with the specific netmask. May be qualified with
src or dst. Note that this syntax is not valid for IPv6 net.
netnet/len True if the IPv4/v6 address matches
net with a netmask len bits wide. May be qualified with src
or dst.
dstportport True if the packet is ip/tcp, ip/udp,
ip6/tcp or ip6/udp and has a destination port value of port. The port
can be a num ber or a name used in /etc/services (see tcp(4P) and
udp(4P)). If a name is used, both the port number and protocol are checked.
If a number or ambiguous name is used, only the port number is checked (e.g.,
dstport513 will print both tcp/login traf fic and udp/who
traffic, and portdomain will print both tcp/domain and udp/domain
traffic).
srcportport True if the packet has a source port
value of port. True if either the source or destination port of the packet
is port. Any of the above port expressions can be prepended with the
keywords, tcp or udp, as in: tcpsrcportport which matches only tcp packets whose source port is port.
lesslength True if the packet has a length less than or equal
to length. This is equivalent to: len<=length.
greaterlength True if the packet has a length greater than
or equal to length. This is equivalent to: len>=length.
ipprotoprotocol True if the packet is an IP packet
(see ip(4P)) of protocol type protocol. Protocol can be
a number or one of the names icmp, icmp6, igmp, igrp,
pim, ah, esp, vrrp, udp, or tcp. Note
that the identifiers tcp, udp, and icmp are also keywords
and must be escaped via backslash (\), which is \\ in the C-shell. Note that
this primitive does not chase the protocol header chain.
ip6protoprotocol True if the packet is an IPv6 packet
of pro tocol type protocol. Note that this primi tive does not chase
the protocol header chain.
ip6protochainprotocol True if the packet is IPv6
packet, and con tains protocol header with type protocol in its protocol
header chain. For example, ip6protochain6 matches any
IPv6 packet with TCP protocol header in the protocol header chain. The packet
may contain, for example, authentica tion header, routing header, or hop-by-hop
option header, between IPv6 header and TCP header. The BPF code emitted by this
primi tive is complex and cannot be optimized by BPF optimizer code in tcpdump,
so this can be somewhat slow.
ipprotochainprotocol Equivalent to ip6
protochainprotocol, but True if the packet is an ethernet broadcast
packet. The ether keyword is optional.
ipbroadcast True if the packet is an IP broadcast packet.
It checks for both the all-zeroes and all-ones broadcast conventions, and looks
up the local subnet mask.
ethermulticast True if the packet is an ethernet multicast
packet. The ether keyword is optional. This is shorthand for `ether[0]&1!=0'.
ipmulticast True if the packet is an IP multicast packet.
ip6multicast True if the packet is an IPv6 multicast packet.
etherprotoprotocol True if the packet is of ether
type protocol. Protocol can be a number or one of the
names ip, ip6, arp, rarp, atalk, aarp,
decnet, sca, lat, mopdl, moprc,
iso, stp, ipx, or netbeui. Note these identifiers
are also keywords and must be escaped via backslash (\).
[In the case of FDDI (e.g., `fddiprotocolarp') and
Token Ring (e.g., `trprotocolarp'), for most of those
protocols, the pro tocol identification comes from the 802.2 Logical Link Control
(LLC) header, which is usually layered on top of the FDDI or Token Ring header.
When filtering for most protocol identifiers on FDDI or Token Ring, tcpdump
checks only the protocol ID field of an LLC header in so-called SNAP format
with an Organizational Unit Identifier (OUI) of 0x000000, for encapsulated Ethernet;
it doesn't check whether the packet is in SNAP format with an OUI of 0x000000.
The exceptions are iso, for which it checks the DSAP (Destination
Service Access Point) and SSAP (Source Service Access Point) fields of the LLC
header, stp and netbeui, packet with an OUI of 0x080007 and the
Appletalk etype.
In the case of Ethernet, tcpdump checks the Ethernet type field for
most of those proto cols; the exceptions are iso, sap, and
netbeui, for which it checks for an 802.3 frame and then checks
the LLC header as it does for FDDI and Token Ring, atalk, where it checks
both for the Appletalk etype in an Ethernet frame and for a SNAP-format packet
as it does for FDDI and Token Ring, aarp, where it checks for the Appletalk
ARP etype in either an Ethernet frame or an 802.2 SNAP frame with an OUI of
0x000000, and ipx, where it checks for the IPX etype in an Eth ernet
frame, the IPX DSAP in the LLC header, the 802.3 with no LLC header encapsulation
of IPX, and the IPX etype in a SNAP frame.]
decnetsrchost True if the DECNET source address is
host, which may be an address of the form ``10.123'', or a DECNET host
name. [DECNET host name support is only available on Ultrix systems that are
configured to run DECNET.]
decnetdsthost True if the DECNET destination address
is host.
decnethosthost True if either the DECNET source or
destina tion address is host.
ip, ip6, arp, rarp, atalk, aarp,
decnet, iso, stp, ipx, netbeui Abbreviations
for: etherprotop where p is one of the above protocols.
lat, moprc, mopdl Abbreviations for: etherprotop where p is one of the above protocols. Note that
tcpdump does not currently know how to parse these protocols.
vlan[vlan_id] True if the packet is an IEEE
802.1Q VLAN packet. If [vlan_id] is specified, only encountered
in expression changes the decod ing offsets for the remainder of
expression on the assumption that the packet is a VLAN packet.
tcp, udp, icmp Abbreviations for: ipprotoporip6protop where p is one of
the above protocols.
isoprotoprotocol True if the packet is an OSI packet
of pro tocol type protocol. Protocol can be a num ber or one
of the names clnp, esis, or isis.
clnp, esis, isis Abbreviations for: isoprotop where p is one of the above protocols. Note that tcpdump
does an incomplete job of pars ing these protocols.
exprrelopexpr True if the relation holds, where
relop is one of >, <, >=, <=, =, !=, and expr is an arithmetic
expression composed of integer constants (expressed in standard C syntax), the
normal binary operators [+, -, *, /, &, |], a length operator, and special packet
data accessors. To access data inside the packet, use the following syntax:
proto[expr:size]Proto
is one of ether,fddi,tr,ip,arp,rarp,tcp,udp,icmp or ip6, and indicates the protocol
layer for the index operation. Note that tcp,udp and other upper-layer
protocol types only apply to IPv4, not IPv6 (this will be fixed in the future).
The byte offset, relative to the indicated pro tocol layer, is given by
expr. Size is optional and indicates the number of bytes in the field
of interest; it can be either one, two, or four, and defaults to one. The length
operator, indicated by the keyword len, gives the length of the packet.
For example, `ether[0]&1!=0' catches
all multicast traffic. The expression `ip[0]&0xf!=5' catches all IP packets with options. The expression `ip[6:2]&0x1fff=0' catches only unfragmented datagrams
and frag zero of fragmented datagrams. This always means the first byte of the
TCP header, and never means the first byte of an intervening fragment.
Some offsets and field values may be expressed as names rather than as numeric
values. The following protocol header field offsets are available: icmptype
(ICMP type field), icmpcode (ICMP code field), and tcpflags (TCP
flags field).
The following ICMP type field values are available: icmp-echoreply,
icmp-unreach, icmp-sourcequench, icmp-redirect, icmp-echo,
icmp-routeradvert, icmp-routersolicit, icmp-timxceed,
icmp-paramprob, icmp-tstamp, icmp-tstampreply,
icmp-ireq, icmp-ireqreply, icmp-maskreq, icmp-maskreply.
The following TCP flags field values are available: tcp-fin, tcp-syn,
tcp-rst, tcp-push, tcp-push, tcp-ack,
tcp-urg.
Primitives may be combined using:
A parenthesized group of primitives and operators (parentheses are special to
the Shell and must be escaped).
Negation (`!' or `not').
Concatenation (`&&' or `and').
Alternation (`||' or `or').
Negation has highest precedence. Alternation and concatenation have equal precedence
and associate left to right. Note that explicit and tokens, not juxtaposition,
are now required for concatenation.
If an identifier is given without a keyword, the most recent keyword is assumed.
For example,
nothostvsandace
is short for nothostvsandhostace
which should not be confused with not(hostvsorace)
Expression arguments can be passed to tcpdump as either a single argument
or as multiple arguments, whichever is more convenient. Generally, if the expression
contains Shell metacharacters, it is before being parsed.
To print all packets arriving at or departing from sundown:
tcpdumphostsundown
To print traffic between helios and either hot or ace:
tcpdumphostheliosand\(hotorace\)
To print all IP packets between ace and any host except helios:
tcpdumpiphostaceandnothelios
To print all traffic between local hosts and hosts at Berkeley:
tcpdumpnetucb-ether
To print all ftp traffic through internet gateway snup: (note that the expression
is quoted to prevent the shell from (mis-)interpreting the parentheses):
tcpdump'gatewaysnupand(portftporftp-data)'
To print traffic neither sourced from nor destined for local hosts (if you gateway
to one other net, this stuff should never make it onto your local net).
tcpdumpipandnotnetlocalnet
To print the start and end packets (the SYN and FIN pack ets) of each TCP conversation
that involves a non-local host.
The output of tcpdump is protocol dependent. The following gives a brief
description and examples of most of the formats.
LinkLevelHeaders
addresses, protocol, and packet length are printed.
On FDDI networks, the '-e' option causes tcpdump to print the `frame control'
field, the source and destination addresses, and the packet length. (The `frame
control' field governs the interpretation of the rest of the packet. Normal packets
(such as those containing IP data grams) are `async' packets, with a priority value
between 0 and 7; for example, `async4'. Such packets are assumed to contain
an 802.2 Logical Link Control (LLC) packet; the LLC header is printed if it is
not an ISO datagram or a so-called SNAP packet.
ARP/RARPPackets
Arp/rarp output shows the type of request and its argu ments. The format is
intended to be self explanatory. arpwho-hascsamtellrtsgarpreplycsamis-atCSAM The first
line says that rtsg sent an arp packet asking for the ethernet address of internet
host csam. Csam replies with its ethernet address (in this example, ether net addresses
are in caps and internet addresses in lower case).
This would look less redundant if we had done tcpdump-n: arpwho-has128.3.254.6tell128.3.254.68arp
reply128.3.254.6is-at02:07:01:00:01:c4
If we had done tcpdump-e, the fact that the first packet is broadcast
and the second is point-to-point would be visible: RTSGBroadcast080664:arpwho-hascsamtellrtsgCSAMRTSG080664:arpreplycsamis-atCSAM For the first packet this says the ethernet source address
is RTSG, the destination is the ethernet broadcast address, the type field contained
hex 0806 (type ETHER_ARP) and the total length was 64 bytes.
The general format of a tcp protocol line is: src>dst:flagsdata-seqnoackwindowurgentoptionsSrc and dst are the source and destination IP addresses and ports.
Flags are some combination of S (SYN), F (FIN), P (PUSH) or R (RST) or a
single `.' (no flags). Data-seqno describes the portion of sequence space
covered by the data in this packet (see example below). Ack is sequence number
of the next data expected the other direc tion on this connection. Window
is the number of bytes of receive buffer space available the other direction on
this connection. Urg indicates there is `urgent' data in the packet. Options
are tcp options enclosed in angle brack ets (e.g., <mss 1024>).
Src,dst and flags are always present. The other fields
depend on the contents of the packet's tcp protocol header and are output only if
appropriate.
Here is the opening portion of an rlogin from host rtsg to host csam.
rtsg.1023>csam.login:S768512:768512(0)
win4096<mss1024>csam.login>rtsg.1023:S947648:947648(0)ack768513win4096<mss1024>rtsg.1023>csam.login:.ack1win4096rtsg.1023>csam.login:P2:21(19)ack1win4096csam.login>rtsg.1023:P1:2(1)ack21win4077csam.login>rtsg.1023:P2:3(1)ack21win4077urg1csam.login>rtsg.1023:P3:4(1)ack21win4077urg1 The first line says that tcp port 1023 on rtsg sent
a packet to port login on csam. The S indicates that the SYN
flag was set. The packet sequence number was 768512 and it contained no data. (The
notation is `first:last(nbytes)' which means `sequence numbers first up to
but not including last which is nbytes bytes of user data'.) There
was no piggy-backed ack, the available receive window was 4096 bytes and there was
a max-segment- size option requesting an mss of 1024 bytes.
Csam replies with a similar packet except it includes a piggy-backed ack for
rtsg's SYN. Rtsg then acks csam's SYN. The `.' means no flags were set. The packet
con tained no data so there is no data sequence number. Note that the ack sequence
number is a small integer (1). The first time tcpdump sees a tcp `conversation',
it prints the sequence number from the packet. On subsequent pack ets of the conversation,
the difference between the cur rent packet's sequence number and this initial sequence
number is printed. This means that sequence numbers after the first can be interpreted
as relative byte positions in the conversation's data stream (with the first data
byte each direction being `1'). `-S' will override this fea ture, causing the original
sequence numbers to be output.
On the 6th line, rtsg sends csam 19 bytes of data (bytes 2 through 20 in the
rtsg -> csam side of the conversation). The PUSH flag is set in the packet. On the
7th line, csam says it's received data sent by rtsg up to but not includ ing byte
21. Most of this data is apparently sitting in the socket buffer since csam's receive
window has gotten 19 bytes smaller. Csam also sends one byte of data to rtsg in
this packet. On the 8th and 9th lines, csam sends two bytes of urgent, pushed data
to rtsg.
If the snapshot was small enough that tcpdump didn't cap ture the full
TCP header, it interprets as much of the header as it can and then reports ``[|tcp]''
to indicate the remainder could not be interpreted. If the header contains a bogus
option (one with a length that's either too small or beyond the end of the header),
tcpdump reports it as ``[badopt]'' and does not interpret
any further options (since it's impossible to tell where they start). If the header
length indicates options are pre sent but the IP datagram length is not long enough
for the options to actually be there, tcpdump reports it as ``[badhdrlength]''.
There are 8 bits in the control bits section of the TCP header:
CWR|ECE|URG|ACK|PSH|RST|SYN|FIN
Let's assume that we want to watch packets used in estab lishing a TCP connection.
Recall that TCP uses a 3-way handshake protocol when it initializes a new connection;
the connection sequence with regard to the TCP control bits is
1) Caller sends SYN 2) Recipient responds with SYN, ACK 3) Caller sends ACK
Now we're interested in capturing packets that have only the SYN bit set (Step
1). Note that we don't want packets from step 2 (SYN-ACK), just a plain initial
SYN. What we need is a correct filter expression for tcpdump.
Recall the structure of a TCP header without options:
015 31
-----------------------------------------------------------------
| source port | destination port |
-----------------------------------------------------------------
| sequence number |
-----------------------------------------------------------------
| acknowledgment number |
-----------------------------------------------------------------
| HL | rsvd |C|E|U|A|P|R|S|F| window size |
-----------------------------------------------------------------
| TCP checksum | urgent pointer |
-----------------------------------------------------------------
A TCP header usually holds 20 octets of data, unless options are present. The first
line of the graph contains octets 0 - 3, the second line shows octets 4 - 7 etc.
Starting to count with 0, the relevant TCP control bits are contained in octet 13:
These are the TCP control bits we are interested in. We have numbered the bits in
this octet from 0 to 7, right to left, so the PSH bit is bit number 3, while the
URG bit is number 5.
Recall that we want to capture packets with only SYN set. Let's see what happens
to octet 13 if a TCP datagram arrives with the SYN bit set in its header:
Looking at the control bits section we see that only bit number 1 (SYN) is set.
Assuming that octet number 13 is an 8-bit unsigned integer in network byte order,
the binary value of this octet is
We're almost done, because now we know that if only SYN is set, the value of the
13th octet in the TCP header, when interpreted as a 8-bit unsigned integer in network
byte order, must be exactly 2.
This relationship can be expressed as
tcp[13]==2
We can use this expression as the filter for tcpdump in
order to watch packets which have only SYN set:
tcpdump-ixl0tcp[13]==2
The expression says "let the 13th octet of a TCP datagram
have the decimal value 2", which is exactly what we want.
Now, let's assume that we need to capture SYN packets, but
we don't care if ACK or any other TCP control bit is set
at the same time. Let's see what happens to octet 13 when
a TCP datagram with SYN-ACK set arrives:
Now we can't just use 'tcp[13] == 18' in the tcpdump fil ter expression,
because that would select only those pack ets that have SYN-ACK set, but not those
with only SYN set. Remember that we don't care if ACK or any other con trol bit
is set as long as SYN is set. In order to achieve our goal, we need to logically
AND the binary value of octet 13 with some other value to preserve the SYN bit.
We know that we want SYN to be set in any case, so we'll logically AND the value
in the 13th octet with the binary value of a SYN:
00010010 SYN-ACK00000010 SYN
AND 00000010 (we want SYN) AND 00000010 (we want SYN)
-------- --------
= 00000010 = 00000010
We see that this AND operation delivers the same result
regardless whether ACK or another TCP control bit is set.
The decimal representation of the AND value as well as the
result of this operation is 2 (binary 00000010), so we
know that for packets with SYN set the following relation
must hold true:
( ( value of octet 13 ) AND ( 2 ) ) == ( 2 )
This points us to the tcpdump filter expression
tcpdump-ixl0'tcp[13]&2==2'
Note that you should use single quotes or a backslash in the expression to hide
the AND ('&') special character from the shell.
UDPPackets
UDP format is illustrated by this rwho packet:
actinide.who>broadcast.who:udp84
This says that port who on host actinide sent a udp data
Some UDP services are recognized (from the source or destination port number)
and the higher level protocol infor mation printed. In particular, Domain Name
service requests (RFC-1034/1035) and Sun RPC calls (RFC-1050) to NFS.
Name server requests are formatted as src>dst:idop?flagsqtypeqclassname(len)h2opolo.1538>helios.domain:3+A?ucbvax.berkeley.edu.(37) Host h2opolo asked the domain server on helios for an
address record (qtype=A) associated with the name ucbvax.berkeley.edu.
The query id was `3'. The `+' indi cates the recursiondesired flag
was set. The query length was 37 bytes, not including the UDP and IP protocol headers.
The query operation was the normal one, Query, so the op field was omitted.
If the op had been anything else, it would have been printed between the `3' and
the `+'. Similarly, the qclass was the normal one, C_IN, and
omitted. Any other qclass would have been printed immedi ately after the `A'.
A few anomalies are checked and may result in extra fields enclosed in square
brackets: If a query contains an answer, authority records or additional records
section, ancount, nscount, or arcount are printed as `[na]',
`[nn]' or `[nau]' where n is the appropriate count. If any
of the response bits are set (AA, RA or rcode) or any of the `must be zero' bits
are set in bytes two and three, `[b2&3=x]' is printed, where x is
the hex value of header bytes two and three.
UDPNameServerResponses
Name server responses are formatted as src>dst:idoprcodeflagsa/n/autypeclassdata(len)helios.domain>h2opolo.1538:33/3/7A128.32.137.3(273)helios.domain>h2opolo.1537:2NXDomain*0/1/0(97)
In the first example, helios responds to query id 3 from h2opolo
with 3 answer records, 3 name server records and 7 additional records. The first
answer record is type A (address) and its data is internet address 128.32.137.3.
The total size of the response was 273 bytes, excluding UDP and IP headers. The
op (Query) and response code (NoError) were omitted, as was the class (C_IN) of
the A response code of non-existent domain (NXDomain) with no answers, one name
server and no authority records. The `*' indicates that the authoritativeanswer bit was set. Since there were no answers, no type, class or data were
printed.
Other flag characters that might appear are `-' (recursion available, RA,
not set) and `|' (truncated message, TC, set). If the `question' section doesn't
contain exactly one entry, `[nq]' is printed.
Note that name server requests and responses tend to be large and the default
snaplen of 68 bytes may not capture enough of the packet to print. Use the
-s flag to increase the snaplen if you need to seriously investigate name
server traffic. `-s128' has worked well for me.
SMB/CIFSdecoding
tcpdump now includes fairly extensive SMB/CIFS/NBT decod ing for data
on UDP/137, UDP/138 and TCP/139. Some primi tive decoding of IPX and NetBEUI SMB
data is also done.
By default a fairly minimal decode is done, with a much more detailed decode
done if -v is used. Be warned that with -v a single SMB packet may take up a page
or more, so only use -v if you really want all the gory details.
If you are decoding SMB sessions containing unicode strings then you may wish
to set the environment variable USE_UNICODE to 1. A patch to auto-detect unicode
srings would be welcome.
For information on SMB packet formats and what all te fields mean see www.cifs.org
or the pub/samba/specs/ directory on your favourite samba.org mirror site. The SMB
patches were written by Andrew Tridgell ([email protected]).
NFSRequestsandReplies
Sun NFS (Network File System) requests and replies are printed as: src.xid>dst.nfs:lenopargssrc.nfs>dst.xid:replystatlenopresults
In the first line, host sushi sends a transaction with id 6709
to wrl (note that the number following the src host is a transaction id,
not the source port). The request was 112 bytes, excluding the UDP and IP
headers. The operation was a readlink (read symbolic link) on file han dle
(fh) 21,24/10.731657119. (If one is lucky, as in this case, the file handle
can be interpreted as a major,minor device number pair, followed by the inode number
and gen eration number.) Wrl replies `ok' with the contents of the link.
In the third line, sushi asks wrl to lookup the name `xcolors'
in directory file 9,74/4096.6878. Note that the data printed depends on the operation
type. The format is intended to be self explanatory if read in conjunction with
an NFS protocol spec.
If the -v (verbose) flag is given, additional information is printed. For example:
(-v also prints the IP header TTL, ID, length, and frag mentation fields, which
have been omitted from this exam ple.) In the first line, sushi asks
wrl to read 8192 bytes from file 21,11/12.195, at byte offset 24576. Wrl
replies `ok'; the packet shown on the second line is the first fragment of the reply,
and hence is only 1472 bytes long (the other bytes will follow in subsequent fragments,
but these fragments do not have NFS or even UDP headers and so might not be printed,
depending on the filter expression used). Because the -v flag is given, some of
the file attributes (which are returned in addition to the file data) are printed:
the file type (``REG'', for regu lar file), the file mode (in octal), the uid and
gid, and the file size.
If the -v flag is given more than once, even more details are printed.
Note that NFS requests are very large and much of the detail won't be printed
unless snaplen is increased. Try using `-s192' to watch NFS
traffic.
NFS reply packets do not explicitly identify the RPC oper ation. Instead,
tcpdump keeps track of ``recent'' requests, and matches them to the replies
using the trans action ID. If a reply does not closely follow the corre
Transarc AFS (Andrew File System) requests and replies are printed as:
In the first line, host elvis sends a RX packet to pike. This was a RX data packet
to the fs (fileserver) service, and is the start of an RPC call. The RPC call was
a rename, with the old directory file id of 536876964/1/1 and an old filename of
`.newsrc.new', and a new directory file id of 536876964/1/1 and a new filename of
`.newsrc'. The host pike responds with a RPC reply to the rename call (which was
successful, because it was a data packet and not an abort packet).
In general, all AFS RPCs are decoded at least by RPC call name. Most AFS RPCs
have at least some of the arguments decoded (generally only the `interesting' arguments,
for some definition of interesting).
The format is intended to be self-describing, but it will probably not be useful
to people who are not familiar with the workings of AFS and RX.
If the -v (verbose) flag is given twice, acknowledgement packets and additional
header information is printed, such as the the RX call ID, call number, sequence
number, serial number, and the RX packet flags.
If the -v flag is given twice, additional information is printed, such as the
the RX call ID, serial number, and the RX packet flags. The MTU negotiation information
is also printed from RX ack packets.
If the -v flag is given three times, the security index and service id are printed.
Error codes are printed for abort packets, with the excep tion of Ubik beacon
packets (because abort packets are used to signify a yes vote for the Ubik protocol).
Note that AFS requests are very large and many of the arguments won't be printed
unless snaplen is increased. Try using `-s256' to watch AFS
traffic. ation. Instead, tcpdump keeps track of ``recent'' requests, and
matches them to the replies using the call number and service ID. If a reply does
not closely follow the corresponding request, it might not be parsable.
KIPAppletalk(DDPinUDP)
Appletalk DDP packets encapsulated in UDP datagrams are de-encapsulated and dumped
as DDP packets (i.e., all the UDP header information is discarded). The file
/etc/atalk.names is used to translate appletalk net and node numbers to names.
Lines in this file have the form numbername
1.254ether16.1icsd-net1.254.110ace
The first two lines give the names of appletalk networks. The third line gives
the name of a particular host (a host is distinguished from a net by the 3rd octet
in the number - a net number must have two octets and a host number must
have three octets.) The number and name should be sepa rated by whitespace (blanks
or tabs). The /etc/atalk.names file may contain blank lines or comment lines
(lines starting with a `#').
Appletalk addresses are printed in the form net.host.port144.1.209.2>icsd-net.112.220office.2>icsd-net.112.220jssmag.149.235>icsd-net.2 (If the /etc/atalk.names
doesn't exist or doesn't contain an entry for some appletalk host/net number, addresses
are printed in numeric form.) In the first example, NBP (DDP port 2) on net 144.1
node 209 is sending to whatever is listening on port 220 of net icsd node 112. The
second line is the same except the full name of the source node is known (`office').
The third line is a send from port 235 on net jssmag node 149 to broadcast on the
icsd-net NBP port (note that the broadcast address (255) is indi cated by a net
name with no host number - for this reason it's a good idea to keep node names and
net names distinct in /etc/atalk.names).
NBP (name binding protocol) and ATP (Appletalk transaction protocol) packets
have their contents interpreted. Other protocols just dump the protocol name (or
number if no name is registered for the protocol) and packet size.
NBPpackets are formatted like the following examples: techpit.2>icsd-net.112.220:nbp-reply190:"techpit:LaserWriter@*"186 The first line is a name lookup request for laserwriters sent by net
icsd host 112 and broadcast on net jssmag. The nbp id for the lookup is 190. The
second line shows a reply for this request (note that it has the same id) from host
jssmag.209 saying that it has a laserwriter resource named "RM1140" registered on
port 250. The third line is another reply to the same request saying host techpit
has laserwriter "techpit" registered on port 186.
ATPpacket formatting is demonstrated by the following example:
jssmag.209.165>helios.132:atp-req12266<0-7>0xae030001helios.132>jssmag.209.165:atp-resp12266:0(512)0xae040000helios.132>jssmag.209.165:atp-resp12266:1(512)0xae040000helios.132>jssmag.209.165:atp-resp12266:2(512)0xae040000helios.132>jssmag.209.165:atp-resp12266:3(512)0xae040000helios.132>jssmag.209.165:atp-resp12266:4(512)0xae040000helios.132>jssmag.209.165:atp-resp12266:5(512)0xae040000helios.132>jssmag.209.165:atp-resp12266:6(512)0xae040000helios.132>jssmag.209.165:atp-resp*12266:7(512)0xae040000jssmag.209.165
>helios.132:atp-req12266<3,5>0xae030001helios.132>jssmag.209.165:atp-resp12266:3(512)0xae040000helios.132>jssmag.209.165:atp-resp12266:5(512)0xae040000jssmag.209.165>helios.132:atp-rel12266<0-7>0xae030001jssmag.209.133>helios.132:atp-req*12267<0-7>0xae030002
Jssmag.209 initiates transaction id 12266 with host helios by requesting up to
8 packets (the `<0-7>'). The hex num ber at the end of the line is the value of
the `userdata' field in the request.
Helios responds with 8 512-byte packets. The `:digit' following the transaction
id gives the packet sequence number in the transaction and the number in parens
is the amount of data in the packet, excluding the atp header. The `*' on packet
7 indicates that the EOM bit was set. Jssmag.209 then requests that packets 3 &
5 be retransmit ted. Helios resends them then jssmag.209 releases the transaction.
Finally, jssmag.209 initiates the next request. The `*' on the request indicates
that XO (`exactly once') was not set.
IPFragmentation
Fragmented Internet datagrams are printed as (fragid:size@offset+)(fragid:size@offset) (The first
form indicates there are more fragments. The second indicates this is the last fragment.)
offset (in bytes) in the original datagram.
The fragment information is output for each fragment. The first fragment contains
the higher level protocol header and the frag info is printed after the protocol
info. Fragments after the first contain no higher level protocol header and the
frag info is printed after the source and destination addresses. For example, here
is part of an ftp from arizona.edu to lbl-rtsg.arpa over a CSNET connec tion that
doesn't appear to handle 576 byte datagrams: arizona.ftp-data>
rtsg.1170:.1024:1332(308)ack1win
4096(frag595a:328@0+)arizona>rtsg:(frag595a:204@328)rtsg.1170>arizona.ftp-data:.ack1536win2560
There are a couple of things to note here: First, addresses in the 2nd line don't
include port numbers. This is because the TCP protocol information is all in the
first fragment and we have no idea what the port or sequence numbers are when we
print the later fragments. Second, the tcp sequence information in the first line
is printed as if there were 308 bytes of user data when, in fact, there are 512
bytes (308 in the first frag and 204 in the second). If you are looking for holes
in the sequence space or trying to match up acks with packets, this can fool you.
A packet with the IP don'tfragment flag is marked with a trailing
(DF).
Timestamps
By default, all output lines are preceded by a timestamp. The timestamp is the
current clock time in the form hh:mm:ss.frac and is as accurate as the kernel's
clock. The timestamp reflects the time the kernel first saw the packet. No attempt
is made to account for the time lag between when the ethernet interface removed
the packet from the wire and when the kernel serviced the `new packet' interrupt.
SEE ALSO
traffic(1C), nit(4P), bpf(4), pcap(3)
AUTHORS
The original authors are:
Van Jacobson, Craig Leres and Steven McCanne, all of the
Lawrence Berkeley National Laboratory, University of Cali
fornia, Berkeley, CA.
It is currently being maintained by tcpdump.org.
The current version is available via http:
The original distribution is available via anonymous ftp:
ftp://ftp.ee.lbl.gov/tcpdump.tar.Z
IPv6/IPsec support is added by WIDE/KAME project. This
program uses Eric Young's SSLeay library, under specific
configuration.
BUGS
Please send problems, bugs, questions, desirable enhance
ments, etc. to:
[email protected]
Please send source code contributions, etc. to:
[email protected]
NIT doesn't let you watch your own outbound traffic, BPF
will. We recommend that you use the latter.
Name server inverse queries are not dumped correctly: the (empty) question section
is printed rather than real query in the answer section. Some believe that inverse
queries are themselves a bug and prefer to fix the program gener ating them rather
than tcpdump.
A packet trace that crosses a daylight savings time change will give skewed time
stamps (the time change is ignored). headers assume that all FDDI and Token Ring
packets are SNAP-encapsulated Ethernet packets. This is true for IP, ARP, and DECNET
Phase IV, but is not true for protocols such as ISO CLNS. Therefore, the filter
may inadvertently accept certain packets that do not properly match the fil ter
expression.
Filter expressions on fields other than those that manipu late Token Ring headers
will not correctly handle source- routed Token Ring packets.
ip6proto should chase header chain, but at this moment it does
not. ip6protochain is supplied for this behavior.
Arithmetic expression against transport layer headers, like tcp[0], does
not work against IPv6 packets. It only looks at IPv4 packets.
The Last but not LeastTechnology is dominated by
two types of people: those who understand what they do not manage and those who manage what they do not understand ~Archibald Putt.
Ph.D
FAIR USE NOTICEThis site contains
copyrighted material the use of which has not always been specifically
authorized by the copyright owner. We are making such material available
to advance understanding of computer science, IT technology, economic, scientific, and social
issues. We believe this constitutes a 'fair use' of any such
copyrighted material as provided by section 107 of the US Copyright Law according to which
such material can be distributed without profit exclusively for research and educational purposes.
This is a Spartan WHYFF (We Help You For Free)
site written by people for whom English is not a native language. Grammar and spelling errors should
be expected. The site contain some broken links as it develops like a living tree...
You can use PayPal to to buy a cup of coffee for authors
of this site
Disclaimer:
The statements, views and opinions presented on this web page are those of the author (or
referenced source) and are
not endorsed by, nor do they necessarily reflect, the opinions of the Softpanorama society.We do not warrant the correctness
of the information provided or its fitness for any purpose. The site uses AdSense so you need to be aware of Google privacy policy. You you do not want to be
tracked by Google please disable Javascript for this site. This site is perfectly usable without
Javascript.