Como se conectar com segurança ao openvpn?
A partir dos documentos do openvpn:
Executando o cliente OpenVPN com o arquivo de configuração do cliente baixado:
Usually, the easiest way to install an OpenVPN client is to use the --config argument to specify the location of the downloaded client config file:
openvpn --config client.ovpn
Você pode usar a opção --daemon
para executar o openvpn em background como um daemon de acordo com o openvpn manpages :
--daemon [progname]
Become a daemon after all initialization functions are completed. This option will cause all message and error output to be sent to the syslog file (such as /var/log/messages), except for the output of scripts and ifconfig commands, which will go to /dev/null unless otherwise redirected. The syslog redirection occurs immediately at the point that --daemon is parsed on the command line even though the daemonization point occurs later. If one of the --log options is present, it will supercede syslog redirection.
openvpn --config client.ovpn --daemon
Como desconectar com segurança o openvpn?
De acordo com a página de manual e o documentos oficiais openvpn aceita SIGINIT
e SIGTERM
sinais permitindo que openvn
saia com segurança.
SIGINT
, SIGTERM
Causes OpenVPN to exit gracefully.