Como adicionar uma rota padrão de volta à tabela de roteamento do Windows

4

Eu preciso liberar e adicionar essa rota padrão de volta à tabela de roteamento do 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

Eu não consigo fazer isso. Primeiro eu faço route -f , então eu tento

route add 0.0.0.0 mask 0.0.0.0 gateway 192.168.1.3 interface 192.168.1.1 metric 25

mas acabei de receber uma mensagem dizendo

route: bad argument 192.168.1.3.

Alguém sabe o comando correto route add para adicionar essa rota?

    
por starcaaa 30.12.2011 / 16:43

3 respostas

8

(editado)

ROUTE ADD 0.0.0.0  MASK 0.0.0.0  192.168.1.3  METRIC 25  

de acordo com

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.

Note que "gateway" significa um endereço IP não texto literal.

O texto acima é do Vista e sua milhagem pode variar.

    
por 30.12.2011 / 17:48
2

Por favor, abra o Prompt de Comando como administrador e digite:

route add 192.168.89.0 mask 255.255.255.0 0.0.0.0 IF 18 -p
    
por 25.02.2014 / 23:24
1

Tente isto:

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

Substitua <Wlan Default Gateway> e <Wlan Address> pelos endereços relevantes.

    
por 09.05.2013 / 03:08