< OpenVPN

OpenVPN/Checklist guide

This article summarizes the install process required for OpenVPN. See OpenVPN instead for a walkthrough.

Install

Install the packages openvpn and easy-rsa.

Prepare data

# easyrsa clean-all

Generate the certificates

  • Create a seed for the CA creation
# dd if=/dev/urandom of=pki/.rnd bs=256 count=1
  • Create the "certificate authority" key
# easyrsa build-ca nopass
  • Create certificate and private key for the server
# easyrsa build-server-full ''<server-name>'' nopass
  • Create the Diffie-Hellman pem file for the server.
# easyrsa gen-dh
  • Create a certificate for each client.
# easyrsa build-client-full ''<client-name>'' nopass

All certificates are stored in directory. If you mess up, you can start all over by doing a

Copy to each client the , and their respective crt and key files.

Setting up the server

  • Create with a content like this:
/etc/openvpn/server/myvpnserver.conf
port ''<port>''
proto tcp
dev tun0

ca /etc/openvpn/easy-rsa/pki/ca.crt
cert /etc/openvpn/easy-rsa/pki/issued/''<server-name>''.crt
key /etc/openvpn/easy-rsa/pki/private/''<server-name>''.key
dh /etc/openvpn/easy-rsa/pki/''<your pem file>''

server ''<desired base ip>'' 255.255.255.0
ifconfig-pool-persist ipp.txt
keepalive 10 120
comp-lzo
user nobody
group nobody
persist-key
persist-tun
status /var/log/openvpn-status.log
verb 3

log-append /var/log/openvpn
status /tmp/vpn.status 10
  • Start and, optionally, enable for autostart on boot, the daemon. (In this example, is )

Read Daemon for more information.

Setting up the clients

  • Create a .conf file for each client like this:
  • Start the connection with

Optionally, enable for autostart on boot the daemon. (In this example, is )

Read Daemon for more information.

Troubleshooting

If the openvpn server can be started manually as root but not using systemd, you can try fixing the permissions:

# chown -R openvpn:network /etc/openvpn/*
This article is issued from Archlinux. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.