I have a Windows VM with IP address 192.168.0.77.
I use this tcpproxy.conf rule, on a FreeBSD server, for accessing this VM from Internet via Wireguard:
I want to replace this rule with an IPFW one. I have tried:
but it doesn't work.
What I am missing ?
Thanks.
--
Maurizio
I use this tcpproxy.conf rule, on a FreeBSD server, for accessing this VM from Internet via Wireguard:
Code:
listen * 3390 │
{ │
resolv: ipv4; │
remote: 192.168.0.77 3389; │
};
Code:
ipfw add fwd 192.168.0.77:3389 tcp from any to any 3390
What I am missing ?
Thanks.
--
Maurizio