1 .\" @(#) $Header: /tcpdump/master/libpcap/pcap-linktype.manmisc.in,v 1.1.2.4 2008-10-27 22:52:05 guy Exp $
3 .\" Copyright (c) 1987, 1988, 1989, 1990, 1991, 1992, 1994, 1995, 1996, 1997
4 .\" The Regents of the University of California. All rights reserved.
5 .\" All rights reserved.
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that: (1) source code distributions
9 .\" retain the above copyright notice and this paragraph in its entirety, (2)
10 .\" distributions including binary code include the above copyright notice and
11 .\" this paragraph in its entirety in the documentation or other materials
12 .\" provided with the distribution, and (3) all advertising materials mentioning
13 .\" features or use of this software display the following acknowledgement:
14 .\" ``This product includes software developed by the University of California,
15 .\" Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
16 .\" the University nor the names of its contributors may be used to endorse
17 .\" or promote products derived from this software without specific prior
18 .\" written permission.
19 .\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
20 .\" WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
21 .\" MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
23 .TH PCAP-LINKTYPE @MAN_MISC_INFO@ "23 October 2008"
25 pcap-linktype \- link-layer header types supported by libpcap
27 For a live capture or ``savefile'', libpcap supplies, as the return
29 .BR pcap_datalink (3PCAP)
30 routine, a value that indicates the type of link-layer header at the
31 beginning of the packets it provides. This is not necessarily the type
32 of link-layer header that the packets being captured have on the network
33 from which they're being captured; for example, packets from an IEEE
34 802.11 network might be provided by libpcap with Ethernet headers that
35 the network adapter or the network adapter driver generates from the
36 802.11 headers. The names for those values begin with
38 so they are sometimes called "DLT_ values".
40 The values stored in the link-layer header type field in the savefile
41 header are, in most but not all cases, the same as the values returned
44 The names for those values begin with
47 The link-layer header types supported by libpcap are listed here. The
48 value corresponding to
50 names are given; the value corresponding to
52 values are, in some cases, platform dependent, and are not given;
53 applications should check for particular
58 .BR DLT_NULL "; " LINKTYPE_NULL = 0
59 BSD loopback encapsulation; the link layer header is a 4-byte field, in
61 byte order, containing a PF_ value from
63 for the network-layer protocol of the packet.
65 Note that ``host byte order'' is the byte order of the machine on which
66 the packets are captured, and the PF_ values are for the OS of the
67 machine on which the packets are captured; if a live capture is being
68 done, ``host byte order'' is the byte order of the machine capturing the
69 packets, and the PF_ values are those of the OS of the machine capturing
70 the packets, but if a ``savefile'' is being read, the byte order and PF_
73 necessarily those of the machine reading the capture file.
75 .BR DLT_EN10MB "; " LINKTYPE_ETHERNET = 1
76 Ethernet (10Mb, 100Mb, 1000Mb, and up); the
82 .BR DLT_IEEE802 "; " LINKTYPE_TOKEN_RING = 6
83 IEEE 802.5 Token Ring; the
89 .BR DLT_ARCNET "; " LINKTYPE_ARCNET = 7
92 .BR DLT_SLIP "; " LINKTYPE_SLIP = 8
93 SLIP; the link layer header contains, in order:
96 a 1-byte flag, which is 0 for packets received by the machine and 1 for
97 packets sent by the machine;
99 a 1-byte field, the upper 4 bits of which indicate the type of packet,
104 an unmodified IP datagram (TYPE_IP);
107 an uncompressed-TCP IP datagram (UNCOMPRESSED_TCP), with that byte being
108 the first byte of the raw IP header on the wire, containing the
109 connection number in the protocol field;
112 a compressed-TCP IP datagram (COMPRESSED_TCP), with that byte being the
113 first byte of the compressed TCP/IP datagram header;
116 for UNCOMPRESSED_TCP, the rest of the modified IP header, and for
117 COMPRESSED_TCP, the compressed TCP/IP datagram header;
121 for a total of 16 bytes; the uncompressed IP datagram follows the header.
124 .BR DLT_PPP "; " LINKTYPE_PPP = 9
125 PPP; if the first 2 bytes are 0xff and 0x03, it's PPP in HDLC-like
126 framing, with the PPP header following those two bytes, otherwise it's
127 PPP without framing, and the packet begins with the PPP header.
129 .BR DLT_FDDI "; " LINKTYPE_FDDI = 10
132 .BR DLT_ATM_RFC1483 "; " LINKTYPE_ATM_RFC1483 = 100
133 RFC 1483 LLC/SNAP-encapsulated ATM; the packet begins with an IEEE 802.2
136 .BR DLT_RAW "; " LINKTYPE_RAW = 101
137 raw IP; the packet begins with an IP header.
139 .BR DLT_PPP_SERIAL "; " LINKTYPE_PPP_HDLC = 50
140 PPP in HDLC-like framing, as per RFC 1662, or Cisco PPP with HDLC
141 framing, as per section 4.3.1 of RFC 1547; the first byte will be 0xFF
142 for PPP in HDLC-like framing, and will be 0x0F or 0x8F for Cisco PPP
145 .BR DLT_PPP_ETHER "; " LINKTYPE_PPP_ETHER = 51
146 PPPoE; the packet begins with a PPPoE header, as per RFC 2516.
148 .BR DLT_C_HDLC "; " LINKTYPE_C_HDLC = 104
149 Cisco PPP with HDLC framing, as per section 4.3.1 of RFC 1547.
151 .BR DLT_IEEE802_11 "; " LINKTYPE_IEEE802_11 = 105
152 IEEE 802.11 wireless LAN
154 .BR DLT_FRELAY "; " LINKTYPE_FRELAY = 107
157 .BR DLT_LOOP "; " LINKTYPE_LOOP = 108
158 OpenBSD loopback encapsulation; the link layer header is a 4-byte field, in
160 byte order, containing a PF_ value from OpenBSD's
162 for the network-layer protocol of the packet.
164 Note that, if a ``savefile'' is being read, those PF_ values are
166 necessarily those of the machine reading the capture file.
168 .BR DLT_LINUX_SLL "; " LINKTYPE_LINUX_SLL = 113
169 Linux "cooked" capture encapsulation; the link layer header contains, in
173 a 2-byte "packet type", in network byte order, which is one of:
177 packet was sent to us by somebody else
180 packet was broadcast by somebody else
183 packet was multicast, but not broadcast, by somebody else
186 packet was sent by somebody else to somebody else
189 packet was sent by us
192 a 2-byte field, in network byte order, containing a Linux ARPHRD_ value
193 for the link layer device type;
195 a 2-byte field, in network byte order, containing the length of the
196 link layer address of the sender of the packet (which could be 0);
198 an 8-byte field containing that number of bytes of the link layer header
199 (if there are more than 8 bytes, only the first 8 are present);
201 a 2-byte field containing an Ethernet protocol type, in network byte
202 order, or containing 1 for Novell 802.3 frames without an 802.2 LLC
203 header or 4 for frames beginning with an 802.2 LLC header.
206 .BR DLT_LTALK "; " LINKTYPE_LTALK = 104
207 Apple LocalTalk; the packet begins with an AppleTalk LLAP header.
209 .BR DLT_PFLOG "; " LINKTYPE_PFLOG = 117
210 OpenBSD pflog; the link layer header contains a
212 structure, as defined by the host on which the file was saved. (This
213 differs from operating system to operating system and release to
214 release; there is nothing in the file to indicate what the layout of
217 .BR DLT_PRISM_HEADER "; " LINKTYPE_PRISM_HEADER = 119
218 Prism monitor mode information followed by an 802.11 header.
220 .BR DLT_IP_OVER_FC "; " LINKTYPE_IP_OVER_FC = 122
221 RFC 2625 IP-over-Fibre Channel, with the link-layer header being the
222 Network_Header as described in that RFC.
224 .BR DLT_SUNATM "; " LINKTYPE_SUNATM = 123
225 SunATM devices; the link layer header contains, in order:
228 a 1-byte flag field, containing a direction flag in the uppermost bit,
229 which is set for packets transmitted by the machine and clear for
230 packets received by the machine, and a 4-byte traffic type in the
231 low-order 4 bits, which is one of:
241 LLC-encapsulated traffic
258 a 2-byte VCI field, in network byte order.
261 .BR DLT_IEEE802_11_RADIO "; " LINKTYPE_IEEE802_11_RADIO = 127
262 link-layer information followed by an 802.11 header - see
263 http://www.shaftnet.org/~pizza/software/capturefrm.txt for a description
264 of the link-layer information.
266 .BR DLT_ARCNET_LINUX "; " LINKTYPE_ARCNET_LINUX = 129
267 ARCNET, with no exception frames, reassembled packets rather than raw
268 frames, and an extra 16-bit offset field between the destination host
271 .BR DLT_LINUX_IRDA "; " LINKTYPE_LINUX_IRDA = 144
272 Linux-IrDA packets, with a
274 header followed by the IrLAP header.
276 .BR DLT_LINUX_LAPD "; " LINKTYPE_LINUX_LAPD = 177
277 LAPD (Q.921) frames, with a
279 header captured via vISDN.