I hope that you can help me with my problem. I have configured an OpenVPN Server. Clients can connect and I can ping the clients from the virtual machine where the server is. But I want the clients to ping each other and for example see which devices are connected in the other clients network.
I have stumbled upon this post here How to allow communications with client to client on OpenVPN Server? but the solution with the firewall rules did not work.
My OpenVPN server configuration looks like this:
port 1194
proto udp
dev tun
ca ../easy-rsa/pki/ca.crt
cert ../easy-rsa/pki/issued/server.crt
key ../easy-rsa/pki/private/server.key
dh ../easy-rsa/pki/dh.pem
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
client-config-dir ccd
client-to-client
keepalive 10 120
cipher AES-256-CBC
persist-key
persist-tun
status openvpn-status.log
verb 3
explicit-exit-notify 1
mode server
tls-auth ta.key 0
key-direction 0
auth SHA256
tls-server
comp-lzo
#client1
route 10.8.3.0 255.255.255.0
#client2
route 10.8.4.0 255.255.255.0
I am open for suggestions - thanks in advance!