<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.5.12 -->
<?rfc symrefs="yes"?>
<?rfc toc="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<?rfc inline="yes"?>
<?rfc sortrefs="no"?>
<?rfc strict="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-opsawg-pcap-00" category="info" obsoletes="" updates="" submissionType="IETF" xml:lang="en" symRefs="true" tocInclude="true" sortRefs="false" version="3">
  <!-- xml2rfc v2v3 conversion 3.10.0 -->
  <front>
    <title abbrev="pcap">PCAP Capture File Format</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-opsawg-pcap-00"/>
    <author initials="G." surname="Harris" fullname="Guy Harris" role="editor">
      <organization/>
      <address>
        <email>gharris@sonic.net</email>
      </address>
    </author>
    <author initials="M." surname="Richardson" fullname="Michael C. Richardson">
      <organization abbrev="Sandelman">Sandelman Software Works Inc</organization>
      <address>
        <email>mcr+ietf@sandelman.ca</email>
        <uri>http://www.sandelman.ca/</uri>
      </address>
    </author>
    <date year="2021" month="October" day="25"/>
    <abstract>
      <t>This document describes the format used by the libpcap library to
record captured packets to a file.  Programs using the libpcap
library to read and write those files, and thus reading and writing
files in that format, include tcpdump.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
  OPSAWG Working Group mailing list (opsawg@ietf.org),
  which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/opsawg/"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
  <eref target="https://github.com/pcapng/pcapng"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>In the late 1980's, Van Jacobson, Steve McCanne, and others at the
Network Research Group at Lawrence Berkeley National Laboratory
developed the tcpdump program to capture and dissect network traces.
The code to capture traffic, using low-level mechanisms in various
operating systems, and to read and write network traces to a file was
later put into a library named libpcap.</t>
      <t>This document describes the format used by tcpdump, and other
programs using libpcap, to read and write network traces.</t>
    </section>
    <section anchor="terminology" numbered="true" toc="default">
      <name>Terminology</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119" format="default"/> <xref target="RFC8174" format="default"/> when, and only when, they
appear in all capitals, as shown here.</t>
    </section>
    <section anchor="general-file-structure" numbered="true" toc="default">
      <name>General File Structure</name>
      <t>A capture file begins with a File Header, followed by zero or more Packet Records, one per packet.</t>
      <t>All fields in the File Header and in Packet Records will always be saved according to the characteristics (little endian / big endian) of the capturing machine.
This refers to all the fields that are saved as numbers and that span over two or more octets.</t>
      <t>The approach of having the file saved in the native format of the generating host is more efficient because it avoids translation of data when reading / writing on the host itself, which is the most common case when generating/processing capture captures.</t>
      <t>The packets are shown in traditional IETF diagram, with the bits numbered from the left to the right.
The bit numbering does not reflect the binary value position, as IETF protocols are traditionally in big-endian network-byte order.
The most significant bit is therefore on the left in this diagram as if the file is being
stored on a big-endian system.</t>
    </section>
    <section anchor="file-header" numbered="true" toc="default">
      <name>File Header</name>
      <t>The File Header has the following format:</t>
      <figure anchor="fig-header">
        <name>File Header</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
                           1                   2                   3
       0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
    0 |                          Magic Number                         |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
    4 |          Major Version        |         Minor Version         |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
    8 |                           Reserved1                           |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   12 |                           Reserved2                           |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   16 |                            SnapLen                            |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   20 | FCS |f|0 0 0 0 0 0 0 0 0 0 0 0|         LinkType              |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
      </figure>
      <t>The File Header length is 24 octets.</t>
      <t>The meaning of the fields in the File Header is:</t>
      <dl>
        <dt>
Magic Number (32 bits):  </dt>
        <dd>
          <t>an unsigned magic number, whose value is either the hexadecimal number 0xA1B2C3D4 or the hexadecimal number 0xA1B23C4D.</t>
        </dd>
        <dt/>
        <dd>
          <t>If the value is 0xA1B2C3D4, time stamps in Packet Records (see Figure 2) are in seconds and microseconds; if it is 0xA1B23C4D, time stamps in Packet Records are in seconds and    nanoseconds.</t>
        </dd>
        <dt/>
        <dd>
          <t>These numbers can be used to distinguish sessions that have been saved on little-endian machines from the ones saved on big-endian machines, and to heuristically identify pcap files.</t>
        </dd>
        <dt>
Major Version (16 bits):  </dt>
        <dd>
          <t>an unsigned value, giving the number of the current major version of the format.
The value for the current version of the format is 2.
This value should change if the format changes in such a way that code that reads the new     format could not read the old format (i.e., code to read both formats would have to check the version number and use different code paths for the two formats) and code that reads the old format could not read the new format.</t>
        </dd>
        <dt>
Minor Version (16 bits):  </dt>
        <dd>
          <t>an unsigned value, giving the number of the current minor version of the format.
The value is for the current version of the format is 4.
This value should change if the format changes in such a way that code that reads the new     format could read the old format without checking the version number but code that reads the old format could not read all files in the new format.</t>
        </dd>
        <dt>
Reserved1 (32 bits):  </dt>
        <dd>
          <t>not used - SHOULD be filled with 0 by pcap file writers, and MUST be ignored by pcap file readers.
This value was documented by some older implementations as "gmt to local correction".
Some older pcap file writers stored non-zero values in this field.</t>
        </dd>
        <dt>
Reserved2 (32 bits):  </dt>
        <dd>
          <t>not used - SHOULD be filled with 0 by pcap file writers, and MUST be ignored by pcap file readers.
This value was documented by some older implementations as "accuracy of timestamps".
Some older pcap file writers stored non-zero values in this field.</t>
        </dd>
        <dt>
SnapLen (32 bits):  </dt>
        <dd>
          <t>an unsigned value indicating the maximum number of octets captured from each packet.
The portion of each packet that exceeds this value will not be stored in the file.
This value MUST NOT be zero; if no limit was specified, the value should be a number greater than or equal to the largest packet length in the file.</t>
        </dd>
        <dt>
