From 9090784e2f1bcd817ff1ebcc43bc56e16bfb4080 Mon Sep 17 00:00:00 2001 From: David Luevano Alvarado Date: Tue, 13 Jun 2023 03:54:21 -0600 Subject: update vpn server entry with new title --- db/db_blog.psv | 2 +- live/blog/a/vpn_server_with_openvpn.html | 31 +++++++++++++++---------------- live/blog/index.html | 2 +- live/blog/rss.xml | 23 +++++++++++------------ live/blog/sitemap.xml | 2 +- live/blog/tag/@code.html | 2 +- live/blog/tag/@english.html | 2 +- live/blog/tag/@server.html | 2 +- live/blog/tag/@tools.html | 2 +- live/blog/tag/@tutorial.html | 2 +- src/blog/a/vpn_server_with_openvpn.md | 24 +++++++++++------------- 11 files changed, 45 insertions(+), 49 deletions(-) diff --git a/db/db_blog.psv b/db/db_blog.psv index 97dfc07..d28c257 100644 --- a/db/db_blog.psv +++ b/db/db_blog.psv @@ -9,7 +9,7 @@ a/acomodada_la_pagina_de_arte.md|1623006369.6071973|1683224355.424242|e1aceca92d a/xmpp_server_with_prosody.md|1623216270.0372887|1685764494.9077075|fe15449fc7093efd2157f88b78d4f1b4|code,english,server,tools,tutorial a/tenia_esto_descuidado.md|1626594710.918819|1683224450.4442203|801d9caadef53ea30c82c2e8ca5692e6|short,spanish,update a/hoy_toco_desarrollo_personaje.md|1627452655.5560262|1683377790.7414637|d1520b814b83470e61ec930f7aaaf0b2|rant,spanish,update -a/vpn_server_with_openvpn.md|1627810022.100739|1683275819.5970778|e9dfb0d4649057a300a88cdfb2ea3f88|code,english,server,tools,tutorial +a/vpn_server_with_openvpn.md|1627810022.100739|1686649823.035183|e7e394ccc9ea42af4581dcdd4050a1a4|code,english,server,tools,tutorial a/volviendo_a_usar_la_pagina.md|1651116062.9191298|1683224582.1841908|0ff1dcfe9edd9ed8f764d3fde061cf35|short,spanish,update a/devs_android_me_trozaron.md|1652608264.4901433|1652609027.0201497|41c897ac0c6e0bd66f67ddc8286f4413|rant,spanish,update a/password_manager_authenticator_setup.md|1652654434.4686146|1683172189.1237748|ee21642502116ac50d2ef437e69b306c|english,short,tools diff --git a/live/blog/a/vpn_server_with_openvpn.html b/live/blog/a/vpn_server_with_openvpn.html index 5d16d7d..8456352 100644 --- a/live/blog/a/vpn_server_with_openvpn.html +++ b/live/blog/a/vpn_server_with_openvpn.html @@ -6,8 +6,8 @@ -Create a VPN server with OpenVPN (IPv4) -- Luévano's Blog - +Set up a VPN server with OpenVPN -- Luévano's Blog + @@ -32,11 +32,11 @@ - + - + @@ -85,7 +85,7 @@ -

Create a VPN server with OpenVPN (IPv4)

+

Set up a VPN server with OpenVPN

I’ve been wanting to do this entry, but had no time to do it since I also have to set up the VPN service as well to make sure what I’m writing makes sense, today is the day.

Like with any other of my entries I based my setup on the Arch Wiki, this install script and this profile generator script.

@@ -107,12 +107,12 @@

Pretty simple:

Create PKI from scratch

PKI stands for Public Key Infrastructure and basically it’s required for certificates, private keys and more. This is supposed to work between two servers and one client: a server in charge of creating, signing and verifying the certificates, a server with the OpenVPN service running and the client making the request.

-

This is supposed to work something like: 1) a client wants to use the VPN service, so it creates a requests and sends it to the signing server, 2) this server checks the requests and signs the request, returning the certificates to both the VPN service and the client and 3) the client can now connect to the VPN service using the signed certificate which the OpenVPN server knows about. In a nutshell, I’m no expert.

-

… but, to be honest, all of this is a hassle and (in my case) I want something simple to use and manage. So I’m gonna do all on one server and then just give away the configuration file for the clients, effectively generating files that anyone can run and will work, meaning that you need to be careful who you give this files (it also comes with a revoking mechanism, so no worries).

