The client (outside the local network - obviously) successfully connects to the OpenVPN server running on the router, and is assigned an IP address of 192.168.0.150 (which is within the subnet, just outside the DHCP range of 100-149). A ping from the client to one of the computers on the local network times out. A ping from a local computer to the VPN client says Destination Unreachable.

I'm expecting when this issue is fixed, the icon for the client will appear in the local Network folder. It has worked in the past with the same model router, but I was unable to retrieve the settings before it died.

Client Config:

remote XXXXXXXXX.no-ip.biz 1194

client
dev tap0
proto udp
resolv-retry infinite
nobind
persist-key
persist-tun
float
comp-lzo

ca ca.crt
cert client1.crt
key client1.key

ns-cert-type server

Server Config:

mode server
port 1194
proto udp
dev tap
dh /tmp/openvpn/dh.pem
ca /tmp/openvpn/ca.crt
cert /tmp/openvpn/cert.pem
key /tmp/openvpn/key.pem
client-to-client

ifconfig-pool-persist /tmp/openvpn/ipp.txt
server-bridge 192.168.0.1 255.255.255.0 192.168.0.150 192.168.0.199
keepalive 10 120
comp-lzo
persist-key
persist-tun
status /tmp/openvpn/openvpn-status.log
verb 5

management localhost 5001

Router Startup:

openvpn --mktun --dev tap0
brctl addif br0 tap0
ifconfig tap0 0.0.0.0 promisc up

Router Firewall:

iptables -A INPUT -i tap0 -j ACCEPT 
iptables -I INPUT 1 -p udp --dport 1194 -j ACCEPT

Hopefully unrelated is the fact that I'm temporarily running the real local network off a different router and forwarding port 1194 to the new one with a single test machine (the aforementioned 'local computer' from which I send the ping) to prevent my attempts from knocking everyone else offline repeatedly. As I said, it does connect, all the lights turn green, and the remote client does get its local IP address, I just can't do anything with it.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.