Hey could you post how you setup your router. I have the same one with DD-wrt V23 SP2 VPN firmware installed. I would like to get the vpn working with the N800.
openvpn --mktun --dev tap0 brctl addif br0 tap0 ifconfig tap0 0.0.0.0 promisc up echo "-----BEGIN CERTIFICATE----- .................... -----END CERTIFICATE-----" > /tmp/server.crt echo "-----BEGIN RSA PRIVATE KEY----- .................... -----END RSA PRIVATE KEY-----" > /tmp/server.key echo "-----BEGIN CERTIFICATE----- .................... -----END CERTIFICATE-----" > /tmp/CA.crt echo "-----BEGIN DH PARAMETERS----- .................... -----END DH PARAMETERS-----" > /tmp/dh2048.pem echo "server-bridge 172.31.1.1 255.255.255.0 172.31.1.21 172.31.1.29 port 1194 dev tap0 client-to-client push \"ping 30\" push \"ping-restart 130\" push \"mute 20\" push \"persist-key\" push \"persist-tun\" dh /tmp/dh2048.pem ca /tmp/CA.crt cert /tmp/server.crt key /tmp/server.key verb 3 keepalive 30 130 float mute 10 comp-lzo persist-key persist-tun" > /tmp/openvpn.conf ln -s /usr/sbin/openvpn /tmp/myvpn /tmp/myvpn --config /tmp/openvpn.conf &
iptables -I INPUT 1 -p udp --dport 1194 -j ACCEPT
remote (your public IP or domain name here) ns-cert-type server client dev tap ca /etc/openvpn/CA.crt cert /etc/openvpn/n800.crt key /etc/openvpn/n800.key float log /var/log/openvpn.log status /var/log/openvpn-status.log comp-lzo route-gateway 172.31.1.1 redirect-gateway def1 # (this is optional and is used when you want all your traffic to go through the VPN.)