1
将特定子网路由到VPN隧道
我的网络如下所示: 我正在尝试配置路由器,以便通过网关/路由器上的VPN隧道(tun0)路由子网(192.168.2.0/24)。 同时,子网(192.168.1.0/24)上的客户端直接通过ppp0路由出去,即不通过VPN。 我不想运行VPN软件客户端,并且网络上的某些客户端需要直接访问。例如Windows游戏机,VoIP电话等。 我的路由器还运行一个未绑定的DNS服务器,该服务器将DNS查找转发到dnscrypt-proxy。 路由器上的网络接口配置如下: auto lo iface lo inet loopback auto lo:1 iface lo:1 inet static address 127.0.0.2 netmask 255.0.0.0 auto eth0 iface eth0 inet static address 192.168.1.1 netmask 255.255.255.0 # Virtual interface auto eth0:2 iface eth0:2 inet static address 192.168.2.1 netmask 255.255.255.0 auto eth1 iface eth1 inet …