Konfigurasi openvpn server di Linux Debian
Konfigurasi openvpn server di Linux Debian dapat mengikuti langkah beriku: # apt update && apt install openvpn # sed -i 's/#AUTOSTART="all"/AUTOSTART="all"/' /etc/default/openvpn # cd /etc/openvpn/ # /usr/share/easy-rsa/easyrsa init-pki # cp -a /usr/share/easy-rsa/vars.example /etc/openvpn/pki/vars # vi /etc/openvpn/pki/vars # In how many days should the root CA key expire? set_var EASYRSA_CA_EXPIRE 3650 # In how many days should certificates expire? set_var EASYRSA_CERT_EXPIRE 1825 # How many days until the Certificate Revokation List will expire. # # IMPORTANT: When the CRL expires, an OpenVPN Server which uses a # CRL will reject ALL new connections, until the CRL is replaced. # set_var EASYRSA_CRL_DAYS 1095 # Choose a size in bits for your keypairs. The recommended value is 2048. # Using 2048-bit keys is considered more than sufficient for many years into # the future. Larger keysizes will slow down TLS negotiation and make k...