Grazie . Ha funzionato per me.
1 - Avevo l'indirizzo IP ma nessuna connessione a Internet
2 - la porta LAN era attiva
3 - Avevo assegnato un indirizzo IP statico
Il mio /etc/network/interfaces
aveva
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
Avevo l' ifconfig
output come (questa è la modifica manuale - era un po 'così)
~$ 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)
Ho cambiato il /etc/network/interfaces
in
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
Quindi seguire i passaggi precedenti:
1 - sudo service network-manager stop
2 - sudo ifconfig enp4s8 up
per visualizzare l'interfaccia
3 - Quindi, forzare Ubuntu a chiedere un nuovo contratto di locazione DHCP entro sudo dhclient enp4s8
4 - Fatto manualmente sudo service network-manager start
* Questo è quando ho ottenuto la connessione alla rete
Questi passaggi hanno funzionato.
Cordiali saluti - Il Live CD aveva anche una connessione Internet, non ho copiato i file dal live cd.
Todo - Devo avere un indirizzo IP statico. Non funziona, se torno con le vecchie impostazioni. ancora risoluzione dei problemi e non pertinente a questo post. Per favore scusa.
/etc/network/interfaces
file?