From fa23cd1f7414fe4ec49f44e7f814df7b6eb053de Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Wed, 22 May 2019 17:50:24 +0200 Subject: [PATCH] [DOC] add help to set configuration of service --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index 2b41a87..86337bd 100644 --- a/README.md +++ b/README.md @@ -113,3 +113,27 @@ Debugging Tips ```{.sh} docker-compose run -e DEBUG=1 -p 1194:1194/udp openvpn_service ``` + +Test on the client: +------------------- + +Run in root mode: +``` +openvpn --config $CLIENT_NAME.ovpn +``` + +you can test the connection with the server: +``` +ping ____LOCAL_IP_SERVER____ +``` + +On server test the Connectionwith the client: +``` +ping ____CLIENT_IP_SERVER____ +``` + +If needed add the routing rules on the server: +``` +ip route add 10.10.0.0/16 via 10.3.0.2 +``` +