File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -49,9 +49,21 @@ a corresponding [Digital Ocean Community Tutorial](http://bit.ly/1AGUZkq).
49
49
50
50
docker run --volumes-from $OVPN_DATA --rm kylemanna/openvpn ovpn_getclient CLIENTNAME > CLIENTNAME.ovpn
51
51
52
+ ## Debugging Tips
53
+
52
54
* Create an environment variable with the name DEBUG and value of 1 to enable debug output (using "docker -e").
53
55
54
- docker run --volumes-from $OVPN_DATA -d -p 1194:1194/udp --privileged -e DEBUG=1 kylemanna/openvpn
56
+ docker run --volumes-from $OVPN_DATA -p 1194:1194/udp --privileged -e DEBUG=1 kylemanna/openvpn
57
+
58
+ * Test using a client that has openvpn installed correctly
59
+
60
+ $ openvpn --config CLIENTNAME.ovpn
61
+
62
+ * Run through a barrage of debugging checks on the client if things don't just work
63
+
64
+ $ ping 8.8.8.8 # checks connectivity without touching name resolution
65
+ $ dig google.com # won't use the search directives in resolv.conf
66
+ $ nslookup google.com # will use search
55
67
56
68
## How Does It Work?
57
69
You can’t perform that action at this time.
0 commit comments