blob: c90c885a356c725a8872159a27be2bdc45034010 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# test divert-to with raw ip
# create a divert-to in rule on the remote machine
# client sends a proto 254 packet from the local machine
# server receives the proto 254 packet at the remote machine
use strict;
use warnings;
use Socket;
our %args = (
socktype => Socket::SOCK_RAW,
protocol => 254,
client => { func => \&write_datagram, noin => 1, },
server => { func => \&read_datagram, noout => 1, },
divert => "to",
);
|