VPN 流量不通过 tun0

VPN 流量不通过 tun0

下午好!

我正在尝试使用 openVpn 在 Ubuntu 中配置 VPN 服务器。我已经配置了 server.conf 文件和 client.conf 文件(我的一个 vpn 客户端是 Windows 虚拟机,另一个是 Ubuntu VM)。这些是我的配置:

服务器配置文件

port 1194
proto udp
dev tun
ca ca.crt
cert grupo04vpn.crt
key grupo04vpn.key  # This file should be kept secret
dh dh2048.pem
server 10.0.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
push "route 172.17.20.0 255.255.255.0"
push "redirect-gateway def1 bypass-dhcp"
push "dhcp-option DNS 172.17.20.4"
client-to-client
keepalive 10 120
comp-lzo
max-clients 100
persist-key
persist-tun
status openvpn-status.log
verb 5

客户端配置文件

client
dev tun
proto udp
remote 172.17.20.6 1194
resolv-retry infinite
nobind
persist-key
persist-tun
ca ca.crt
cert client.crt
key client.key
ns-cert-type server
comp-lzo
verb 3

我可以从 VPN 客户端 ping 10.0.0.1(即服务器的 IP),也可以从 VPN 服务器 ping 10.0.0.10(即客户端的 IP)。但是,当我从 IPTRAF 检查 tun0 接口时,我发现没有流量通过 tun0,只有通过 eth0。在这里,您可以看到当我 ping 10.0.0.1 时从 iptraf 获得的屏幕截图

eth0: eth0 iptraf

这是我的网络 拓扑

如您所见,所有流量都通过 eth0 接口,我猜应该通过 tun0。我非常感谢任何帮助,使流量按应有的方式通过隧道。

谢谢。

更新:这是 netstat -rn 的输出

Destination   Gateway       Genmask        Flags   MSS Window  irtt Iface
0.0.0.0       10.0.0.5      128.0.0.0       UG       0 0          0 tun0
0.0.0.0       172.16.10.1   0.0.0.0         UG       0 0          0 eth0
10.0.0.0      10.0.0.5      255.255.255.0   UG       0 0          0 tun0
10.0.0.5      0.0.0.0       255.255.255.255 UH       0 0          0 tun0
128.0.0.0     10.0.0.5      128.0.0.0       UG       0 0          0 tun0
169.254.0.0   0.0.0.0       255.255.0.0      U       0 0          0 eth0
172.16.10.0   0.0.0.0       255.255.255.0    U       0 0          0 eth0
172.17.20.0   10.0.0.5      255.255.255.0   UG       0 0          0 tun0
172.17.20.6   172.16.10.1   255.255.255.255 UGH      0 0          0 eth0

相关内容