Was ist die Standardeinstellung / etc / network / interfaces?

36

Ich habe meine Netzwerkkonfiguration durcheinander gebracht. Kann mir jemand helfen und den Standard kopieren /etc/network/interfaces?

Jonas
quelle
Weitere Informationen zum
Chris S

Antworten:

33

Für eth0 mit dhcp:

# The loopback network interface
auto lo eth0
iface lo inet loopback

# The primary network interface
iface eth0 inet dhcp

Für eth0 static:

# The loopback network interface
auto lo eth0
iface lo inet loopback

# The primary network interface
iface eth0 inet static
    address 192.168.10.33
    netmask 255.255.255.0
    broadcast 192.168.10.255
    network 192.168.10.0
    gateway 192.168.10.254 
dns-nameservers 192.168.10.254

Link: http://www.iasptk.com/ubuntu/20202-ubuntu-server-networking-configuration-dhcp-address-static-ip-address-second-ip-address-or-virtual-ip-address

ptheo
quelle
1
Also, was mache ich, wenn meine keine primäre Netzwerkschnittstelle hat, nur iface lo inet Loopback?
IgorGanapolsky
Sie müssen eine primäre (dhcp ODER statische) hinzufügen, die die obigen Zeilen hinzufügt
ptheo
Was ist, wenn ich keine Netzwerk- und Broadcast-Einträge hinzufüge? Wird der Standard auf die vernünftigen Werte gesetzt?
JohnyTex
9

Meins sieht aus wie:

auto lo
iface lo inet loopback
Wolf F.
quelle