in reply to Re^3: Net::RawIP question
in thread Net::RawIP question
#!/usr/bin/perl use Net::RawIP; $n = Net::RawIP->new({ ip => { saddr => '192.168.1.1', daddr => '192.168.1.2', }, tcp => { source => 139, dest => 139, psh => 1, syn => 1, }, }); $n->send; $n->ethnew("eth0") or die "Net::RawIP->ethnew failed"; # error here $n->ethset(source => 'my.target.lan', dest =>'my.target.lan'); $n->ethsend;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Net::RawIP question
by anonymized user 468275 (Curate) on Aug 16, 2018 at 19:18 UTC | |
by mark200 (Novice) on Aug 16, 2018 at 19:58 UTC | |
by anonymized user 468275 (Curate) on Aug 16, 2018 at 20:52 UTC | |
by mark200 (Novice) on Aug 16, 2018 at 21:48 UTC | |
by anonymized user 468275 (Curate) on Aug 16, 2018 at 21:53 UTC | |
|