如何将默认路由添加回 Windows 路由表

如何将默认路由添加回 Windows 路由表

我需要刷新然后将此默认路由添加回 Windows 路由表:

Active Routes:
Network Destination        Netmask          Gateway       Interface  Metric
      0.0.0.0          0.0.0.0      192.168.1.1      192.168.1.3     25

我做不到。一开始我做到了route -f,然后我尝试

route add 0.0.0.0 mask 0.0.0.0 gateway 192.168.1.3 interface 192.168.1.1 metric 25

但我收到一条消息说

route: bad argument 192.168.1.3.

有人知道route add重新添加此路线的正确命令吗?

答案1

(已编辑)

ROUTE ADD 0.0.0.0  MASK 0.0.0.0  192.168.1.3  METRIC 25  

根据

C:\>route /?

Manipulates network routing tables.

ROUTE [-f] [-p] [-4|-6] command [destination]
                  [MASK netmask]  [gateway] [METRIC metric]  [IF interface]

  command      One of these:
                 PRINT     Prints  a route
                 ADD       Adds    a route
                 DELETE    Deletes a route
                 CHANGE    Modifies an existing route
  destination  Specifies the host.
  MASK         Specifies that the next parameter is the 'netmask' value.
  netmask      Specifies a subnet mask value for this route entry.
               If not specified, it defaults to 255.255.255.255.
  gateway      Specifies gateway.
  interface    the interface number for the specified route.
  METRIC       specifies the metric, ie. cost for the destination.

请注意,“网关”指的是 IP 地址,而不是文字。

以上内容来自 Vista,您的里程可能会有所不同。

答案2

请以管理员身份打开命令提示符,然后输入:

route add 192.168.89.0 mask 255.255.255.0 0.0.0.0 IF 18 -p

答案3

尝试这个:

route add 0.0.0.0 mask 0.0.0.0 gateway <Wlan Default Gateway> interface <Wlan Address> metric 1

route add 192.168.1.3 mask 255.255.255.255 gateway 127.0.0.1 interface 127.0.0.1 metric 10

用相关地址替换<Wlan Default Gateway>和。<Wlan Address>

答案4

原因:我的电脑将 2 条物理 LAN 电缆连接到 2 个不同的网络。并且我的电脑始终路由到连接到互联网的网络

target IP: 192.168.81.65 
target gateway: 192.168.72.254

解决方案:向您的电脑添加路由

  1. 按 win+X
  2. 选择 Window PowerShell(管理员)
  3. 运行此命令

    路由添加 192.168.81.0 掩码 255.255.255.0 192.168.72.254 度量 25

  4. 好的!

对我有用

相关内容