Quando estou conectado a duas redes com acesso à internet, o que exatamente está acontecendo quando uso a internet?

2

Eu estava testando um pequeno dongle USB para ver se ele funcionaria com o Raspberry PI. Parece ok na minha máquina windows. Como temos duas redes wifi em casa, usei o dongle para conectar ao segundo, o que significa que agora estou conectado a duas redes que fornecem internet.

Esta situação descrita acima me fez pensar e levantar uma questão.

A pergunta é: isso afeta a velocidade da minha internet? O computador troca as redes ou atribui diferentes conexões a redes diferentes? Minhas redes estão conectadas ao mesmo modem, compartilhando a velocidade máxima real - mas se eu usasse tipos de conexão completamente diferentes, como o tethering de bluetooth android e meu WiFi doméstico, isso aceleraria minha conexão?

    
por Tomáš Zato 21.07.2015 / 22:58

1 resposta

4

Por padrão, seu computador usará um caminho de rede para alcançar destinos; qual conexão de rede tem a menor métrica de roteamento , que em um sistema Microsoft Windows você pode ver com o route print comando.

Você pode modificar esse comportamento adicionando uma rota específica a um destino específico com o comando route add . A sintaxe do comando route add pode ser visualizada emitindo o comando route /? em um prompt de comando em um sistema Microsoft Windows.

C:\>route /?

Manipulates network routing tables.

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

  -f           Clears the routing tables of all gateway entries.  If this is
               used in conjunction with one of the commands, the tables are
               cleared prior to running the command.

  -p           When used with the ADD command, makes a route persistent across
               boots of the system. By default, routes are not preserved
               when the system is restarted. Ignored for all other commands,
               which always affect the appropriate persistent routes.

  -4           Force using IPv4.

  -6           Force using IPv6.

  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.

All symbolic names used for destination are looked up in the network database
file NETWORKS. The symbolic names for gateway are looked up in the host name
database file HOSTS.

If the command is PRINT or DELETE. Destination or gateway can be a wildcard,
(wildcard is specified as a star '*'), or the gateway argument may be omitted.

If Dest contains a * or ?, it is treated as a shell pattern, and only
matching destination routes are printed. The '*' matches any string,
and '?' matches any one char. Examples: 157.*.1, 157.*, 127.*, *224*.

Pattern match is only allowed in PRINT command.
Diagnostic Notes:
    Invalid MASK generates an error, that is when (DEST & MASK) != DEST.
    Example> route ADD 157.0.0.0 MASK 155.0.0.0 157.55.80.1 IF 1
             The route addition failed: The specified mask parameter is invalid.
 (Destination & Mask) != Destination.

Examples:

    > route PRINT
    > route PRINT -4
    > route PRINT -6
    > route PRINT 157*          .... Only prints those matching 157*

    > 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
      gateway.
    > route ADD 3ffe::/32 3ffe::1

    > route CHANGE 157.0.0.0 MASK 255.0.0.0 157.55.80.5 METRIC 2 IF 2

      CHANGE is used to modify gateway and/or metric only.

    > route DELETE 157.0.0.0
    > route DELETE 3ffe::/32

Por exemplo, você pode escolher o caminho de rede que não é o padrão para acessar um site específico, etc. usando o comando route add e especificando o endereço do gateway para o outro caminho. No seu caso, haveria pouca diferença no caminho geral da rede, já que ambos os caminhos levam ao mesmo dispositivo de rede que fornece acesso à Internet.

    
por 21.07.2015 / 23:20