ICMP enviado para a interface errada

0

Eu configurei a rede abaixo em casa. Do PC da Torre, posso fazer ping no Laptop em 192.168.2.1. Mas o do laptop eu não posso. Ambos os computadores executam o Windows 10.

WireShark mostra que o quadro de requisição ICMP vai para o TP Link (na interface Wi-Fi) ao invés do Switch (na interface eth).

Frame 10: 74 bytes on wire (592 bits), 74 bytes captured (592 bits) on interface 1
Ethernet II, Src: AskeyCom_fa:a3:86 (e0:ca:94:fa:a3:86), Dst: Tp-LinkT_22:d3:82 (30:b5:c2:22:d3:82)
    Destination: Tp-LinkT_22:d3:82 (30:b5:c2:22:d3:82)
    Source: AskeyCom_fa:a3:86 (e0:ca:94:fa:a3:86)
    Type: IPv4 (0x0800)
Internet Protocol Version 4, Src: 192.168.0.108, Dst: 192.186.2.153
Internet Control Message Protocol

Tenho certeza de que isso ocorre devido a um mau roteamento. E o ping do PC da Torre para o Laptop provavelmente funciona apenas porque a resposta é feita por padrão para a mesma interface de onde veio a solicitação.

Veja como eu tentei configurá-lo. Estas são as configurações das interfaces do Laptop:

Ethernet adapter Ethernet
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Qualcomm Atheros AR8161/8165 PCI-E Gigabit Ethernet Controller (NDIS 6.20)
   Physical Address. . . . . . . . . : 00-26-6C-17-74-09
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes
   IPv4 Address. . . . . . . . . . . : 192.168.2.1(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . :
   DNS Servers . . . . . . . . . . . : 192.168.0.1
   NetBIOS over Tcpip. . . . . . . . : Enabled

Wireless LAN adapter Wi-Fi:

   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Qualcomm Atheros AR9485WB-EG Wireless Network Adapter
   Physical Address. . . . . . . . . : E0-CA-94-FA-A3-86
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : Yes
   IPv4 Address. . . . . . . . . . . : 192.168.0.108(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Lease Obtained. . . . . . . . . . : 01 October 2017 21:26:37
   Lease Expires . . . . . . . . . . : 03 October 2017 01:26:30
   Default Gateway . . . . . . . . . : 192.168.0.1
   DHCP Server . . . . . . . . . . . : 192.168.0.1
   DNS Servers . . . . . . . . . . . : 192.168.0.1
   NetBIOS over Tcpip. . . . . . . . : Enabled

E esta é a tabela de roteamento padrão:

IPv4 Route Table
===========================================================================
Active Routes:
Network Destination        Netmask          Gateway       Interface  Metric
          0.0.0.0          0.0.0.0      192.168.0.1    192.168.0.108      4
        127.0.0.0        255.0.0.0         On-link         127.0.0.1    331
        127.0.0.1  255.255.255.255         On-link         127.0.0.1    331
  127.255.255.255  255.255.255.255         On-link         127.0.0.1    331
      192.168.0.0    255.255.255.0         On-link     192.168.0.108    258
    192.168.0.108  255.255.255.255         On-link     192.168.0.108    258
    192.168.0.255  255.255.255.255         On-link     192.168.0.108    258
      192.168.2.0    255.255.255.0         On-link       192.168.2.1    257
      192.168.2.1  255.255.255.255         On-link       192.168.2.1    257
    192.168.2.255  255.255.255.255         On-link       192.168.2.1    257
        224.0.0.0        240.0.0.0         On-link         127.0.0.1    331
        224.0.0.0        240.0.0.0         On-link       192.168.2.1    257
        224.0.0.0        240.0.0.0         On-link     192.168.0.108    258
  255.255.255.255  255.255.255.255         On-link         127.0.0.1    331
  255.255.255.255  255.255.255.255         On-link       192.168.2.1    257
  255.255.255.255  255.255.255.255         On-link     192.168.0.108    258
===========================================================================
Persistent Routes:
  None

Espero que esta regra funcione, mas não:

      192.168.2.0    255.255.255.0         On-link       192.168.2.1    257

Eu também tentei mudar a métrica da regra para 2, 6 e 400, mas também não funcionou. Alguma idéia alguém?

    
por Fabricio 03.10.2017 / 00:41

1 resposta

2

Você está latindo na árvore errada devido a um erro de digitação quando você emitiu o comando ping .

Internet Protocol Version 4, Src: 192.168.0.108, Dst: 192.186.2.153
                                                                                            ^^^

Observe o 186 em vez de 168. É por isso que ele seguiu a rota padrão e escolheu o endereço IP de origem atribuído a essa interface.

    
por 03.10.2017 / 01:03