Saltar al contenido

conectarse a openvpn usando nombre de usuario y contraseña

No busques más por todo internet ya que estás al lugar justo, poseemos la respuesta que quieres encontrar y sin problema.

Solución:

Si es posible. Para hacer esto, ya tiene instalado un servidor OpenVPN y el usuario creado en el servidor.

El cliente openvpn más fácil es el administrador de red. Si está utilizando Ubuntu, ejecute:

aptitude install network-manager-openvpn
restart network-manager

Ahora haga clic en el applet del administrador de red, seleccione configurar VPN y configure una nueva conexión de VPN abierta. Establezca la puerta de enlace a su servidor Establezca el tipo en Contraseña Dirija su CA a una copia del ca.crt de su servidor y todo debería funcionar

Se adjunta un archivo de configuración de cliente simple que funcionará. Edítelo para que coincida con la configuración de su servidor cuando corresponda. Necesitará esto y su ca.crt en el mismo directorio.

En Linux, mi archivo se llama /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

Eso es todo.

Valoraciones y comentarios

Recuerda algo, que tienes la capacidad de esclarecer tu experiencia .

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *