connect to openvpn usando nome de usuário e senha

7

É possível se conectar a um servidor openvpn usando um nome de usuário e senha. Eu li que você precisa de um arquivo de configuração no Ubuntu, mas eu não tenho um arquivo de configuração.

Como posso me conectar ao meu servidor openvpn usando credenciais?

    
por Jerodev 27.09.2012 / 13:46

1 resposta

11

Sim, é possível. Para fazer isso, você já tem um servidor OpenVPN instalado e o usuário criou no servidor.

O cliente openvpn mais fácil é o gerenciador de rede. Se você estiver usando o Ubuntu, execute:

aptitude install network-manager-openvpn
restart network-manager

Agora clique no miniaplicativo gerenciador de rede, selecione configurar VPN e configure uma nova conexão open-vpn. Definir o gateway para o seu servidor Definir o tipo para senha Aponte sua CA para uma cópia do ca.crt do seu servidor e tudo deve funcionar

Anexado é um simples arquivo de configuração do cliente que funcionará. Edite-o para corresponder às configurações do seu servidor quando apropriado. Você precisará disso e do seu ca.crt no mesmo diretório.

No linux meu arquivo é chamado /etc/openvpn/client.conf

##############################################
# Sample client-side OpenVPN 2.0 config file.
# for connecting to multi-client server. 
##############################################

# Specify that we are a client and that we
# will be pulling certain config file directives
# from the server.
client

dev tun
proto udp

# The hostname/IP and port of the server.
remote my-server-2.domain 1194


# host name of the OpenVPN server.  Very useful
# on machines which are not permanently connected
# to the internet such as laptops.
resolv-retry infinite

# Most clients don't need to bind to
# a specific local port number.
nobind

# Try to preserve some state across restarts.
persist-key
persist-tun

# Certificate Authority
ca ca.crt

# Username/Password authentication is used on the server
auth-user-pass

# Verify server certificate by checking
# that the certicate has the nsCertType
# field set to "server".  This is an
# important precaution to protect against
# a potential attack discussed here:
#  http://openvpn.net/howto.html#mitm
#
# To use this feature, you will need to generate
# your server certificates with the nsCertType
# field set to "server".  The build-key-server
# script in the easy-rsa folder will do this.
ns-cert-type server

# Set log file verbosity.
verb 3

# To start the openvpn client, simply type:
# openvpn --config /etc/openvpn/client.conf

É isso.

    
por Octávio Filipe Gonçalves 27.09.2012 / 14:51