Ethernet conectada mas sem Internet

0

Estou tentando isso no Intel Galileo Gen 2, que executa Yocto Linux e não consigo me conectar à Internet usando Ethernet. Eu tenho cartão WiFi, mas isso não conecta também. Eu tentei seguir os comandos e suas saídas são como abaixo

ifconfig -a

Saída:

enp0s20f6 Link encap:Ethernet  HWaddr 98:4F:EE:01:9E:CA
          inet addr:192.168.0.110  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: fe80::9a4f:eeff:fe01:9eca/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:2731 errors:0 dropped:4 overruns:0 frame:0
          TX packets:599 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:276624 (270.1 KiB)  TX bytes:84524 (82.5 KiB)
          Interrupt:51 Base address:0x4000

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:5730 errors:0 dropped:0 overruns:0 frame:0
          TX packets:5730 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:503288 (491.4 KiB)  TX bytes:503288 (491.4 KiB)

wlp1s0    Link encap:Ethernet  HWaddr 44:85:00:01:8A:D3
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

route -n

Saída:

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.0.1     0.0.0.0         UG    0      0        0 enp0s20f6
192.168.0.0     0.0.0.0         255.255.255.0   U     0      0        0 enp0s20f6
192.168.0.1     0.0.0.0         255.255.255.255 UH    0      0        0 enp0s20f6

As interfaces parecem:

vi /etc/network/interfaces

auto enp0s20f6
iface enp0s20f6 inet static
  address 10.254.253.1
  netmask 255.255.255.0

auto wlan0
iface wlan0 inet dhcp
     wireless_mode managed
     wireless_essid any
     wpa-driver wext
     wpa-conf /etc/wpa_supplicant.conf

auto lo
iface lo inet loopback

Ao tentar connmanctl services ,

*AR Wired                ethernet_984fee019eca_cable
*A  wifinw           wifi_448500018ad3_646c696e6b2d32333238_managed_psk

Portanto, ping www.google.com falha com bad address . Eu tentei ping 8.8.8.8 e dá resposta. Como por @ frarugi87 é um problema de DNS, mas não sei como corrigir isso.

O /etc/resolv.conf tem os seguintes servidores de nomes

# Generated by Connection Manager
nameserver 127.0.0.1
nameserver ::1
    
por Puneet Ghanshani 10.03.2016 / 15:27

1 resposta

1

Resolvi isso adicionando servidores OpenDNS ao meu arquivo /etc/resolv.conf .

vi /etc/resolv.conf

e o arquivo parece

nameserver 208.67.222.222
nameserver 208.67.220.220

Depois disso, o ping para o google.com funciona.

    
por 10.03.2016 / 15:50