LinkType (16 bits):  </dt>
        <dd>
          <t>a 16-bit unsigned value that defines the link layer type of packets in the file.
This field is defined in the <xref target="linktype" format="default"/> IANA registry.</t>
        </dd>
        <dt>
Frame Cyclic Sequence (FCS) present (4 bits):  </dt>
        <dd>
          <t>if the "f" bit is set, then the 3 FCS bits provide the number of 16-bit (2 byte) words of FCS that are appended to each packet.</t>
        </dd>
        <dt/>
        <dd>
          <t>valid values are between 0 and 7, with ethernet typically having a length of 4 bytes, or a value of 2.</t>
        </dd>
      </dl>
      <t>The bits marked as zero MUST be set to zero by pcap writers, and MUST be ignored by pcap readers.</t>
    </section>
    <section anchor="packet-record" numbered="true" toc="default">
      <name>Packet Record</name>
      <t>A Packet Record is the standard container for storing the packets
coming from the network.</t>
      <figure anchor="fig-record">
        <name>Packet Record</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
                          1                   2                   3
      0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
    0 |                      Timestamp (Seconds)                      |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
    4 |            Timestamp (Microseconds or nanoseconds)            |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
    8 |                    Captured Packet Length                     |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   12 |                    Original Packet Length                     |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   16 /                                                               /
      /                          Packet Data                          /
      /                        variable length                        /
      /                                                               /
      +---------------------------------------------------------------+
]]></artwork>
      </figure>
      <t>The Packet Header length is 16 octets.</t>
      <t>The meaning of the fields in the Packet Record is:</t>
      <dl>
        <dt>
Timestamp (Seconds) and Timestamp (Microseconds or nanoseconds):  </dt>
        <dd>
          <t>seconds and fraction of a seconds values of a timestamp.</t>
        </dd>
        <dt/>
        <dd>
          <t>The seconds value is a 32-bit unsigned integer that represents the number of seconds that have elapsed since 1970-01-01 00:00:00 UTC, and the microseconds or nanoseconds value represents the number of microseconds or nanoseconds that have elapsed since that seconds.</t>
        </dd>
        <dt/>
        <dd>
          <t>Whether the value represents microseconds or nanoseconds is specified by the magic number in the File Header.</t>
        </dd>
        <dt>
Captured Packet Length (32 bits):  </dt>
        <dd>
          <t>an unsigned value that indicates the number of octets captured from the packet (i.e. the length of the Packet Data field).
It will be the minimum value among the Original Packet Length and the snapshot length for the interface (SnapLen, defined in Figure 1).</t>
        </dd>
        <dt>
Original Packet Length (32 bits):  </dt>
        <dd>
          <t>an unsigned value that indicates the actual length of the packet when it was transmitted on the network.
It can be different from the Captured Packet Length if the packet has been truncated by the capture process.</t>
        </dd>
        <dt>
Packet Data:  </dt>
        <dd>
          <t>the data coming from the network, including link-layer headers.
The actual length of this field is Captured Packet Length.
The format of the link-layer headers depends on the LinkType field specified in the file header (see Figure 1) and it is specified in the entry for that format in [LINKTYPES].</t>
        </dd>
      </dl>
    </section>
    <section anchor="recommended-file-name-extension-pcap" numbered="true" toc="default">
      <name>Recommended File Name Extension: .pcap</name>
      <t>The recommended file name extension for the "PCAP Capture File Format" specified in this document is ".pcap".</t>
      <t>On Windows and macOS, files are distinguished by an extension to their filename.
Such an extension is technically not actually required, as applications should be able to automatically detect the pcap file format through the "magic bytes" at the beginning of the file, as some other UN*X desktop environments do.
However, using name extensions makes it easier to work with files (e.g. visually distinguish file formats) so it is recommended - though not required - to use .pcap as the name extension for files following this specification.</t>
      <t>Please note: To avoid confusion (such as the current usage of .cap for a plethora of different capture file formats) file name extensions other than .pcap should be avoided.</t>
      <t>There is new work to create the PCAP Next Generation capture File Format (see <xref target="I-D.tuexen-opsawg-pcapng" format="default"/>).
The new file format is not compatible with this specification, but many programs read both transparently.
Files of that type will usually start with a Section Header Block, with a magic number of 0x0A0D0D0A.</t>
    </section>
    <section anchor="security-considerations" numbered="true" toc="default">
      <name>Security Considerations</name>
      <t>TBD.</t>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <t>This document requires the following IANA actions:</t>
      <section anchor="media-type-registry" numbered="true" toc="default">
        <name>Media-Type Registry</name>
        <t>This section registers the the 'application/pcap' in the "Media Types" registry.
These media types are used to indicate that the content is packet capture as described in this document.</t>
        <section anchor="applicationpcap" numbered="true" toc="default">
          <name>application/pcap</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    Type name:  application
    Subtype name:  pcap
    Required parameters:  none
    Optional parameters:  none
    Encoding considerations:  PCAP files contain network packets
    Security considerations:  See Security Considerations, Section
    Interoperability considerations:  The format is designed to be broadly interoperable.
    Published specification:  THIS RFC.
    Applications that use this media type: tcpdump, wireshark, others.
    Additional information:
      Magic number(s): 0xA1B2C3D4, and 0xA1B23C4D in both endian orders
      File extension(s):  .pcap
      Macintosh file type code(s):  none
    Person & email address to contact for further information: The Tcpdump Group, www.tcpdump.org
    Intended usage:  LIMITED
    Restrictions on usage:  NONE
    Author:  Guy Harris and Michael Richardson
    Change controller:  The Tcpdump Group
    Provisional registration? (standards tree only):  NO
]]></artwork>
        </section>
      </section>
      <section anchor="linktype" numbered="true" toc="default">
        <name>LinkType Registry</name>
        <t>IANA is requested to create a new Registry entitled: "The PCAP Registry",
and within that Registry to create a table called: "PCAP LinkType List".</t>
        <t>The LinkType Registry is a table of 16-bit numbers.