+

In a nutshel, this is supposed to work something like: 1) a client wants to use the VPN service, so it creates a requests and sends it to the signing server, 2) this server checks the requests and signs the request, returning the certificates to both the VPN service and the client and 3) the client can now connect to the VPN service using the signed certificate which the OpenVPN server knows about.

+

That’s how the it should be st up… but, to be honest, all of this is a hassle and (in my case) I want something simple to use and manage. So I’m gonna do all on one server and then just give away the configuration file for the clients, effectively generating files that anyone can run and will work, meaning that you need to be careful who you give this files (it also comes with a revoking mechanism, so no worries).

This is done with Easy-RSA.

Install the easy-rsa package:

pacman -S easy-rsa
@@ -147,12 +147,11 @@ chmod o+rx pki/private/server.key
 chown nobody:nobody pki/crl.pem
 chmod o+r pki/crl.pem
 
-

Now, go to the openvpn directory and create the required files there:

+

Finally, go to the openvpn directory and create the required files there:

cd /etc/openvpn/server
 openssl dhparam -out dh.pem 2048
 openvpn --genkey secret ta.key
 
-

That’s it for the PKI stuff and general certificate configuration.

OpenVPN

OpenVPN is a robust and highly flexible VPN daemon, that’s pretty complete feature-wise.

Install the openvpn package:

@@ -303,8 +302,8 @@ systemctl enable openvpn-server@server.service

Where the server after @ is the name of your configuration, server.conf without the .conf in my case.

Create client configurations

-

You might notice that I didn’t specify how to actually connect to our server. For that we need to do a few more steps. We actually need a configuration file similar to the server.conf file that we created.

-

The real way of doing this would be to run similar steps as the ones with easy-rsa locally, send them to the server, sign them, and retrieve them. Nah, we’ll just create all configuration files on the server as I was mentioning earlier.

+

You might notice that I didn’t specify how to actually connect the VPN. For that we need a configuration file similar to the server.conf file that we created.

+

The real way of doing this would be to run similar steps as the ones with easy-rsa locally, send them to the server, sign them, and retrieve them. Fuck all that, we’ll just create all configuration files on the server as I was mentioning earlier.

Also, the client configuration file has to match the server one (to some degree), to make this easier you can create a client-common file in /etc/openvpn/server with the following content:

client
 dev tun
@@ -318,10 +317,10 @@ auth SHA512
 verb 3
 

Where you should make any changes necessary, depending on your configuration.

-

Now, we need a way to create and revoke new configuration files. For this I created a script, heavily based on one of the links I mentioned at the beginning, by the way. You can place these scripts anywhere you like, and you should take a look before running them because you’ll be running them as root.

+

Now, we need a way to create and revoke new configuration files. For this I created a script, heavily based on one of the links I mentioned at the beginning. You can place these scripts anywhere you like, and you should take a look before running them because you’ll be running them with elevated privileges (sudo).

In a nutshell, what it does is: generate a new client certificate keypair, update the CRL and create a new .ovpn configuration file that consists on the client-common data and all of the required certificates; or, revoke an existing client and refresh the CRL. The file is placed under ~/ovpn.

Create a new file with the following content (name it whatever you like) and don’t forget to make it executable (chmod +x vpn_script):

-
#!/bin/sh
+
#!/bin/sh
 # Client ovpn configuration creation and revoking.
 MODE=$1
 if [ ! "$MODE" = "new" -a ! "$MODE" = "rev" ]; then
@@ -375,7 +374,7 @@ chown nobody:nobody pki/crl.pem
 chmod o+r pki/crl.pem
 cd $CPWD
 
-

And the way to use is to run vpn_script new/rev client_name as sudo (when revoking, it doesn’t actually delete the .ovpn file in ~/ovpn). Again, this is a little script that I put together, so you should check it out, it may need tweaks (depending on your directory structure for easy-rsa).

+

And the way to use is to run bash vpn_script <mode> <client_name> where mode is new or rev (revoke) as sudo (when revoking, it doesn’t actually delete the .ovpn file in ~/ovpn). Again, this is a little script that I put together, so you should check it out, it may need tweaks (specially depending on your directory structure for easy-rsa).

Now, just get the .ovpn file generated, import it to OpenVPN in your client of preference and you should have a working VPN service.

Where the server after @ is the name of your configuration, server.conf without the .conf in my case.

Create client configurations

-

