无法为双接口主机创建 openvpn 隧道

无法为双接口主机创建 openvpn 隧道

我是 openvpn 新手。我尝试在两台主机之间创建 openvpn 隧道。两台主机都有两个接口。比如 eth0 和 eth1。所以我创建了两个配置文件,server.conf、server1.conf。在客户端,创建了 client.conf 和 client1.conf。

客户端主机接口详细信息,eth0:192.168.14.110 eth1:192.168.14.111

服务器主机接口详细信息,eth0:192.168.14.190 eth1:192.168.14.191

我尝试了 tun 和 tap 机制。但是 openvpn 连接未建立。我尝试了 openvpn 教程和 ubuntu 教程。

我的示例 server.conf 文件是,

mode server
tls-server
port 1194
proto udp
#dev tun0
dev tap0

ca ca.crt
cert server.crt
key server.key  # This file should be kept secret
dh dh1024.pem
tls-auth ta.key 0 # This file is secret


server-bridge 192.168.14.190 255.255.0.0 192.168.14.210 192.168.14.215
push "route 192.168.14.190 255.255.0.0"
push "redirect-gateway def1 bypass-dhcp"
client-to-client
duplicate-cn

keepalive 10 120

cipher BF-CBC
comp-lzo

max-clients 10
keepalive 10 120

persist-key
persist-tun
status openvpn-status.log

verb 3

;mute 20

在 client.conf 中,

dev tap0
port 1194
client
remote 192.168.14.190 1194

# allow script execution
script-security 2

# routing information
redirect-private bypass-dhcp bypass-dns


ca       ca.crt
cert     client1.crt
key      client1.key
tls-auth ta.key 1
verify-x509-name server name

comp-lzo
keepalive 10 60
persist-key
persist-tun

但是,无法运行 vpn 隧道,甚至无法创建。

已建立即时连接,但无法 ping 通。

我也做了 IP 转发。我的最终错误是什么,请帮我解决。谢谢,kumar raj

相关内容