I have setup a OpenVPN server on my openwrt router.
This servers is used to access my home network remotly.
Unfortunately, Windows client cannot access the server LAN network.
Subnets:
- Server LAN: 10.0.0.0/24
- Openvpn Server: 10.0.8.0/24
- Clients LAN: 192.168.178.0/24
Connection to the server works perfect on Android device.
Server config:
Server
user nobody
group nogroup
dev tun
port 1194
proto udp
server 10.0.8.0 255.255.255.0
topology subnet
client-to-client
keepalive 10 60
persist-tun
persist-key
push "route 10.0.0.0 255.255.255.0"
push "dhcp-option DNS 10.0.8.1"
push "dhcp-option DOMAIN lan"
push "persist-tun"
push "persist-key"
<dh>
</dh>
<tls-crypt-v2>
</tls-crypt-v2>
<key>
</key>
<cert>
</cert>
<ca>
</ca>
group nogroup
dev tun
port 1194
proto udp
server 10.0.8.0 255.255.255.0
topology subnet
client-to-client
keepalive 10 60
persist-tun
persist-key
push "route 10.0.0.0 255.255.255.0"
push "dhcp-option DNS 10.0.8.1"
push "dhcp-option DOMAIN lan"
push "persist-tun"
push "persist-key"
<dh>
</dh>
<tls-crypt-v2>
</tls-crypt-v2>
<key>
</key>
<cert>
</cert>
<ca>
</ca>
Client config
Client
dev tun
dev-node home
nobind
client
remote xxxxxxx.ddns.net xxxx udp
auth-nocache
remote-cert-tls server
<tls-crypt-v2>
</tls-crypt-v2>
<key>
</key>
<cert>
</cert>
<ca>
</ca>
dev-node home
nobind
client
remote xxxxxxx.ddns.net xxxx udp
auth-nocache
remote-cert-tls server
<tls-crypt-v2>
</tls-crypt-v2>
<key>
</key>
<cert>
</cert>
<ca>
</ca>
Has anyone an idea about what is going wrong here?
Thanks a lot!