OpenVPN server could not connect to my home network

Need help configuring your VPN? Just post here and you'll get that help.

Moderators: TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech

Forum rules
Please use the [oconf] BB tag for openvpn Configurations. See viewtopic.php?f=30&t=21589 for an example.
Post Reply
mdf890
OpenVpn Newbie
Posts: 1
Joined: Tue Jan 16, 2024 3:53 pm

OpenVPN server could not connect to my home network

Post by mdf890 » Tue Jan 16, 2024 4:00 pm

Hi, I have a linux server with openVPN, all is done and i can connect to my VPN, but after i connect to my vpn with my client, if i want to ping to my home router i got a timeout, and I don't have a internet connection to my client
example: ping 111.111.1.1

here is my server configuration ( the IP is example )

Code: Select all

port 8094
proto udp

ca /etc/openvpn/ca.crt
cert /etc/openvpn/cert.crt
key /etc/openvpn/cert.key  

dh /etc/openvpn/dh.pem
topology subnet

server 10.8.0.0 255.255.255.0
ifconfig-pool-persist /var/log/openvpn/ipp.txt
push "route 111.111.1.1 255.255.255.255"
push "route 111.111.1.122 255.255.255.255"
push "dhcp-option DNS 111.111.1.1"
push "dhcp-option DOMAIN mycustomdomain.com"

keepalive 10 120
auth SHA256
tls-cipher TLS-DHE-RSA-WITH-AES-256-CBC-SHA256
cipher AES-256-CBC
comp-lzo no
persist-key
persist-tun

status /var/log/openvpn/openvpn-status.log
log         /var/log/openvpn/openvpn.log
log-append  /var/log/openvpn/openvpn.log
verb 6
explicit-exit-notify 1

I don't know the reason
thanks a lot for help me

Post Reply