OpenVPN 和路由

OpenVPN 和路由

我无法路由我的 openvpn 设置

我的中央 Openvpn 服务器位于互联网 (VPS) 中。他使用 10.1.0.1 作为 vpn ip

我的家庭局域网 (10.0.0.0/255.255.255.0) 在 10.0.0.11 上有一个客户端,并以 10.1.0.2 作为 vpn。静态路由通过家庭网络中的 dhcp 设置

主页 --> VPS 运行完美

但我没有让 VPS->Home 工作

ping from 10.1.0.1 to 10.1.0.2 works
ping from 10.1.0.1 to 10.0.0.11 NOT works
ping from 10.1.0.1 to 10.0.0.xx NOT works
ping from 10.0.0.xx to 10.1.0.1 works

$ip route get 10.0.0.10
10.0.0.10 via 10.1.0.2 dev tun0 src 10.1.0.1
  cache

本地客户端已启用 IP 转发

root@local:~# route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         gateway         0.0.0.0         UG    0      0        0 eth0
10.0.0.0        0.0.0.0         255.255.255.0   U     0      0        0 eth0
10.1.0.0        0.0.0.0         255.255.255.0   U     0      0        0 tun0


root@on:~# route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         gateway         0.0.0.0         UG    0      0        0 eth0
10.0.0.0        10.1.0.2        255.255.255.0   UG    0      0        0 tun0
10.1.0.0        0.0.0.0         255.255.255.0   U     0      0        0 tun0
XX.yy.168.0     0.0.0.0         255.255.252.0   U     0      0        0 eth0

我错过了什么?

相关内容