Windows中route静态路由的使用

Windows中route静态路由的使用

基本使用说明

> route ADD 157.0.0.0 MASK 255.0.0.0  157.55.80.1 METRIC 3 IF 2
         destination^      ^mask      ^gateway     metric^    ^
                                                     Interface^
  • destination 指定主机。
  • MASK 指定下一个参数为“netmask”值。
  • netmask 指定此路由项的子网掩码值。如果未指定,其默认设置为 255.255.255.255。
  • gateway 指定网关。
  • interface 指定路由的接口号码。
  • METRIC 指定跃点数,例如目标的成本。

这里的interface可以使用route print来查看

===========================================================================
接口列表
 20...02 50 41 00 00 01 ......PANGP Virtual Ethernet Adapter
  4...60 45 cb 81 73 88 ......Intel(R) Ethernet Connection (2) I219-V
  7...00 50 56 c0 00 01 ......VMware Virtual Ethernet Adapter for VMnet1
  9...00 50 56 c0 00 08 ......VMware Virtual Ethernet Adapter for VMnet8
 14...00 25 3f 25 28 00 ......OrayBoxVPN Virtual Ethernet Adapter
  1...........................Software Loopback Interface 1
===========================================================================

举个例子

route add 192.168.51.2 mask 255.255.255.255 192.168.51.1 METRIC 1 IF 4

所有去往192.168.51.2的包都经过192.168.51.1网管,且METRIC为1(优先级越小越高),使用Intel(R) Ethernet Connection (2) I219-V网卡

不用时记得删除静态路由:

route delete 192.168.51.2 mask 255.255.255.255 192.168.51.1

其他问题

  1. 有时候无法验证成功可能与你的防火墙有关
  2. 也可以尝试控制面板\网络和 Internet\网络连接中先禁用网卡设备,再启用网卡设备,来初始化设备。(一般不需要这步)
© 版权声明
THE END
喜欢就支持一下吧
点赞15赞赏 分享
评论 抢沙发

请登录后发表评论

    请登录后查看评论内容