The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl

use Net::Packet::Shell;

$Env->updateDevInfo('127.0.0.1');

$f = F(ETH(type  => NP_ETH_TYPE_ARP),
       ARP(dstIp => '127.0.0.1')
     );

print $f->print."\n";

sd($f);