使用用户名和密码连接到 openvpn

使用用户名和密码连接到 openvpn

是否可以使用用户名和密码连接到 openvpn 服务器。我读到您需要 ubuntu 上的配置文件,但我没有配置文件。

如何使用凭证连接到我的 openvpn 服务器?

答案1

是的,这是可能的。要做到这一点,您已经安装了 OpenVPN 服务器,并在服务器中创建了用户。

最简单的 openvpn 客户端是 network-manager。如果你使用 Ubuntu,请运行:

aptitude install network-manager-openvpn
restart network-manager

现在点击网络管理器小程序,选择配置 VPN,并设置新的开放 VPN 连接。将网关设置为您的服务器,将类型设置为密码,将您的 CA 指向服务器的 ca.crt 副本,一切应该都能正常工作

附件是一个简单的客户端配置文件,可以正常工作。根据需要编辑它以匹配您的服务器设置。您需要将此文件和您的 ca.crt 放在同一目录中。

在 Linux 上,我的文件名为 /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

就是这样。

答案2

在服务器端你需要如下一行:

plugin /usr/lib/openvpn/openvpn-plugin-auth-pam.so openvpn

以上将启用 pam 插件并使其使用 /etc/pam.d/openvpn 文件作为配置(注意:默认情况下文件不存在,您可以使用“login”代替它来验证 unix 凭据或使用您选择的身份验证方法设置 openvpn(即:google 身份验证器))

如上所述,在客户端,您应该使用auth-user-passopenvpn 配置文件,或者如果您使用网络管理器,请在身份选项卡上选择“带有证书的密码”(用户 + 密码 + 基于证书的身份验证)或简单的“密码”选项(用户 + 基于密码的身份验证)。

相关内容