The Registry has three sections with different <xref target="RFC8126" format="default"/> rules:</t>
        <ul spacing="normal">
          <li>values from 0 to 32767 are marked as Specification Required.</li>
          <li>values from 32768 to 65000 are marked as First-Come First-Served.</li>
          <li>values from 65000 to 65535 are marked as Private Use.</li>
        </ul>
        <t>The Registry has four columns: the symbolic name (LINKTYPE_something), the integer value,
a very short description, and the document/requestor reference.</t>
        <t>The Registry shall be populated as follows in the table below.
In each case here, the reference should be http://www.tcpdump.org/linktypes.html, which is not repeated.</t>
        <t>The initial value of table is base upon the Link type list maintained by libpcap, and
published on the tcpdump.org web site as http://www.tcpdump.org/linktypes.html.</t>
        <t>There is often an associated DLT value which are often identical in value, but not universally so.
DLT values are associated with specific operation system captures, and are operating system specific.</t>
        <table align="center">
          <thead>
            <tr>
              <th align="left">LINKTYPE name</th>
              <th align="center">LINKTYPE value</th>
              <th align="left">description</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">LINKTYPE_NULL</td>
              <td align="center">0</td>
              <td align="left">BSD loopback encapsulation</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_ETHERNET</td>
              <td align="center">1</td>
              <td align="left">IEEE 802.3 Ethernet</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_EXP_ETHERNET</td>
              <td align="center">2</td>
              <td align="left">Xerox experimental 3Mb Ethernet</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_AX25</td>
              <td align="center">3</td>
              <td align="left">AX.25 packet</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_PRONET</td>
              <td align="center">4</td>
              <td align="left">Reserved for PRONET</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_CHAOS</td>
              <td align="center">5</td>
              <td align="left">Reserved for MIT CHAOSNET</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IEEE802_5</td>
              <td align="center">6</td>
              <td align="left">IEEE 802.5 Token Ring</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_ARCNET_BSD</td>
              <td align="center">7</td>
              <td align="left">ARCNET Data Packets with BSD encapsulation</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_SLIP</td>
              <td align="center">8</td>
              <td align="left">SLIP, w/LINKTYPE_SLIP header.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_PPP</td>
              <td align="center">9</td>
              <td align="left">PPP, as per RFC 1661/RFC 1662</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_FDDI</td>
              <td align="center">10</td>
              <td align="left">FDDI: per ANSI INCITS 239-1994.</td>
            </tr>
            <tr>
              <td align="left">not to be used</td>
              <td align="center">11-49</td>
              <td align="left">Do not use these values</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_PPP_HDLC</td>
              <td align="center">50</td>
              <td align="left">PPP in HDLC-like framing, as per RFC 1662</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_PPP_ETHER</td>
              <td align="center">51</td>
              <td align="left">PPPoE; per RFC 2516</td>
            </tr>
            <tr>
              <td align="left">not to be used</td>
              <td align="center">52-98</td>
              <td align="left">Do not use these values</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_SYMANTEC_FIREWALL</td>
              <td align="center">99</td>
              <td align="left">Reserved for Symantec Enterprise Firewall</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_ATM_RFC1483</td>
              <td align="center">100</td>
              <td align="left">RFC 1483 LLC/SNAP-encapsulated ATM</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RAW</td>
              <td align="center">101</td>
              <td align="left">Raw IP; begins with an IPv4 or IPv6 header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_SLIP_BSDOS</td>
              <td align="center">102</td>
              <td align="left">Reserved for BSD/OS SLIP BPF header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_PPP_BSDOS</td>
              <td align="center">103</td>
              <td align="left">Reserved for BSD/OS PPP BPF header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_C_HDLC</td>
              <td align="center">104</td>
              <td align="left">Cisco PPP with HDLC framing, as per section 4.3.1 of RFC 1547</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IEEE802_11</td>
              <td align="center">105</td>
              <td align="left">IEEE 802.11 wireless LAN.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_ATM_CLIP</td>
              <td align="center">106</td>
              <td align="left">ATM Classical IP, with no header preceding IP</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_FRELAY</td>
              <td align="center">107</td>
              <td align="left">Frame Relay LAPF frames</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_LOOP</td>
              <td align="center">108</td>
              <td align="left">OpenBSD loopback encapsulation</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_ENC</td>
              <td align="center">109</td>
              <td align="left">Reserved for OpenBSD IPSEC encapsulation</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_LANE8023</td>
              <td align="center">110</td>
              <td align="left">Reserved for ATM LANE + 802.3</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_HIPPI</td>
              <td align="center">111</td>
              <td align="left">Reserved for NetBSD HIPPI</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_HDLC</td>
              <td align="center">112</td>
              <td align="left">Reserved for NetBSD HDLC framing</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_LINUX_SLL</td>
              <td align="center">113</td>
              <td align="left">Linux "cooked" capture encapsulation</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_LTALK</td>
              <td align="center">114</td>
              <td align="left">Apple LocalTalk</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_ECONET</td>
              <td align="center">115</td>
              <td align="left">Reserved for Acorn Econet</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IPFILTER</td>
              <td align="center">116</td>
              <td align="left">Reserved for OpenBSD ipfilter</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_PFLOG</td>
              <td align="center">117</td>
              <td align="left">OpenBSD pflog; "struct pfloghdr" structure</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_CISCO_IOS</td>
              <td align="center">118</td>
              <td align="left">Reserved for Cisco-internal use</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IEEE802_11_PRISM</td>
              <td align="center">119</td>
              <td align="left">Prism monitor mode</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IEEE802_11_AIRONET</td>
              <td align="center">120</td>
              <td align="left">Reserved for 802.11 + FreeFreeBSD Aironet radio metadata</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_HHDLC</td>
              <td align="center">121</td>
              <td align="left">Reserved for Siemens HiPath HDLC</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IP_OVER_FC</td>
              <td align="center">122</td>
              <td align="left">RFC 2625 IP-over-Fibre Channel</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_SUNATM</td>
              <td align="center">123</td>
              <td align="left">ATM traffic, / per SunATM devices</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RIO</td>
              <td align="center">124</td>
              <td align="left">Reserved for RapidIO</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_PCI_EXP</td>
              <td align="center">125</td>
              <td align="left">Reserved for PCI Express</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_AURORA</td>
              <td align="center">126</td>
              <td align="left">Reserved for Xilinx Aurora link layer</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IEEE802_11_RADIOTAP</td>
              <td align="center">127</td>
              <td align="left">Radiotap header<xref target="Radiotap" format="default"/>, followed by an 802.11 header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_TZSP</td>
              <td align="center">128</td>
              <td align="left">Reserved for Tazmen Sniffer Protocol</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_ARCNET_LINUX</td>
              <td align="center">129</td>
              <td align="left">ARCNET Data Packets, per RFC 1051 frames w/variations</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_MLPPP</td>
              <td align="center">130</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_MLFR</td>
              <td align="center">131</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_ES</td>
              <td align="center">132</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_GGSN</td>
              <td align="center">133</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_MFR</td>
              <td align="center">134</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_ATM2</td>
              <td align="center">135</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_SERVICES</td>
              <td align="center">136</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_ATM1</td>
              <td align="center">137</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_APPLE_IP_OVER_IEEE1394</td>
              <td align="center">138</td>
              <td align="left">Apple IP-over-IEEE 1394 cooked header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_MTP2_WITH_PHDR</td>
              <td align="center">139</td>
              <td align="left">Signaling System 7 (SS7) Message Transfer Part Level ITU-T Q.703</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_MTP2</td>
              <td align="center">140</td>
              <td align="left">SS7 Level 2, Q.703</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_MTP3</td>
              <td align="center">141</td>
              <td align="left">SS7 Level 3, Q.704</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_SCCP</td>
              <td align="center">142</td>
              <td align="left">SS7 Control Part, ITU-T Q.711/Q.712/Q.713/Q.714</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_DOCSIS</td>
              <td align="center">143</td>
              <td align="left">DOCSIS MAC frames, DOCSIS 3.1</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_LINUX_IRDA</td>
              <td align="center">144</td>
              <td align="left">Linux-IrDA packets w/LINKTYPE_LINUX_IRDA header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IBM_SP</td>
              <td align="center">145</td>
              <td align="left">Reserved for IBM SP switch</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IBM_SN</td>
              <td align="center">146</td>
              <td align="left">Reserved for IBM Next Federation switch</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RESERVED_01</td>
              <td align="center">147</td>
              <td align="left">For private use</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RESERVED_02</td>
              <td align="center">148</td>
              <td align="left">For private use</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RESERVED_03</td>
              <td align="center">149</td>
              <td align="left">For private use</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RESERVED_04</td>
              <td align="center">150</td>
              <td align="left">For private use</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RESERVED_05</td>
              <td align="center">151</td>
              <td align="left">For private use</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RESERVED_06</td>
              <td align="center">152</td>
              <td align="left">For private use</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RESERVED_07</td>
              <td align="center">153</td>
              <td align="left">For private use</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RESERVED_08</td>
              <td align="center">154</td>
              <td align="left">For private use</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RESERVED_09</td>
              <td align="center">155</td>
              <td align="left">For private use</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RESERVED_10</td>
              <td align="center">156</td>
              <td align="left">For private use</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RESERVED_11</td>
              <td align="center">157</td>
              <td align="left">For private use</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RESERVED_12</td>
              <td align="center">158</td>
              <td align="left">For private use</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RESERVED_13</td>
              <td align="center">159</td>
              <td align="left">For private use</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RESERVED_14</td>
              <td align="center">160</td>
              <td align="left">For private use</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RESERVED_15</td>
              <td align="center">161</td>
              <td align="left">For private use</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RESERVED_16</td>
              <td align="center">162</td>
              <td align="left">For private use</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IEEE802_11_AVS</td>
              <td align="center">163</td>
              <td align="left">AVS header<xref target="AVS" format="default"/>, followed by an 802.11 header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_MONITOR</td>
              <td align="center">164</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_BACNET_MS_TP</td>
              <td align="center">165</td>
              <td align="left">BACnet MS/TP frames, per 9.3 MS/TP Frame Format ANSI 135</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_PPP_PPPD</td>
              <td align="center">166</td>
              <td align="left">PPP in HDLC-like encapsulation, like LINKTYPE_PPP_HDLC, different stuffing</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_PPPOE</td>
              <td align="center">167</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_PPPOE_ATM</td>
              <td align="center">168</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_GPRS_LLC</td>
              <td align="center">169</td>
              <td align="left">General Packet Radio Service Logical Link Control, as per 3GPP TS 04.64</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_GPF_T</td>
              <td align="center">170</td>
              <td align="left">Transparent-mapped generic framing procedure, as specified by ITU-T Recommendation G.7041/Y.1303</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_GPF_F</td>
              <td align="center">171</td>
              <td align="left">Frame-mapped generic framing procedure, as specified by ITU-T Recommendation G.7041/Y.1303</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_GCOM_T1E1</td>
              <td align="center">172</td>
              <td align="left">Reserved for Gcom T1/E1 line monitoring equipment</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_GCOM_SERIAL</td>
              <td align="center">173</td>
              <td align="left">Reserved for Gcom T1/E1 line monitoring equipment</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_PIC_PEER</td>
              <td align="center">174</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_ERF_ETH</td>
              <td align="center">175</td>
              <td align="left">Endace ERF header followed by 802.3 Ethernet</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_ERF_POS</td>
              <td align="center">176</td>
              <td align="left">Endace ERF header followed by Packet-over-SONET</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_LINUX_LAPD</td>
              <td align="center">177</td>
              <td align="left">Link Access Procedures on the D Channel (LAPD) frames, as specified by ITU-T Recommendation Q.920 and ITU-T Recommendation Q.921 , captured via vISDN, with a LINKTYPE_LINUX_LAPD header , followed by the Q.921 frame, starting with the address field.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_ETHER</td>
              <td align="center">178</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_PPP</td>
              <td align="center">179</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_FRELAY</td>
              <td align="center">180</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_CHDLC</td>
              <td align="center">181</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_MFR</td>
              <td align="center">182</td>
              <td align="left">FRF.16.1 Multi-Link Frame Relay frames, beginning with an FRF.12 Interface fragmentation format fragmentation header.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_VP</td>
              <td align="center">182</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_A653_ICM</td>
              <td align="center">185</td>
              <td align="left">Reserved for Arinc 653 Interpartition Communication messages</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_USB_FREEBSD</td>
              <td align="center">186</td>
              <td align="left">USB packets, beginning with a FreeBSD USB header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_BLUETOOTH_HCI_H4</td>
              <td align="center">187</td>
              <td align="left">Bluetooth HCI UART transport layer; the frame contains an HCI packet indicator byte, as specified by the UART Transport Layer portion of the most recent Bluetooth Core specification , followed by an HCI packet of the specified packet type, as specified by the Host Controller Interface Functional Specification portion of the most recent Bluetooth Core Specification.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IEEE802_16_MAC_CPS</td>
              <td align="center">188</td>
              <td align="left">Reserved for IEEE 802.16 MAC Common Part Sublayer</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_USB_LINUX</td>
              <td align="center">189</td>
              <td align="left">USB packets, beginning with a Linux USB header, as specified by the struct usbmon_packet in the Documentation/usb/usbmon.txt file in the Linux source tree. Only the first 48 bytes of that header are present. All fields in the header are in host byte order. When performing a live capture, the host byte order is the byte order of the machine on which the packets are captured. When reading a pcap file, the byte order is the byte order for the file, as specified by the file's magic number; when reading a pcapng file, the byte order is the byte order for the section of the pcapng file, as specified by the Section Header Block.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_CAN20B</td>
              <td align="center">190</td>
              <td align="left">Reserved for Controller Area Network (CAN) v. 2.0B packets</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IEEE802_15_4_LINUX</td>
              <td align="center">191</td>
              <td align="left">IEEE 802.15.4, with address fields padded, as is done by Linux drivers</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_PPI</td>
              <td align="center">192</td>
              <td align="left">Per-Packet Information information, as specified by the Per-Packet Information Header Specification , followed by a packet with the LINKTYPE_ value specified by the pph_dlt field of that header.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IEEE802_16_MAC_CPS_RADIO</td>
              <td align="center">193</td>
              <td align="left">Reserved for 802.16 MAC Common Part Sublayer plus radio header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_ISM</td>
              <td align="center">194</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IEEE802_15_4_WITHFCS</td>
              <td align="center">195</td>
              <td align="left">IEEE 802.15.4 Low-Rate Wireless Networks, with each packet having the FCS at the end of the frame.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_SITA</td>
              <td align="center">196</td>
              <td align="left">Various link-layer types, with a pseudo-header , for SITA</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_ERF</td>
              <td align="center">197</td>
              <td align="left">Various link-layer types, with a pseudo-header, for Endace DAG cards; encapsulates Endace ERF records.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RAIF1</td>
              <td align="center">198</td>
              <td align="left">Reserved for Ethernet packets captured from a u10 Networks board</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IPMB_KONTRON</td>
              <td align="center">199</td>
              <td align="left">Reserved for IPMB packet for IPMI, with a 2-byte header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_ST</td>
              <td align="center">200</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_BLUETOOTH_HCI_H4_WITH_PHDR</td>
              <td align="center">201</td>
              <td align="left">Bluetooth HCI UART transport layer; the frame contains a 4-byte direction field, in network byte order (big-endian), the low-order bit of which is set if the frame was sent from the host to the controller and clear if the frame was received by the host from the controller, followed by an HCI packet indicator byte, as specified by the UART Transport Layer portion of the most recent Bluetooth Core specification , followed by an HCI packet of the specified packet type, as specified by the Host Controller Interface Functional Specification portion of the most recent Bluetooth Core Specification.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_AX25_KISS</td>
              <td align="center">202</td>
              <td align="left">AX.25 packet, with a 1-byte KISS header containing a type indicator.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_LAPD</td>
              <td align="center">203</td>
              <td align="left">Link Access Procedures on the D Channel (LAPD) frames, as specified by ITU-T Recommendation Q.920 and ITU-T Recommendation Q.921 , starting with the address field, with no pseudo-header.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_PPP_WITH_DIR</td>
              <td align="center">204</td>
              <td align="left">PPP, as per RFC 1661 and RFC 1662 , preceded with a one-byte pseudo-header with a zero value meaning received by this host and a non-zero value meaning sent by this host; if the first 2 bytes are 0xff and 0x03, it's PPP in HDLC-like framing, with the PPP header following those two bytes, otherwise it's PPP without framing, and the packet begins with the PPP header. The data in the frame is not octet-stuffed or bit-stuffed.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_C_HDLC_WITH_DIR</td>
              <td align="center">205</td>
              <td align="left">Cisco PPP with HDLC framing, as per section 4.3.1 of RFC 1547 , preceded with a one-byte pseudo-header with a zero value meaning received by this host and a non-zero value meaning sent by this host.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_FRELAY_WITH_DIR</td>
              <td align="center">206</td>
              <td align="left">Frame Relay LAPF frames, beginning with a one-byte pseudo-header with a zero value meaning received by this host (DCE-&gt;DTE) and a non-zero value meaning sent by this host (DTE-&gt;DCE), followed by an ITU-T Recommendation Q.922 LAPF header starting with the address field, and without an FCS at the end of the frame.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_LAPB_WITH_DIR</td>
              <td align="center">207</td>
              <td align="left">Link Access Procedure, Balanced (LAPB), as specified by ITU-T Recommendation X.25 , preceded with a one-byte pseudo-header with a zero value meaning received by this host (DCE-&gt;DTE) and a non-zero value meaning sent by this host (DTE-&gt;DCE).</td>
            </tr>
            <tr>
              <td align="left">Reserved</td>
              <td align="center">208</td>
              <td align="left">Reserved for an unspecified link-layer type</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IPMB_LINUX</td>
              <td align="center">209</td>
              <td align="left">IPMB over an I2C circuit, with a Linux-specific pseudo-header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_FLEXRAY</td>
              <td align="center">210</td>
              <td align="left">Reserved for FlexRay automotive bus</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_MOST</td>
              <td align="center">211</td>
              <td align="left">Reserved for Media Oriented Systems Transport (MOST) bus</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_LIN</td>
              <td align="center">212</td>
              <td align="left">Reserved for Local Interconnect Network (LIN) bus for vehicle networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_X2E_SERIAL</td>
              <td align="center">213</td>
              <td align="left">Reserved for X2E serial line captures</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_X2E_XORAYA</td>
              <td align="center">214</td>
              <td align="left">Reserved for X2E Xoraya data loggers</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IEEE802_15_4_NONASK_PHY</td>
              <td align="center">215</td>
              <td align="left">IEEE 802.15.4 Low-Rate Wireless Networks, with each packet having the FCS at the end of the frame, and with the PHY-level data for the O-QPSK, BPSK, GFSK, MSK, and RCC DSS BPSK PHYs (4 octets of 0 as preamble, one octet of SFD, one octet of frame length + reserved bit) preceding the MAC-layer data (starting with the frame control field).</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_LINUX_EVDEV</td>
              <td align="center">216</td>
              <td align="left">Reserved for Linux evdev messages</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_GSMTAP_UM</td>
              <td align="center">217</td>
              <td align="left">Reserved for GSM Um interface, with gsmtap header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_GSMTAP_ABIS</td>
              <td align="center">218</td>
              <td align="left">Reserved for GSM Abis interface, with gsmtap header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_MPLS</td>
              <td align="center">219</td>
              <td align="left">MPLS packets with MPLS label as the header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_USB_LINUX_MMAPPED</td>
              <td align="center">220</td>
              <td align="left">USB packets, beginning with a Linux USB header, as specified by the struct usbmon_packet in the Documentation/usb/usbmon.txt file in the Linux source tree. All 64 bytes of the header are present. All fields in the header are in host byte order. When performing a live capture, the host byte order is the byte order of the machine on which the packets are captured. When reading a pcap file, the byte order is the byte order for the file, as specified by the file's magic number; when reading a pcapng file, the byte order is the byte order for the section of the pcapng file, as specified by the Section Header Block. For isochronous transfers, the ndesc field specifies the number of isochronous descriptors that follow.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_DECT</td>
              <td align="center">221</td>
              <td align="left">Reserved for DECT packets, with a pseudo-header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_AOS</td>
              <td align="center">222</td>
              <td align="left">Reserved for OS Space Data Link Protocol</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_WIHART</td>
              <td align="center">223</td>
              <td align="left">Reserved for Wireless HART (Highway Addressable Remote Transducer)</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_FC_2</td>
              <td align="center">224</td>
              <td align="left">Fibre Channel FC-2 frames, beginning with a Frame_Header.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_FC_2_WITH_FRAME_DELIMS</td>
              <td align="center">225</td>
              <td align="left">Fibre Channel FC-2 frames, beginning an encoding of the SOF, followed by a Frame_Header, and ending with an encoding of the SOF. The encodings represent the frame delimiters as 4-byte sequences representing the corresponding ordered sets, with K28.5 represented as 0xBC, and the D symbols as the corresponding byte values; for example, SOFi2, which is K28.5 - D21.5 - D1.2 - D21.2, is represented as 0xBC 0xB5 0x55 0x55.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IPNET</td>
              <td align="center">226</td>
              <td align="left">Solaris ipnet pseudo-header , followed by an IPv4 or IPv6 datagram.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_CAN_SOCKETCAN</td>
              <td align="center">227</td>
              <td align="left">CAN (Controller Area Network) frames, with a pseudo-header followed by the frame payload.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IPV4</td>
              <td align="center">228</td>
              <td align="left">Raw IPv4; the packet begins with an IPv4 header.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IPV6</td>
              <td align="center">229</td>
              <td align="left">Raw IPv6; the packet begins with an IPv6 header.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IEEE802_15_4_NOFCS</td>
              <td align="center">230</td>
              <td align="left">IEEE 802.15.4 Low-Rate Wireless Network, without the FCS at the end of the frame.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_DBUS</td>
              <td align="center">231</td>
              <td align="left">Raw D-Bus messages , starting with the endianness flag, followed by the message type, etc., but without the authentication handshake before the message sequence.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_VS</td>
              <td align="center">232</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_SRX_E2E</td>
              <td align="center">233</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_FIBRECHANNEL</td>
              <td align="center">234</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_DVB_CI</td>
              <td align="center">235</td>
              <td align="left">DVB-CI (DVB Common Interface for communication between a PC Card module and a DVB receiver), with the message format specified by the PCAP format for DVB-CI specification</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_MUX27010</td>
              <td align="center">236</td>
              <td align="left">Variant of 3GPP TS 27.010 multiplexing protocol (similar to, but not the same as, 27.010).</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_STANAG_5066_D_PDU</td>
              <td align="center">237</td>
              <td align="left">D_PDUs as described by NATO standard STANAG 5066, starting with the synchronization sequence, and including both header and data CRCs. The current version of STANAG 5066 is backwards-compatible with the 1.0.2 version , although newer versions are classified.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_JUNIPER_ATM_CEMIC</td>
              <td align="center">238</td>
              <td align="left">Reserved for Juniper Networks</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_NFLOG</td>
              <td align="center">239</td>
              <td align="left">Linux netlink NETLINK NFLOG socket log messages.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_NETANALYZER</td>
              <td align="center">240</td>
              <td align="left">Pseudo-header for Hilscher Gesellschaft fuer Systemautomation mbH netANALYZER devices , followed by an Ethernet frame, beginning with the MAC header and ending with the FCS.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_NETANALYZER_TRANSPARENT</td>
              <td align="center">241</td>
              <td align="left">Pseudo-header for Hilscher Gesellschaft fuer Systemautomation mbH netANALYZER devices , followed by an Ethernet frame, beginning with the preamble, SFD, and MAC header, and ending with the FCS.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IPOIB</td>
              <td align="center">242</td>
              <td align="left">IP-over-InfiniBand, as specified by RFC 4391 section 6</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_MPEG_2_TS</td>
              <td align="center">243</td>
              <td align="left">MPEG-2 Transport Stream transport packets, as specified by ISO 13818-1/ ITU-T Recommendation H.222.0 (see table 2-2 of section 2.4.3.2 Transport Stream packet layer).</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_NG40</td>
              <td align="center">244</td>
              <td align="left">Pseudo-header for ng4T GmbH's UMTS Iub/Iur-over-ATM and Iub/Iur-over-IP format as used by their ng40 protocol tester , followed by frames for the Frame Protocol as specified by 3GPP TS 25.427 for dedicated channels and 3GPP TS 25.435 for common/shared channels in the case of ATM AAL2 or UDP traffic, by SSCOP packets as specified by ITU-T Recommendation Q.2110 for ATM AAL5 traffic, and by NBAP packets for SCTP traffic.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_NFC_LLCP</td>
              <td align="center">245</td>
              <td align="left">Pseudo-header for NFC LLCP packet captures , followed by frame data for the LLCP Protocol as specified by NFCForum-TS-LLCP_1.1</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_PFSYNC</td>
              <td align="center">246</td>
              <td align="left">Reserved for pfsync output</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_INFINIBAND</td>
              <td align="center">247</td>
              <td align="left">Raw InfiniBand frames, starting with the Local Routing Header, as specified in Chapter 5 Data packet format of InfiniBand[TM] Architectural Specification Release 1.2.1 Volume 1 - General Specifications</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_SCTP</td>
              <td align="center">248</td>
              <td align="left">SCTP packets, as defined by RFC 4960 , with no lower-level protocols such as IPv4 or IPv6.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_USBPCAP</td>
              <td align="center">249</td>
              <td align="left">USB packets, beginning with a USBPcap header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RTAC_SERIAL</td>
              <td align="center">250</td>
              <td align="left">Serial-line packet header for the Schweitzer Engineering Laboratories RTAC product , followed by a payload for one of a number of industrial control protocols.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_BLUETOOTH_LE_LL</td>
              <td align="center">251</td>
              <td align="left">Bluetooth Low Energy air interface Link Layer packets, in the format described in section 2.1 PACKET FORMAT of volume 6 of the Bluetooth Specification Version 4.0 (see PDF page 2200), but without the Preamble.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_WIRESHARK_UPPER_PDU</td>
              <td align="center">252</td>
              <td align="left">Reserved for Wireshark</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_NETLINK</td>
              <td align="center">253</td>
              <td align="left">Linux Netlink capture encapsulation</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_BLUETOOTH_LINUX_MONITOR</td>
              <td align="center">254</td>
              <td align="left">Bluetooth Linux Monitor encapsulation of traffic for the BlueZ stack</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_BLUETOOTH_BREDR_BB</td>
              <td align="center">255</td>
              <td align="left">Bluetooth Basic Rate and Enhanced Data Rate baseband packets</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_BLUETOOTH_LE_LL_WITH_PHDR</td>
              <td align="center">256</td>
              <td align="left">Bluetooth Low Energy link-layer packets</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_PROFIBUS_DL</td>
              <td align="center">257</td>
              <td align="left">PROFIBUS data link layer packets, as specified by IEC standard 61158-4-3, beginning with the start delimiter, ending with the end delimiter, and including all octets between them.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_PKTAP</td>
              <td align="center">258</td>
              <td align="left">Apple PKTAP capture encapsulation</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_EPON</td>
              <td align="center">259</td>
              <td align="left">Ethernet-over-passive-optical-network packets, starting with the last 6 octets of the modified preamble as specified by 65.1.3.2 Transmit in Clause 65 of Section 5 of IEEE 802.3 , followed immediately by an Ethernet frame.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IPMI_HPM_2</td>
              <td align="center">260</td>
              <td align="left">IPMI trace packets, as specified by Table 3-20 Trace Data Block Format in the PICMG HPM.2 specification The time stamps for packets in this format must match the time stamps in the Trace Data Blocks.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_ZWAVE_R1_R2</td>
              <td align="center">261</td>
              <td align="left">Z-Wave RF profile R1 and R2 packets , as specified by ITU-T Recommendation G.9959 , with some MAC layer fields moved.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_ZWAVE_R3</td>
              <td align="center">262</td>
              <td align="left">Z-Wave RF profile R3 packets , as specified by ITU-T Recommendation G.9959 , with some MAC layer fields moved.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_WATTSTOPPER_DLM</td>
              <td align="center">263</td>
              <td align="left">Formats for WattStopper Digital Lighting Management (DLM) and Legrand Nitoo Open protocol common packet structure captures.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_ISO_14443</td>
              <td align="center">264</td>
              <td align="left">Messages between ISO 14443 contactless smartcards (Proximity Integrated Circuit Card, PICC) and card readers (Proximity Coupling Device, PCD), with the message format specified by the PCAP format for ISO14443 specification</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_RDS</td>
              <td align="center">265</td>
              <td align="left">Radio data system (RDS) groups, as per IEC 62106, encapsulated in this form</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_USB_DARWIN</td>
              <td align="center">266</td>
              <td align="left">USB packets, beginning with a Darwin (macOS, etc.) USB header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_OPENFLOW</td>
              <td align="center">267</td>
              <td align="left">Reserved for OpenBSD DLT_OPENFLOW</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_SDLC</td>
              <td align="center">268</td>
              <td align="left">SDLC packets, as specified by Chapter 1, DLC Links, section Synchronous Data Link Control (SDLC) of Systems Network Architecture Formats, GA27-3136-20 , without the flag fields, zero-bit insertion, or Frame Check Sequence field, containing SNA path information units (PIUs) as the payload.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_TI_LLN_SNIFFER</td>
              <td align="center">269</td>
              <td align="left">Reserved for Texas Instruments protocol sniffer</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_LORATAP</td>
              <td align="center">270</td>
              <td align="left">LoRaTap pseudo-header , followed by the payload, which is typically the PHYPayload from the LoRaWan specification</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_VSOCK</td>
              <td align="center">271</td>
              <td align="left">Protocol for communication between host and guest machines in VMware and KVM hypervisors.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_NORDIC_BLE</td>
              <td align="center">272</td>
              <td align="left">Messages to and from a Nordic Semiconductor nRF Sniffer for Bluetooth LE packets, beginning with a pseudo-header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_DOCSIS31_XRA31</td>
              <td align="center">273</td>
              <td align="left">DOCSIS packets and bursts, preceded by a pseudo-header giving metadata about the packet</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_ETHERNET_MPACKET</td>
              <td align="center">274</td>
              <td align="left">mPackets, as specified by IEEE 802.3br Figure 99-4, starting with the preamble and always ending with a CRC field.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_DISPLAYPORT_AUX</td>
              <td align="center">275</td>
              <td align="left">DisplayPort AUX channel monitoring data as specified by VESA DisplayPort(DP) Standard preceded by a pseudo-header</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_LINUX_SLL2</td>
              <td align="center">276</td>
              <td align="left">Linux cooked capture encapsulation v2</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_SERCOS_MONITOR</td>
              <td align="center">277</td>
              <td align="left">Reserved for Sercos Monitor</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_OPENVIZSLA</td>
              <td align="center">278</td>
              <td align="left">Openvizsla FPGA-based USB sniffer</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_EBHSCR</td>
              <td align="center">279</td>
              <td align="left">Elektrobit High Speed Capture and Replay (EBHSCR) format</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_VPP_DISPATCH</td>
              <td align="center">280</td>
              <td align="left">Records in traces from the http://fd.io VPP graph dispatch tracer, in the the graph dispatcher trace format</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_DSA_TAG_BRCM</td>
              <td align="center">281</td>
              <td align="left">Ethernet frames, with a switch tag inserted between the source address field and the type/length field in the Ethernet header.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_DSA_TAG_BRCM_PREPEND</td>
              <td align="center">282</td>
              <td align="left">Ethernet frames, with a switch tag inserted before the destination address in the Ethernet header.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_IEEE802_15_4_TAP</td>
              <td align="center">283</td>
              <td align="left">IEEE 802.15.4 Low-Rate Wireless Networks, with a pseudo-header containing TLVs with metadata preceding the 802.15.4 header.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_DSA_TAG_DSA</td>
              <td align="center">284</td>
              <td align="left">Ethernet frames, with a switch tag inserted between the source address field and the type/length field in the Ethernet header.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_DSA_TAG_EDSA</td>
              <td align="center">285</td>
              <td align="left">Ethernet frames, with a programmable Ethernet type switch tag inserted between the source address field and the type/length field in the Ethernet header.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_ELEE</td>
              <td align="center">286</td>
              <td align="left">Payload of lawful intercept packets using the ELEE protocol The packet begins with the ELEE header; it does not include any transport-layer or lower-layer headers for protcols used to transport ELEE packets.</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_Z_WAVE_SERIAL</td>
              <td align="center">287</td>
              <td align="left">Serial frames transmitted between a host and a Z-Wave chip over an RS-232 or USB serial connection, as described in section 5 of the Z-Wave Serial API Host Application Programming Guide</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_USB_2_0</td>
              <td align="center">288</td>
              <td align="left">USB 2.0, 1.1, or 1.0 packet, beginning with a PID, as described by Chapter 8 Protocol Layer of the the Universal Serial Bus Specification Revision 2.0</td>
            </tr>
            <tr>
              <td align="left">LINKTYPE_ATSC_ALP</td>
              <td align="center">289</td>
              <td align="left">ATSC Link-Layer Protocol frames, as described in section 5 of the A/330 Link-Layer Protocol specification, found at the ATSC 3.0 standards page , beginning with a Base Header</td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>
    <section anchor="contributors" numbered="true" toc="default">
      <name>Contributors</name>
      <t>[Insert pcap developers etc. here].</t>
    </section>
    <section anchor="acknowledgments" numbered="true" toc="default">
      <name>Acknowledgments</name>
      <t>The authors wish to thank [insert list here] and many others for
   their invaluable comments.</t>
      <!--
