From db0bfb5b601c917b045ad80804bfed84da6d838e Mon Sep 17 00:00:00 2001 From: Hannes Mehnert Date: Mon, 17 Jun 2024 16:17:13 +0200 Subject: [PATCH] add miragevpn server article --- articles/miragevpn-server.md | 40 ++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 articles/miragevpn-server.md diff --git a/articles/miragevpn-server.md b/articles/miragevpn-server.md new file mode 100644 index 0000000..aba438b --- /dev/null +++ b/articles/miragevpn-server.md @@ -0,0 +1,40 @@ +--- +date: 2024-06-17 +article.title: MirageVPN server +article.description: + Announcment of our MirageVPN server. +tags: + - OCaml + - MirageOS + - cryptography + - security + - VPN +author: + name: Hannes Mehnert + email: hannes@mehnert.org + link: https://hannes.robur.coop +coauthors: + - author: + name: Reynir Björnsson + email: reynir@reynir.dk + link: https://reyn.ir/ + contribution: What is this field used for? +--- + +It is a great pleasure to finally announce that we have finished a server implementation for MirageVPN (OpenVPN™-compatible). This allows to setup a very robust VPN network on both the client and the server side. + +As announced last year, [MirageVPN](https://blog.robur.coop/articles/miragevpn.html) is a reimplemtation of OpenVPN™ in OCaml, with [MirageOS](https://mirage.io) unikernels. + +## Why a MirageVPN server? + +Providing Internet services with programming languages that have not much safety requires a lot of discipline by the developers to avoid issues which may lead to exploitable services that are attacked (and thus will circumvent any security goals). Especially services that are critical for security and privacy, it is crucial to avoid common memory safety pitfalls. + +Some years back, when we worked on the client implementation, we also drafted a server implementation. The reasoning was that a lot of the code was already there, and just a few things needed to be developed to allow clients to connect there. + +Now, we spend several months to push our server implementation into a state where it is usable and we are happy for everyone who wants to test it. We also adapted the modern ciphers we recently implemented for the client, and also tls-crypt and tls-crypt-v2 for the server implementation. + +The overall progress was tracked in [this issue](https://github.com/robur-coop/miragevpn/issues/15). We developed, next to the MirageOS unikernel, also a test server that doesn't use any tun interface. + +Please move along to our handbook with the [chapter on MirageVPN server](https://robur-coop.github.io/miragevpn-handbook/miragevpn_server.html). + +If you encounter any issues, please open an issue at [the repository](https://github.com/robur-coop/miragevpn). \ No newline at end of file