Description
Hello, I have 2 networks I want to connect together:
server A - public ip A, private ip 11.0.0.1, other servers with ips 11.0.0.2, ...
server B - public ip B, private ip 12.0.0.1, other servers with ips 12.0.0.2, ...
I started ctunnel like this:
server A: ctunnel -V -t 8 -i 1.0.0 -n -s -l 0.0.0.0:5001 -C aes-128-cfb -r 11.0.0.0/25
server B: ctunnel -V -t 8 -i 1.0.0 -n -c -f ip_A:5001 -C aes-128-cfb -r 12.0.0.0/25
I can ping 12.0.0.1 from A and 11.0.0.1 from B with no issue, however I can't figure why pinging other servers does not work.
from A: ping 12.0.0.2 returns Destination Host Prohibited
from B: ping 11.0.0.1 returns the same
Do you have any idea ? Is it something related to iptables, where I should do something, but really don't know what :)
I looked at the example, but couldn't understand what it was for.
By the way, great work :)