diff options
author | Austin Adams <git@austinjadams.com> | 2015-09-12 12:11:32 -0400 |
---|---|---|
committer | Austin Adams <git@austinjadams.com> | 2015-09-12 12:11:32 -0400 |
commit | 3439fce5f745bd0ea4fe41747afe8c6010e108c6 (patch) | |
tree | 98da8468834b6fddd625bad1cd88ef32a6171bef | |
parent | df5335060d2623ec1e54bdc42bfe4f36f1071d0a (diff) | |
download | nsdo-3439fce5f745bd0ea4fe41747afe8c6010e108c6.tar.gz nsdo-3439fce5f745bd0ea4fe41747afe8c6010e108c6.tar.xz |
vpn-ns doesn't create namespaces, so fix guide
-rw-r--r-- | openvpn-example.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openvpn-example.md b/openvpn-example.md index 9879ed8..968cf57 100644 --- a/openvpn-example.md +++ b/openvpn-example.md @@ -62,9 +62,9 @@ from my [openvpn configuration file][4]: script-security 2 Using [Sebastian's script][1] as a basis, I hacked together the -following. Notice that it uses iproute2 to create a network namespace -with the name of the instance's configuration file (`foo` in the earlier -example). +following. Notice that it guesses the name of the network namespace +based on the name of the instance's configuration file (e.g., +`/etc/openvpn/foo.conf`→`foo`). #!/bin/bash # based heavily on http://naju.se/articles/openvpn-netns |