Yanıtlar:
Dhcp ile eth0 için:
# The loopback network interface
auto lo eth0
iface lo inet loopback
# The primary network interface
iface eth0 inet dhcp
Eth0 static için:
# 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
Debian ağ yapılandırma sayfasını takip ederek , sadece DHCP kullanıyorsanız, ihtiyacınız olan tek şey şunun gibi
auto eth0
allow-hotplug eth0
iface eth0 inet dhcp