COMMENTS.
1) if editing with emacs, please use markdown-mode
2) with gin (auto-wrap) *TURNED OFF*,
3) and visual-line-mode *ON*
4) start each sentence on a new line, and mostly keep it on one line.

INSERT GVIM settings.
-->

</section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="I-D.tuexen-opsawg-pcapng">
          <front>
            <title>PCAP Next Generation (pcapng) Capture File Format</title>
            <author fullname="Michael Tuexen">
              <organization>Muenster University of Applied Sciences</organization>
            </author>
            <author fullname="Fulvio Risso">
              <organization>Politecnico di Torino</organization>
            </author>
            <author fullname="Jasper Bongertz">
              <organization>Airbus Defence and Space CyberSecurity</organization>
            </author>
            <author fullname="Gerald Combs">
              <organization>Wireshark Foundation</organization>
            </author>
            <author fullname="Guy Harris">
	 </author>
            <author fullname="Eelco Chaudron">
              <organization>Red Hat</organization>
            </author>
            <author fullname="Michael C. Richardson">
              <organization>Sandelman Software Works</organization>
            </author>
            <date day="4" month="October" year="2021"/>
            <abstract>
              <t>   This document describes a format to record captured packets to a
   file.  This format is extensible; Wireshark can currently read and
   write it, and libpcap can currently read some pcapng files.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-tuexen-opsawg-pcapng-04"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton">
              <organization/>
            </author>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <author fullname="T. Narten" initials="T." surname="Narten">
              <organization/>
            </author>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
        <reference anchor="Radiotap" target="http://www.radiotap.org/">
          <front>
            <title>Radiotap Web site</title>
            <author>
              <organization>radiotap.org</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="AVS" target="http://web.archive.org/web/20040803232023/http://www.shaftnet.org/~pizza/software/capturefrm.txt">
          <front>
            <title>Archived AVS specification</title>
            <author fullname="Solomon Peachy">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
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
8V8K/x/1lLmFnY0AAA==

-->

</rfc>
