¿Cuál es el / etc / network / interfaces predeterminado?


Respuestas:


33

Para eth0 con dhcp:

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

# The primary network interface
iface eth0 inet dhcp

Para 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

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


1
Entonces, ¿qué debo hacer si el mío no tiene una interfaz de red primaria, solo tiene iface lo inet loopback?
IgorGanapolsky

Debe

¿Qué sucede si no agrego entradas de 'red' y 'difusión'? ¿El valor predeterminado será los valores razonables?
JohnyTex


Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.