web-dev-qa-db-ja.com

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コマンドを知っている人はいますか?

5
starcaaa

(編集)

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からのもので、マイレージは異なる場合があります。

8
RedGrittyBrick

管理者としてコマンドプロンプトを開き、次のように入力してください。

route add 192.168.89.0 mask 255.255.255.0 0.0.0.0 IF 18 -p
2
user303258

これを試して:

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>と関連するアドレス。

1
user223071

原因:PCが2つの物理LANケーブルを2つの異なるネットワークに接続しています。私のPCは常にインターネットに接続されているネットワークにルーティングします

target IP: 192.168.81.65 
target gateway: 192.168.72.254

解決策:PCにルートを追加する

  1. win + Xを押す
  2. window PowerShell(Admin)を選択します
  3. このコマンドを実行する

    ルート追加192.168.81.0マスク255.255.255.0 192.168.72.254メトリック25

  4. OK!

私のために働く

0
SKGoC