Você não tem nenhum gateway padrão:
ip r a default via 192.168.43.1
Nor resolver, como - eu acho, você não tem nenhum serviço DNS em execução no 127.0.1.1:
echo nameserver 8.8.8.8 >> /etc/resolv.conf
Eu novo na conexão Ethernet com o meu Linux Mint, WiFi funciona bem. Mas eu encontrei alguns erros. Depois de passar 2 dias pesquisando, não consegui me conectar.
$ uname -a
Linux 'username' 4.13.0-39-generic #44~16.04.1-Ubuntu SMP Thu Apr 5 16:43:10 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Com "Método" DHCP automático, aqui está a saída de ifconfig
Método: Automático (DHCP) para o perfil
$ ifconfig
enp3s0 Link encap:Ethernet HWaddr 54:ee:75:79:b7:1f
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:1760 errors:0 dropped:8 overruns:0 frame:0
TX packets:136 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:147427 (147.4 KB) TX bytes:17994 (17.9 KB)
Interrupt:43 Base address:0xd000
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:4120 errors:0 dropped:0 overruns:0 frame:0
TX packets:4120 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:341414 (341.4 KB) TX bytes:341414 (341.4 KB)
wlp2s0 Link encap:Ethernet HWaddr 78:0c:b8:d6:62:da
inet addr:192.168.43.121 Bcast:192.168.43.255 Mask:255.255.255.0
inet6 addr: fe80::e842:14d2:88e2:1321/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:16271 errors:0 dropped:0 overruns:0 frame:0
TX packets:13247 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:19535354 (19.5 MB) TX bytes:1753988 (1.7 MB)
Além disso, o Wire nunca exibe Connected
, mas mostra Connecting...
.
Em seguida, mudei para Manual com os seguintes detalhes mostrados na imagem em anexo:
Perfil com configurações manuais
Eu então executei o comando pppoeconf
e ele foi executado sem erros.
E aqui está a saída de ifconfig
enp3s0 Link encap:Ethernet HWaddr 54:ee:75:79:b7:1f
inet addr:192.168.43.121 Bcast:192.168.43.255 Mask:255.255.255.0
inet6 addr: fe80::56ee:75ff:fe79:b71f/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1863 errors:0 dropped:9 overruns:0 frame:0
TX packets:186 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:157640 (157.6 KB) TX bytes:25158 (25.1 KB)
Interrupt:43 Base address:0xd000
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:4485 errors:0 dropped:0 overruns:0 frame:0
TX packets:4485 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:370644 (370.6 KB) TX bytes:370644 (370.6 KB)
wlp2s0 Link encap:Ethernet HWaddr 78:0c:b8:d6:62:da
inet addr:192.168.43.121 Bcast:192.168.43.255 Mask:255.255.255.0
inet6 addr: fe80::e842:14d2:88e2:1321/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:91264 errors:0 dropped:0 overruns:0 frame:0
TX packets:61200 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:126022999 (126.0 MB) TX bytes:7032850 (7.0 MB)
$ netstat -rn
$ natstat -rn
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
192.168.43.0 0.0.0.0 255.255.255.0 U 0 0 0 enp3s0
$ route
$ route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.43.0 * 255.255.255.0 U 100 0 0 enp3s0
$ cat / etc / network / interfaces
$ cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
auto dsl-provider
iface dsl-provider inet ppp
pre-up /bin/ip link set enp3s0 up # line maintained by pppoeconf
provider dsl-provider
auto enp3s0
iface enp3s0 inet static
address 192.168.43.121
netmask 255.255.255.0
network 192.168.43.0
bradcast 192.168.43.255
gateway 192.168.43.1
$ cat /etc/resolv.conf
$ cat /etc/resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 127.0.1.1
$ ping 127.0.1.1
$ ping 127.0.1.1
PING 127.0.1.1 (127.0.1.1) 56(84) bytes of data.
64 bytes from 127.0.1.1: icmp_seq=1 ttl=64 time=0.071 ms
64 bytes from 127.0.1.1: icmp_seq=2 ttl=64 time=0.061 ms
64 bytes from 127.0.1.1: icmp_seq=3 ttl=64 time=0.062 ms
64 bytes from 127.0.1.1: icmp_seq=4 ttl=64 time=0.062 ms
64 bytes from 127.0.1.1: icmp_seq=5 ttl=64 time=0.029 ms
^C
--- 127.0.1.1 ping statistics ---
5 packets transmitted, 5 received, 0% packet loss, time 4083ms
rtt min/avg/max/mdev = 0.029/0.057/0.071/0.014 ms
$ ping google.com
$ ping google.com
ping: unknown host google.com
$ ping 192.168.43.1
$ ping 192.168.43.1
PING 192.168.43.1 (192.168.43.1) 56(84) bytes of data.
From 192.168.43.121 icmp_seq=1 Destination Host Unreachable
From 192.168.43.121 icmp_seq=2 Destination Host Unreachable
From 192.168.43.121 icmp_seq=3 Destination Host Unreachable
^C
--- 192.168.43.1 ping statistics ---
5 packets transmitted, 0 received, +3 errors, 100% packet loss, time 4100ms
pipe 4
Eu até tentei fazer ping usando o endereço IP do google.com
$ ping 172.217.10.110
connect: Network is unreachable
Atualização:
Isso é útil? depois de sugerido por uma das respostas, tentei
$ sudo ip r a default via 192.168.43.1
$ netstat -rn
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
0.0.0.0 192.168.43.1 0.0.0.0 UG 0 0 0 enp3s0
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 enp3s0
192.168.43.0 0.0.0.0 255.255.255.0 U 0 0 0 enp3s0
e fiz ping no google.com com o nome:
$ ping google.com
ping: unknown host google.com
com endereço IP:
$ ping 172.217.10.110
PING 172.217.10.110 (172.217.10.110) 56(84) bytes of data.
From 192.168.43.121 icmp_seq=1 Destination Host Unreachable
From 192.168.43.121 icmp_seq=2 Destination Host Unreachable
From 192.168.43.121 icmp_seq=3 Destination Host Unreachable
^C
--- 172.217.10.110 ping statistics ---
5 packets transmitted, 0 received, +3 errors, 100% packet loss, time 4078ms
pipe 4
Por favor, deixe-me saber como resolver este problema.
Você não tem nenhum gateway padrão:
ip r a default via 192.168.43.1
Nor resolver, como - eu acho, você não tem nenhum serviço DNS em execução no 127.0.1.1:
echo nameserver 8.8.8.8 >> /etc/resolv.conf