我有 openVPN,否则虚拟机运行良好。它可以连接到互联网,运行本地主机,以及各种各样的东西。不过我需要通过它访问VPN。我有我的 ovpn 文件和我的用户名/密码。但是,运行 openvpn --config [ovpn 文件的名称],然后输入我的用户名和密码后,我收到此错误消息:
Sat May 13 09:59:18 2017 OPTIONS IMPORT: --ifconfig/up options modified
Sat May 13 09:59:18 2017 OPTIONS IMPORT: route options modified
Sat May 13 09:59:18 2017 OPTIONS IMPORT: route-related options modified
Sat May 13 09:59:18 2017 ROUTE_GATEWAY 192.168.0.1/255.255.255.0 IFACE=enp0s3 HWADDR=08:00:27:89:26:b8
Sat May 13 09:59:18 2017 ERROR: Cannot open TUN/TAP dev Ethernet 2: No such file or directory (errno=2)
Sat May 13 09:59:18 2017 Exiting due to fatal error
我的问题是:这个错误消息是什么意思,我该如何解决?以下是我的 ovpn 文件:
remote **.**.**.****
resolv-retry infinite
explicit-exit-notify
nobind
ca ca.crt
cert **.crt
key **.key
tls-auth ta.key 1
cipher AES-128-CBC
ns-cert-type server
verb 3
comp-lzo
auth-user-pass
auth-retry interact
dev-node "Ethernet 2"
答案1
只需将行替换为
dev-node "Ethernet 2"
在 opvn 文件中
dev tun
说明:dev-node
给出显式路径,但 OpenVPN 应该能够为您的系统找出正确的路径。它只需要知道是创建tun
还是tap
设备,为此,该dev
选项就足够了。编号也应该自动发生。