I'm trying to build one side-to-site VPN between my own and my parents home. I started using OpenVPN AS 2.8.7 and updated now up to 2.9.1. Most of the things are working fine. I don't want to use NAT. Only Routing. Every client/server should be able to see the correct origin IP. After my parents home connected automatically I'm able to communicate with the remote network (..178.0/24) without issues. But the opposite direction isn't working. They're not able to contact my network (..200.0/24 or ..201.0/24).
I found out, that one missing iptable (which should be generated automatically - or not?) seems to be the main problem.
The time I'm not able to communicate between Parents -> Me "iptables -L AS0_IN" give me:
Code: Select all
Chain AS0_IN (4 references)
target prot opt source destination
ACCEPT all -- anywhere 10.0.8.1
all -- 0.0.0.0 anywhere
all -- 0.0.0.0 anywhere
AS0_U_PARENTS_IN all -- 10.0.8.133 anywhere
all -- 0.0.0.0 anywhere
AS0_U_PARENTS_IN all -- 10.0.8.134 anywhere
AS0_U_PARENTS_IN all -- 10.0.8.132 anywhere
Code: Select all
Chain AS0_IN (4 references)
target prot opt source destination
ACCEPT all -- anywhere 10.0.8.1
all -- 0.0.0.0 anywhere
all -- 0.0.0.0 anywhere
AS0_U_PARENTS_IN all -- 10.0.8.133 anywhere
all -- 0.0.0.0 anywhere
AS0_U_PARENTS_IN all -- 10.0.8.134 anywhere
AS0_U_PARENTS_IN all -- 10.0.8.132 anywhere
AS0_U_PARENTS_IN all -- 192.168.178.0/24 anywhere

Thanks in advanced.
Chris