Eth2 - Ubuntu 16.04 konnte nicht aufgerufen werden

7

Ich habe einen Ubuntu 16.04-Server als Gast in Virtualbox eingerichtet. Der Server verwendet 3 Schnittstellen in den Netzwerkeinstellungen: Nur Host, NAT, Bridged

Die Datei / etc / network / interfaces ist wie folgt festgelegt:

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

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# Host-only interface
auto eth0
iface eth0 inet static
address 192.168.56.105
netmask 255.255.255.0
network 192.168.56.0
broadcast 192.168.56.255

# NAT interface
auto eth1
iface eth1 inet dhcp

# Bridged interface
auto eth2
iface eth2 inet static
address 192.168.0.105
netmask 255.255.255.0
gateway 192.168.0.255
dns-nameservers 8.8.8.8

Ich habe die Option "Vorhersagbare Netzwerkschnittstellennamen" in der Grub-Konfiguration deaktiviert

GRUB_CMDLINE_LINUX_DEFAULT="net.ifnames=0"

Während des Neustarts habe ich folgende Meldung:

Failed to start Raise network interfaces

aber wenn ich ifconfig starte, scheint alles in Ordnung zu sein:

eth0      Link encap:Ethernet  HWaddr 08:00:27:37:e4:c4  
          inet addr:192.168.56.105  Bcast:192.168.56.255  Mask:255.255.255.0
          inet6 addr: fe80::a00:27ff:fe37:e4c4/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:311 errors:0 dropped:0 overruns:0 frame:0
          TX packets:39 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:35338 (35.3 KB)  TX bytes:5530 (5.5 KB)

eth1      Link encap:Ethernet  HWaddr 08:00:27:d6:8d:1a  
          inet addr:10.0.3.15  Bcast:10.0.3.255  Mask:255.255.255.0
          inet6 addr: fe80::a00:27ff:fed6:8d1a/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:29 errors:0 dropped:0 overruns:0 frame:0
          TX packets:37 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:2970 (2.9 KB)  TX bytes:3063 (3.0 KB)

eth2      Link encap:Ethernet  HWaddr 08:00:27:6d:be:ad  
          inet addr:192.168.0.105  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: fe80::a00:27ff:fe6d:bead/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:634 errors:0 dropped:0 overruns:0 frame:0
          TX packets:29 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:55125 (55.1 KB)  TX bytes:1988 (1.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:160 errors:0 dropped:0 overruns:0 frame:0
          TX packets:160 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1 
          RX bytes:11840 (11.8 KB)  TX bytes:11840 (11.8 KB)

Jedoch wenn ich renne

sudo service networking restart

Ich bekomme diese Nachricht:

Job for networking.service failed because the control process exited with 
error code. See "systemctl status networking.service" and "journalctl -xe" 
for details.

Hier ist das Ergebnis von journalctl -xe

-- Unit networking.service has begun starting up.
May 07 16:31:54 jakku ifup[2056]: RTNETLINK answers: File exists
May 07 16:31:54 jakku ifup[2056]: Failed to bring up eth2.
May 07 16:31:54 jakku systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE
May 07 16:31:54 jakku systemd[1]: Failed to start Raise network interfaces.
-- Subject: Unit networking.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit networking.service has failed.

Kann mir jemand helfen?

Duddy67
quelle
Laut: raspberrypi.stackexchange.com/questions/13895/… können Sie nur 1 Gateway in der Schnittstellendatei haben.
Gen
Aber es funktioniert auf meinem Ubuntu 14.04 Server. Trotzdem habe ich versucht, das Gateway zu entfernen, aber das Problem tritt immer noch auf.
Duddy67
Interessantes /etc/network/interfaces.d?
Xhienne

Antworten:

3

Ich vermute, dass Sie in eine alte Falle tappen. Nach mehreren Beiträgen zB ist einer von Codeghar sudo service networking restart längst veraltet

weil es möglicherweise einige Schnittstellen nicht wieder aktiviert

Jorge Castro gab diese Antwort

sudo ifdown --exclude=lo -a && sudo ifup --exclude=lo -a

Also ersetzen networking restartdurch ifdown... && ifup....

Nebenbei bemerkt: ifconfigist auch schon lange veraltet - Verwendung ipaus dem Paket iproute2(siehe auch meine Frage / Antwort )

guntbert
quelle