请问在CMD下用route命令如何设置不同路由出口?

2024-12-17 01:38:35
推荐回答(1个)
回答1:

route/?
可查看route命令帮助信息,下面是其中的Example
route ADD 157.0.0.0 MASK 255.0.0.0 157.55.80.1 METRIC 3 IF 2
destination^ ^mask ^gateway metric^ ^Interface^
If IF is not given, it tries to find the best interface for a given
举个简单的例子
route add -p 10.0.0.0 mask 255.0.0.0 192.168.0.1
-p代表永久路由,禁用网卡、关机等操作都不会删除该路由。