Obrigado . Funcionou para mim.
1 - Eu tinha o endereço IP, mas não havia conexão com a Internet
2 - a porta LAN estava ativa
3 - Eu havia atribuído um endereço IP estático
Meu /etc/network/interfaces
teve
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
iface enp4s8 inet static
address 192.168.2.251
netmask 255.255.255.0
network 192.168.2.0
Eu estava tendo ifconfig
saída como (esta é a edição manual - era algo assim)
~$ ifconfig
enp4s8 Link encap:Ethernet HWaddr 00:19:d1:73:b7:11
inet addr:192.168.2.251 Bcast:192.168.2.251 Mask:255.255.255.0
inet6 addr: fe80::219:d1ff:fe73:b711/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:13181 errors:0 dropped:0 overruns:0 frame:0
TX packets:8462 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:16690503 (16.6 MB) TX bytes:884958 (884.9 KB)
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:317 errors:0 dropped:0 overruns:0 frame:0
TX packets:317 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1
RX bytes:40111 (40.1 KB) TX bytes:40111 (40.1 KB)
Eu mudei /etc/network/interfaces
para
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto enp4s8
#iface enp4s8 inet dhcp
#iface enp4s8 inet static
#address 192.168.2.251
#netmask 255.255.255.0
#network 192.168.2.0
#broadcast 192.168.2.255
#gateway 192.168.2.1
#dns-nameservers 192.168.2.1
Em seguida, siga as etapas acima:
1 - sudo service network-manager stop
2 - sudo ifconfig enp4s8 up
para abrir a interface
3 - Em seguida, force o Ubuntu a solicitar uma nova concessão de DHCP por sudo dhclient enp4s8
4 - Manualmente sudo service network-manager start
* Foi quando obtive a conexão com a rede
Essas etapas funcionaram.
FYI - O Live CD também tinha conexão com a Internet. Eu não copiei arquivos do live cd.
Todo - preciso ter um endereço IP estático. Não está funcionando, se eu voltar com as configurações antigas. ainda solução de problemas e não é relevante para esta postagem. Desculpa por favor.
/etc/network/interfaces
arquivo?