Two-way traffic on private 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
agent69
OpenVpn Newbie
Posts: 1
Joined: Wed Jun 07, 2023 8:17 pm

Two-way traffic on private network

Post by agent69 » Wed Jun 07, 2023 9:10 pm

I have setup a VPN server on Ubuntu. I am able to connect from local client to the VPN server and I'm able to ping the private IP of the server not the VPN IP just fine. My issue is that I can't ping the client private IP address from the VPN server. What could be the cause?

Server config file:

local 172.3.1.19
port 443
proto udp
dev tun
topology subnet
server 10.8.0.0 255.255.255.0
route 192.168.2.0 255.255.255.0
push "route 192.168.2.0 255.255.255.0"
push "redirect-gateway def1 bypass-dhcp"
ifconfig-pool-persist ipp.txt
push "dhcp-option DNS 172.3.0.2"
push "block-outside-dns"
client-to-client
keepalive 10 120
cipher AES-256-CBC
user nobody
group nogroup
persist-key
persist-tun
verb 3
explicit-exit-notify
client-config-dir /etc/openvpn/ccd

Any help would be much appreciated.

Post Reply