You might notice that I didn’t specify how to actually connect to our server. For that we need to do a few more steps. We actually need a configuration file similar to the server.conf file that we created.

-

The real way of doing this would be to run similar steps as the ones with easy-rsa locally, send them to the server, sign them, and retrieve them. Nah, we’ll just create all configuration files on the server as I was mentioning earlier.

+

You might notice that I didn’t specify how to actually connect the VPN. For that we need a configuration file similar to the server.conf file that we created.

+

The real way of doing this would be to run similar steps as the ones with easy-rsa locally, send them to the server, sign them, and retrieve them. Fuck all that, we’ll just create all configuration files on the server as I was mentioning earlier.

Also, the client configuration file has to match the server one (to some degree), to make this easier you can create a client-common file in /etc/openvpn/server with the following content:

client
 dev tun
@@ -2222,10 +2221,10 @@ auth SHA512
 verb 3
 

Where you should make any changes necessary, depending on your configuration.

-

Now, we need a way to create and revoke new configuration files. For this I created a script, heavily based on one of the links I mentioned at the beginning, by the way. You can place these scripts anywhere you like, and you should take a look before running them because you’ll be running them as root.

+

Now, we need a way to create and revoke new configuration files. For this I created a script, heavily based on one of the links I mentioned at the beginning. You can place these scripts anywhere you like, and you should take a look before running them because you’ll be running them with elevated privileges (sudo).

In a nutshell, what it does is: generate a new client certificate keypair, update the CRL and create a new .ovpn configuration file that consists on the client-common data and all of the required certificates; or, revoke an existing client and refresh the CRL. The file is placed under ~/ovpn.

Create a new file with the following content (name it whatever you like) and don’t forget to make it executable (chmod +x vpn_script):

-
#!/bin/sh
+
#!/bin/sh
 # Client ovpn configuration creation and revoking.
 MODE=$1
 if [ ! "$MODE" = "new" -a ! "$MODE" = "rev" ]; then
@@ -2279,7 +2278,7 @@ chown nobody:nobody pki/crl.pem
 chmod o+r pki/crl.pem
 cd $CPWD
 
-

And the way to use is to run vpn_script new/rev client_name as sudo (when revoking, it doesn’t actually delete the .ovpn file in ~/ovpn). Again, this is a little script that I put together, so you should check it out, it may need tweaks (depending on your directory structure for easy-rsa).

+

And the way to use is to run bash vpn_script <mode> <client_name> where mode is new or rev (revoke) as sudo (when revoking, it doesn’t actually delete the .ovpn file in ~/ovpn). Again, this is a little script that I put together, so you should check it out, it may need tweaks (specially depending on your directory structure for easy-rsa).

Now, just get the .ovpn file generated, import it to OpenVPN in your client of preference and you should have a working VPN service.

]]> diff --git a/live/blog/sitemap.xml b/live/blog/sitemap.xml index a30b52f..8e67dc2 100644 --- a/live/blog/sitemap.xml +++ b/live/blog/sitemap.xml @@ -125,7 +125,7 @@ https://blog.luevano.xyz/a/vpn_server_with_openvpn.html - 2023-05-05 + 2023-06-13 weekly 1.0 diff --git a/live/blog/tag/@code.html b/live/blog/tag/@code.html index 23080fa..56f95fd 100644 --- a/live/blog/tag/@code.html +++ b/live/blog/tag/@code.html @@ -80,7 +80,7 @@

