i am facing the problem that after the connection is established, i can ping another VPN peer from my router (WRT54GS) but i can not ping another VPN peer (VPN 10.0.0.1) from any of machines behind the router, as well as another VPN peer can not ping my router (VPN 10.0.0.2) where openvpn is running.
i disabled firewall for one second and then another VPN peer could ping my router but none of my internal machines could ping another VPN peer (10.0.0.1). pinging 10.0.0.2 is OK.
configuration:
another peer's openvpn.conf:
port 5678
proto udp
dev tun
secret key.txt
ifconfig 10.0.0.1 10.0.0.2
comp-lzo
my openvpn.conf:
remote xxx.no-ip.info 5678
dev tun
proto udp
ifconfig 10.0.0.2 10.0.0.1
secret key.txt
comp-lzo
route-up "route add -net 10.0.0.0 netmask 255.255.255.255 gw 10.0.1.2"
my internal network is 192.168.1.0/24 and all machines are DHCPd and having as default gateway internal network IP of WRT54GS (thus 10.0.0.2 pinging is OK).
another peer has no firewall - only port (udp 5678) forwarding to the server is configured on his router (not linksys).
i want to access from my internal machine only *one* port on the another VPN peer (10.0.0.1) and nothing more.
thank you very much in advance!