自定义openvpn客户端的路由
自定义openvpn客户端的路由
默认openvpn的客户端在连接服务端后,路由都是从服务器的指定接口走的。
但是如果不想这么做,想要部分目的地址从自己本身的网关走呢?可以参看下面的配置:
- 调整自己的客户端上面的profile
- 增加下面的语句
redirect all default traffic via the VPN
redirect-gateway def1
redirect the Intranet network 192.168.1/24 via the VPN
route 192.168.1.0 255.255.255.0
redirect another network to NOT go via the VPN
route 10.10.0.0 255.255.255.0 net_gateway
redirect a host using a domainname to NOT go via the VPN
route www.google.ca 255.255.255.255 net_gateway
- 这样默认走10.10.0.0/24 和www.google.ca都是走自己本地的网关了