2023

  • Jun 10 - Set up a manga server with Komga and mangal
  • 2021

    -
  • Aug 01 - Create a VPN server with OpenVPN (IPv4)
  • +
  • Aug 01 - Set up a VPN server with OpenVPN
  • Jun 09 - Set up an XMPP server with Prosody compatible with Conversations and Movim
  • Mar 21 - Set up a Git server and cgit front-end
  • Mar 21 - Set up a Mail server with Postfix, Dovecot, SpamAssassin and OpenDKIM
  • diff --git a/live/blog/tag/@english.html b/live/blog/tag/@english.html index 85df0b5..3b7f7c4 100644 --- a/live/blog/tag/@english.html +++ b/live/blog/tag/@english.html @@ -90,7 +90,7 @@
  • May 17 - Will start blogging about gamedev
  • May 15 - My setup for a password manager and MFA authenticator
  • 2021

    -
  • Aug 01 - Create a VPN server with OpenVPN (IPv4)
  • +
  • Aug 01 - Set up a VPN server with OpenVPN
  • Jun 09 - Set up an XMPP server with Prosody compatible with Conversations and Movim
  • May 28 - I'm using a new blogging system
  • Mar 21 - Set up a Git server and cgit front-end
  • diff --git a/live/blog/tag/@server.html b/live/blog/tag/@server.html index 1408e4b..c5f41c4 100644 --- a/live/blog/tag/@server.html +++ b/live/blog/tag/@server.html @@ -80,7 +80,7 @@

    2023

  • Jun 10 - Set up a manga server with Komga and mangal
  • 2021

    -
  • Aug 01 - Create a VPN server with OpenVPN (IPv4)
  • +
  • Aug 01 - Set up a VPN server with OpenVPN
  • Jun 09 - Set up an XMPP server with Prosody compatible with Conversations and Movim
  • Mar 21 - Set up a Git server and cgit front-end
  • Mar 21 - Set up a Mail server with Postfix, Dovecot, SpamAssassin and OpenDKIM
  • diff --git a/live/blog/tag/@tools.html b/live/blog/tag/@tools.html index b7900ae..26e5b05 100644 --- a/live/blog/tag/@tools.html +++ b/live/blog/tag/@tools.html @@ -85,7 +85,7 @@
  • Dec 20 - Rewrote pyssg again
  • May 15 - My setup for a password manager and MFA authenticator
  • 2021

    -
  • Aug 01 - Create a VPN server with OpenVPN (IPv4)
  • +
  • Aug 01 - Set up a VPN server with OpenVPN
  • Jun 09 - Set up an XMPP server with Prosody compatible with Conversations and Movim
  • May 28 - I'm using a new blogging system
  • Mar 21 - Set up a Git server and cgit front-end
  • diff --git a/live/blog/tag/@tutorial.html b/live/blog/tag/@tutorial.html index b7a65d1..7d8d4c7 100644 --- a/live/blog/tag/@tutorial.html +++ b/live/blog/tag/@tutorial.html @@ -80,7 +80,7 @@

    2023

  • Jun 10 - Set up a manga server with Komga and mangal
  • 2021

    -
  • Aug 01 - Create a VPN server with OpenVPN (IPv4)
  • +
  • Aug 01 - Set up a VPN server with OpenVPN
  • Jun 09 - Set up an XMPP server with Prosody compatible with Conversations and Movim
  • Mar 21 - Set up a Git server and cgit front-end
  • Mar 21 - Set up a Mail server with Postfix, Dovecot, SpamAssassin and OpenDKIM
  • diff --git a/src/blog/a/vpn_server_with_openvpn.md b/src/blog/a/vpn_server_with_openvpn.md index f36d845..ca2bcd0 100644 --- a/src/blog/a/vpn_server_with_openvpn.md +++ b/src/blog/a/vpn_server_with_openvpn.md @@ -1,7 +1,7 @@ -title: Create a VPN server with OpenVPN (IPv4) +title: Set up a VPN server with OpenVPN author: David Luévano lang: en -summary: How to create a VPN server using OpenVPN on a server running Nginx. Only for IPv4. +summary: How to set up a VPN server using OpenVPN on a server running Nginx, on Arch. Only for IPv4. tags: server tools code @@ -23,15 +23,15 @@ This will be installed and working alongside the other stuff I've wrote about on Pretty simple: - Working server with root access, and with `ufw` as the firewall. -- Depending on what port you want to run the VPN on, the default `1194`, or as a fallback on `443` (click [here](https://openvpn.net/vpn-server-resources/advanced-option-settings-on-the-command-line/) for more). I will do mine on port `1194` but it's just a matter of changing 2 lines of configuration and one `ufw` rule. +- Open port `1194` (default), or as a fallback on `443` (click [here](https://openvpn.net/vpn-server-resources/advanced-option-settings-on-the-command-line/) for more). I will do mine on port `1194` but it's just a matter of changing 2 lines of configuration and one `ufw` rule. # Create PKI from scratch PKI stands for *Public Key Infrastructure* and basically it's required for certificates, private keys and more. This is supposed to work between two servers and one client: a server in charge of creating, signing and verifying the certificates, a server with the OpenVPN service running and the client making the request. -This is supposed to work something like: 1) a client wants to use the VPN service, so it creates a requests and sends it to the signing server, 2) this server checks the requests and signs the request, returning the certificates to both the VPN service and the client and 3) the client can now connect to the VPN service using the signed certificate which the OpenVPN server knows about. In a nutshell, I'm no expert. +In a nutshel, this is supposed to work something like: 1) a client wants to use the VPN service, so it creates a requests and sends it to the signing server, 2) this server checks the requests and signs the request, returning the certificates to both the VPN service and the client and 3) the client can now connect to the VPN service using the signed certificate which the OpenVPN server knows about. -... but, to be honest, all of this is a hassle and (in my case) I want something simple to use and manage. So I'm gonna do all on one server and then just give away the configuration file for the clients, effectively generating files that anyone can run and will work, meaning that you need to be careful who you give this files (it also comes with a revoking mechanism, so no worries). +That's how the it should be st up... but, to be honest, all of this is a hassle and (in my case) I want something simple to use and manage. So I'm gonna do all on one server and then just give away the configuration file for the clients, effectively generating files that anyone can run and will work, meaning that you need to be careful who you give this files (it also comes with a revoking mechanism, so no worries). This is done with [Easy-RSA](https://wiki.archlinux.org/title/Easy-RSA). @@ -87,7 +87,7 @@ chown nobody:nobody pki/crl.pem chmod o+r pki/crl.pem ``` -Now, go to the `openvpn` directory and create the required files there: +Finally, go to the `openvpn` directory and create the required files there: ```sh cd /etc/openvpn/server @@ -95,8 +95,6 @@ openssl dhparam -out dh.pem 2048 openvpn --genkey secret ta.key ``` -That's it for the PKI stuff and general certificate configuration. - # OpenVPN [OpenVPN](https://wiki.archlinux.org/title/OpenVPN) is a robust and highly flexible VPN daemon, that's pretty complete feature-wise. @@ -281,9 +279,9 @@ Where the `server` after `@` is the name of your configuration, `server.conf` wi ## Create client configurations -You might notice that I didn't specify how to actually connect to our server. For that we need to do a few more steps. We actually need a configuration file similar to the `server.conf` file that we created. +You might notice that I didn't specify how to actually connect the VPN. For that we need a configuration file similar to the `server.conf` file that we created. -The real way of doing this would be to run similar steps as the ones with `easy-rsa` locally, send them to the server, sign them, and retrieve them. Nah, we'll just create all configuration files on the server as I was mentioning earlier. +The real way of doing this would be to run similar steps as the ones with `easy-rsa` locally, send them to the server, sign them, and retrieve them. Fuck all that, we'll just create all configuration files on the server as I was mentioning earlier. Also, the client configuration file has to match the server one (to some degree), to make this easier you can create a `client-common` file in `/etc/openvpn/server` with the following content: @@ -302,13 +300,13 @@ verb 3 Where you should make any changes necessary, depending on your configuration. -Now, we need a way to create and revoke new configuration files. For this I created a script, heavily based on one of the links I mentioned at the beginning, by the way. You can place these scripts anywhere you like, and you should take a look before running them because you'll be running them as root. +Now, we need a way to create and revoke new configuration files. For this I created a script, heavily based on one of the links I mentioned at the beginning. You can place these scripts anywhere you like, and you should take a look before running them because you'll be running them with elevated privileges (sudo). In a nutshell, what it does is: generate a new client certificate keypair, update the CRL and create a new `.ovpn` configuration file that consists on the `client-common` data and all of the required certificates; or, revoke an existing client and refresh the CRL. The file is placed under `~/ovpn`. Create a new file with the following content (name it whatever you like) and don't forget to make it executable (`chmod +x vpn_script`): -``` +```sh #!/bin/sh # Client ovpn configuration creation and revoking. MODE=$1 @@ -364,6 +362,6 @@ chmod o+r pki/crl.pem cd $CPWD ``` -And the way to use is to run `vpn_script new/rev client_name` as sudo (when revoking, it doesn't actually delete the `.ovpn` file in `~/ovpn`). Again, this is a little script that I put together, so you should check it out, it may need tweaks (depending on your directory structure for `easy-rsa`). +And the way to use is to run `bash vpn_script ` where `mode` is `new` or `rev` (revoke) as sudo (when revoking, it doesn't actually delete the `.ovpn` file in `~/ovpn`). Again, this is a little script that I put together, so you should check it out, it may need tweaks (specially depending on your directory structure for `easy-rsa`). Now, just get the `.ovpn` file generated, import it to OpenVPN in your client of preference and you should have a working VPN service. -- cgit v1.2.3-54-g00ecf