Hello Folks,
I have the following situation:
VPN Tunnel 1 VPN Tunnel 2
81.129.39.9 ============ 59.20.93.49 ============= 93.48.28.27
Gateway A Gateway
B Gateway C
I need all clients coming from gateway C to be able to use the vpn
tunnel 1, so I have the following rule on Gateway B:
iptables -t nat -A POSTROUTING -s 93.48.28.27 -d 81.129.40.0/24 -o
eth0 -j MASQUERADE
But does not work, what I'm missing here?
Note: doing tcpdump host 93.48.28.27 on Gateway B and trying to ping
or telnet from Gateway C seems to work. I don't have access to Gateway
A, so I can't verify if the packets get to Gateway A.
I would really appreciate if you can help me fix this or find an other
job ;)