Hi,
I would like to forward packets that come from a wireguard connection to a local subnet
environment
- Client: connected to server trough wireguard IP 192.168.X.2
- server: connected to Client trough wireguard IP 192.168.X.1 and 192.168.Y.1 ( it’s not systemd free ¯\(ツ)/¯ )
- aMachine: on the same subnet as server IP 192.168.Y.2
on the server I’ve done
#I don't know if this is necessary ?
echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf
sysctl --system
I’ve added the following rule to the nftables config on server but it seem the packet get lost ?
#added inside existing table `table ip Tip {}`
chain chPreRoute {
type nat hook prerouting priority 0; policy accept;
iif wg0 icmp type echo-request dnat to 192.168.Y.2
}
Hi, Thank to all of you.
I made a test environment with the following.
The goal is to send a ping A to B, B forward to C
So
ping -4c 1 192.168.y.2
from A, should ping B fw CI’ve set the following rule in /etc/nftables.conf
but is not working :'(
I see B receive the package
preroute: IN=eth0 OUT= MAC=▒▒ SRC=192.168.y.1 DST=192.168.y.2 LEN=84 TOS=0x00 PREC=0x00 TTL=64 ID=21398 DF PROTO=ICMP TYPE=8 CODE=0 ID=17950 SEQ=1
but it seem C receive nothing…
Any ideas ?
SOLVED
The following works !
I guess one of my others rules was blocking