Moja usługa sieciowa nie działa w lubuntu


0

Próbowałem uruchomić usługę sieciową, ale nie działa. Otrzymuję następujący błąd. Próbowałem na wiele sposobów, ale żaden z nich nie działał.

root@cerberos:~# service networking restart
Job for networking.service failed because the control process exited with error code. See "systemctl status networking.service" and "journalctl -xe" for details.

Po wprowadzeniu polecenia systemctl otrzymuję to:

● networking.service - Raise network interfaces
   Loaded: loaded (/lib/systemd/system/networking.service; enabled; vendor preset: enabled)
  Drop-In: /run/systemd/generator/networking.service.d
           └─50-insserv.conf-$network.conf
   Active: failed (Result: exit-code) since Thu 2019-04-04 14:47:36 UTC; 5min ago
     Docs: man:interfaces(5)
  Process: 749 ExecStart=/sbin/ifup -a --read-environment (code=exited, status=1/FAILURE)
  Process: 746 ExecStartPre=/bin/sh -c [ "$CONFIGURE_INTERFACES" != "no" ] && [ -n "$(ifquery --read-environment --list --exclude=lo)" ] && udevadm settle (code=exited
 Main PID: 749 (code=exited, status=1/FAILURE)

Apr 04 14:47:36 cerberos systemd[1]: Starting Raise network interfaces...
Apr 04 14:47:36 cerberos ifup[749]: Cannot find device "eth0"
Apr 04 14:47:36 cerberos ifup[749]: Failed to bring up eth0.
Apr 04 14:47:36 cerberos systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE
Apr 04 14:47:36 cerberos systemd[1]: Failed to start Raise network interfaces.
Apr 04 14:47:36 cerberos systemd[1]: networking.service: Unit entered failed state.
Apr 04 14:47:36 cerberos systemd[1]: networking.service: Failed with result 'exit-code'.
lines 1-17/17 (END)

Daje mi to poniższy plik konfiguracyjny / etc / network / interfaces.

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# Source interfaces
# Please check /etc/network/interfaces.d before changing this file
# as interfaces may have been defined in /etc/network/interfaces.d
# See LP: #1262951
source /etc/network/interfaces.d/*.cfg

and the content of /etc/network/interfaces.d/ shows 

uto eth0
iface eth0 inet static
address 10.4.0.2
netmask 255.255.255.0
gateway 10.4.0.1
dns-nameservers 10.4.1.12

Właściwie nie jestem w stanie zrozumieć, dlaczego ifup nie może znaleźć urządzenia eth0 i jak to zrobić?


Jaka wersja lubuntu? Edytuj /etc/network/interfacesplik (lub plik .cfg) i zmień uto eth0na auto eth0. Pokaż mi cat /etc/netplan/*.yaml.
heynnema

Moja wersja to Ubuntu 16.04.6 LTS. Otrzymuję te wyniki po użyciu: cat /etc/netplan/*.yaml cat: '/etc/netplan/*.yaml': Brak takiego pliku lub katalogu
thelma lobo

Ach! Czy edytowałeś lub dodałeś plik /etc/network/interfaces.d? Czy zmienił uto eth0się auto eth0i ponowiona z Internetu? Pokaż mi ls -al /etc/network/interfaces.di sudo lshw -C network.
heynnema

Pokaż mi również cat /etc/NetworkManager/NetworkManager.conf.
heynnema

Nie, nic nie dodałem /etc/network/interfaces.d. Właśnie przegapiłem auto podczas kopiowania tutaj. Internet działa dobrze.
thelma lobo

Odpowiedzi:


0

Jeśli dobrze rozumiem twój problem, musisz to zrobić ...

Zmień /etc/network/interfaceswyglądać tak ...

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback

# Source interfaces
# Please check /etc/network/interfaces.d before changing this file
# as interfaces may have been defined in /etc/network/interfaces.d
# See LP: #1262951
#    source /etc/network/interfaces.d/*.cfg

#    and the content of /etc/network/interfaces.d/ shows 

#   auto eth0
#    iface eth0 inet static
#    address 10.4.0.2
#    netmask 255.255.255.0
#    gateway 10.4.0.1
#    dns-nameservers 10.4.1.12

Następnie przejdź do GUI NetworkManager, utwórz nowy Wired Connection, ustaw go do ręcznego adresowania i wprowadź tam powyższe informacje statyczne. Oto jak powinno to wyglądać ... moje będzie wyglądać trochę inaczej niż twoje, jak mam 18.10, ale wpadniesz na pomysł ...

wprowadź opis zdjęcia tutaj


Bardzo dziękuję za pomoc i szybką odpowiedź ... !!! :) Zadziałało.
thelma lobo
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.