View Categories

Installing OpenVPN Access Server

< 1 min read

This guide will help you install OpenVPN Access Server.

Ubuntu Server #

Installation:

$ apt update && apt -y install ca-certificates wget net-tools gnupg
$ wget -qO - https://as-repository.openvpn.net/as-repo-public.gpg | apt-key add -
$ echo "deb http://as-repository.openvpn.net/as/debian focal main">/etc/apt/sources.list.d/openvpn-as-repo.list
$ apt update && apt -y install openvpn-as

 

Debian Server #

Installation:

$ apt update && apt -y install ca-certificates wget net-tools gnupg
$ wget -qO - https://as-repository.openvpn.net/as-repo-public.gpg | apt-key add -
$ echo "deb http://as-repository.openvpn.net/as/debian buster main">/etc/apt/sources.list.d/openvpn-as-repo.list
$ apt update && apt -y install openvpn-as

 

CentOS Server #

Installation:

$ yum -y install https://as-repository.openvpn.net/as-repo-centos8.rpm
$ yum -y install openvpn-as

Please setup a new password for openvpn user:

$ passwd openvpn

After installation, you will get two URLs, one for ADMIN UI and one for USER UI.