windows系统添加路由

/ 0评 / 0

A windows 10.1.0.5
B centos 两块网卡 10.1.0.6 192.168.x.5

现在A机器需要连接192.168.x.0的机器。这里x是多个段。

B机器需要开启转发
net.ipv4.ip_forward = 1
iptables -t nat -A POSTROUTING -j MASQUERADE

A机器添加路由
route add 192.168.0.0 mask 255.255.0.0 10.1.0.6 metric 2 -p

metric 2优先级为2
-p 永久路由

删除路由
route delete 192.168.0.0

发表评论

邮箱地址不会被公开。 必填项已用*标注