in reply to Simplest way to craft an icmpv6 echo packet
#!/usr/bin/perl use strict; use warnings; use Net::Frame::Simple; use Net::Frame::Layer::ICMPv6::Echo; my $echo = Net::Frame::Layer::ICMPv6::Echo->new( 'payload' => 'echo'); my $echoReq = Net::Frame::Simple->new( 'layers' => [$echo]); print $echoReq->print."\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Simplest way to craft an icmpv6 echo packet
by ewhitt (Scribe) on Sep 04, 2010 at 23:45 UTC | |
by Anonymous Monk on Sep 05, 2010 at 07:31 UTC |