Net::Frame::Layer::ICMPv6 - Internet Control Message Protocol v6 layer object |
Net::Frame::Layer::ICMPv6 - Internet Control Message Protocol v6 layer object
use Net::Frame::Simple; use Net::Frame::Layer::ICMPv6 qw(:consts);
my $icmp = Net::Frame::Layer::ICMPv6->new( type => NF_ICMPv6_TYPE_ECHO_REQUEST, code => NF_ICMPv6_CODE_ZERO, checksum => 0, );
# Build an ICMPv6 echo-request use Net::Frame::Layer::ICMPv6::Echo; my $echo = Net::Frame::Layer::ICMPv6::Echo->new(payload => 'echo');
my $echoReq = Net::Frame::Simple->new(layers => [ $icmp, $echo ]); print $echoReq->print."\n";
# Build an ICMPv6 neighbor-solicitation use Net::Frame::Layer::ICMPv6::NeighborSolicitation; my $solicit = Net::Frame::Layer::ICMPv6::NeighborSolicitation->new( targetAddress => $targetIpv6Address, ); $icmp->type(NF_ICMPv6_TYPE_NEIGHBORSOLICITATION);
my $nsReq = Net::Frame::Simple->new(layers => [ $icmp, $solicit ]); print $nsReq->print."\n";
# # Read a raw layer #
my $layer = Net::Frame::Layer::ICMPv6->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 ICMPv6 layer.
RFC: http://www.rfc-editor.org/rfc/rfc4861.txt
RFC: http://www.rfc-editor.org/rfc/rfc4389.txt
RFC: http://www.rfc-editor.org/rfc/rfc4191.txt
RFC: http://www.rfc-editor.org/rfc/rfc3775.txt
RFC: http://www.rfc-editor.org/rfc/rfc2463.txt
RFC: http://www.rfc-editor.org/rfc/rfc2461.txt
RFC: http://www.rfc-editor.org/rfc/rfc2460.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 overridden 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::ICMPv6 qw(:consts);
Various types and codes for ICMPv6 header.
Various flags for some ICMPv6 messages.
Patrice <GomoR> Auffret
Copyright (c) 2006-2014, 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::ICMPv6 - Internet Control Message Protocol v6 layer object |