The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::Frame::Layer::8021Q - 802.1Q layer object

SYNOPSIS

   use Net::Frame::Layer::8021Q qw(:consts);

   # Build a layer
   my $layer = Net::Frame::Layer::8021Q->new(
      priority => 0,
      cfi      => 0,
      id       => 0,
      type     => NF_8021Q_TYPE_IPv4,
   );
   $layer->pack;

   print 'RAW: '.$layer->dump."\n";

   # Read a raw layer
   my $layer = Net::Frame::Layer::8021Q->new(raw => $raw);

   print $layer->print."\n";
   print 'PAYLOAD: '.unpack('H*', $layer->payload)."\n"
      if $layer->payload;

DESCRIPTION

This modules implements the encoding and decoding of the 802.1Q layer.

Details: http://standards.ieee.org/getieee802/802.1.html

See also Net::Frame::Layer for other attributes and methods.

ATTRIBUTES

priority

The priority field.

cfi

The cfi field. It is only one bit long, so set it to 0 or 1.

id

8021Q tag id. You'll love it.

type

Which type the next encapsulated layer is.

The following are inherited attributes. See Net::Frame::Layer for more information.

raw
payload
nextLayer

METHODS

new
new (hash)

Object constructor. You can pass attributes that will overwrite default ones. See SYNOPSIS for default values.

The following are inherited methods. Some of them may be overriden in this layer, and some others may not be meaningful in this layer. See Net::Frame::Layer for more information.

layer
computeLengths
computeChecksums
pack
unpack
encapsulate
getLength
getPayloadLength
print
dump

CONSTANTS

Load them: use Net::Frame::Layer::8021Q qw(:consts);

NF_8021Q_TYPE_IPv4
NF_8021Q_TYPE_X25
NF_8021Q_TYPE_ARP
NF_8021Q_TYPE_CGMP
NF_8021Q_TYPE_80211
NF_8021Q_TYPE_PPPIPCP
NF_8021Q_TYPE_RARP
NF_8021Q_TYPE_DDP
NF_8021Q_TYPE_AARP
NF_8021Q_TYPE_PPPCCP
NF_8021Q_TYPE_WCP
NF_8021Q_TYPE_8021Q
NF_8021Q_TYPE_IPX
NF_8021Q_TYPE_STP
NF_8021Q_TYPE_IPv6
NF_8021Q_TYPE_WLCCP
NF_8021Q_TYPE_MPLS
NF_8021Q_TYPE_PPPoED
NF_8021Q_TYPE_PPPoES
NF_8021Q_TYPE_8021X
NF_8021Q_TYPE_AoE
NF_8021Q_TYPE_80211I
NF_8021Q_TYPE_LLDP
NF_8021Q_TYPE_LLTD
NF_8021Q_TYPE_LOOP
NF_8021Q_TYPE_VLAN
NF_8021Q_TYPE_PPPPAP
NF_8021Q_TYPE_PPPCHAP

Various supported encapsulated layer types.

SEE ALSO

Net::Frame::Layer

AUTHOR

Patrice <GomoR> Auffret

COPYRIGHT AND LICENSE

Copyright (c) 2006-2015, Patrice <GomoR> Auffret

You may distribute this module under the terms of the Artistic license. See LICENSE.Artistic file in the source distribution archive.