На сервере три интерфейса
eth0 - смотрит в интернет
tun0 - Openvpn туннель 10.10.10.0/24
ppp0 - l2tp туннель 10.10.11.2-10.10.11.16
iptables -n -L -v --line-numbers
Chain INPUT (policy ACCEPT 14 packets, 1777 bytes)
num pkts bytes target prot opt in out source destination
Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
num pkts bytes target prot opt in out source destination
Chain OUTPUT (policy ACCEPT 14 packets, 1620 bytes)
num pkts bytes target prot opt in out source destination
Клиенты из обоих туннелей без проблемы выходят в интернет через eth0. С сервера также пингуются клиенты из OpenVPN L2TP туннелей.
netstat -rn
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
0.0.0.0 55.83.62.1 0.0.0.0 UG 0 0 0 eth0
55.83.62.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
10.10.10.0 0.0.0.0 255.255.255.0 U 0 0 0 tun0
10.10.11.2 0.0.0.0 255.255.255.255 UH 0 0 0 ppp0
Но друг друга клиенты из OpenVPN и L2TP сетей не видят. В чем может быть проблема?