diff options
author | Dante Catalfamo | 2020-07-14 00:34:47 -0400 |
---|---|---|
committer | Dante Catalfamo | 2020-07-14 00:34:47 -0400 |
commit | d95ceb70de0a102983877eccd90777b015777ee2 (patch) | |
tree | 2ad070ad3b7e3f103ddf170576fe8e18b2e35494 /content/posts/openbsd-vpn-gateway/index.org | |
parent | fdde575593390d3797143f51acff2982208cbe02 (diff) | |
download | blog-d95ceb70de0a102983877eccd90777b015777ee2.tar.gz blog-d95ceb70de0a102983877eccd90777b015777ee2.tar.bz2 blog-d95ceb70de0a102983877eccd90777b015777ee2.zip |
Move openvpn-issues-openbsd-6.7 to remove numbers at end
They were causing issues with hugo's ref system
Diffstat (limited to 'content/posts/openbsd-vpn-gateway/index.org')
-rw-r--r-- | content/posts/openbsd-vpn-gateway/index.org | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/content/posts/openbsd-vpn-gateway/index.org b/content/posts/openbsd-vpn-gateway/index.org index 7add08d..2f6e784 100644 --- a/content/posts/openbsd-vpn-gateway/index.org +++ b/content/posts/openbsd-vpn-gateway/index.org @@ -93,3 +93,18 @@ Now if you check =ifconfig=, you should see the interface has the correct IP. + +* Configuring OpenVPN + + First we have to install [[https://openvpn.net/][OpenVPN]], which is provided by the OpenBSD + package manager. Normally we would install the =openvpn= package, + but due to an [[{{< ref "openvpn-issues-openbsd" >}}][issue with libressl]], we'll be installing the =mbedtls= + version. This problem should hopefully be resolved soon, so we'll + likely be able to use regular =openvpn= in the future. + + #+BEGIN_SRC shell + doas pkg_add openvpn--mbedtls + #+END_SRC + + Note: The =--mbedtls= is required to get the =mbedtls= flavour of + the =openvpn= package. |