Openvpn - Instalar un servidor OpenVPN en Fedora Linux 20-22 y configurar clientes
OpenVPN Para mas informacion, ver https://community.openvpn.net/ . Security note The configuration snippets here will produce a working server and client config. But take certain precautions if you want to use this approach in a production environment. Important things to avoid are: Do not store the easy-rsa CA files on the OpenVPN server. The server only needs ca.crt, server.crt, server.key and dh*.pem files The client only needs ca.crt, client.crt and client.key Avoid creating the encryption keys in a virtualized environment, as the random entropy may not be random enough to guarantee safe keys. Working with systemd With the transition to systemd , OpenVPN no longer has a single monolithic init script, where every connection with a configuration file in /etc/openvpn/ is started automatically. Instead, individual connections can be started and stopped with systemctl . For example, to start a connection, run systemctl start openvpn...