Net::Frame::Layer::ARP - Address Resolution Protocol layer object |
Net::Frame::Layer::ARP - Address Resolution Protocol layer object
use Net::Frame::Layer::ARP qw(:consts);
# Build a layer my $layer = Net::Frame::Layer::ARP->new( hType => NF_ARP_HTYPE_ETH, pType => NF_ARP_PTYPE_IPv4, hSize => NF_ARP_HSIZE_ETH, pSize => NF_ARP_PSIZE_IPv4, opCode => NF_ARP_OPCODE_REQUEST, src => '00:00:00:00:00:00', dst => NF_ARP_ADDR_BROADCAST, srcIp => '127.0.0.1', dstIp => '127.0.0.1', ); $layer->pack;
print 'RAW: '.$layer->dump."\n";
# Read a raw layer my $layer = Net::Frame::Layer::ARP->new(raw => $raw);
print $layer->print."\n"; print 'PAYLOAD: '.unpack('H*', $layer->payload)."\n" if $layer->payload;
This modules implements the encoding and decoding of the ARP layer.
RFC: ftp://ftp.rfc-editor.org/in-notes/rfc826.txt
See also Net::Frame::Layer for other attributes and methods.
The following are inherited attributes. See Net::Frame::Layer for more information.
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.
Load them: use Net::Frame::Layer::ARP qw(:consts);
Patrice <GomoR> Auffret
Copyright (c) 2006-2007, Patrice <GomoR> Auffret
You may distribute this module under the terms of the Artistic license. See LICENSE.Artistic file in the source distribution archive.
Net::Frame::Layer::ARP - Address Resolution Protocol layer object |