Eu configurei meu /etc/network/interfaces
. Mas eu tenho que sempre reiniciar minha rede , não apenas começar. /etc/init.d/networking restart
na inicialização do sistema. Onde está o problema? Eu quero que minha rede funcione automaticamente na inicialização do sistema.
Minha / etc / network / interfaces config
# 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
auto eth0
allow-hotplug eth0
# The primary network interface
iface eth0 inet static
address 192.168.1.21
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 8.8.8.8 192.168.1.1
O mesmo problema com o DHCP.
Talvez o rc.local funcione, mas acho que não é o jeito certo de fazer isso.
Tags networking virtualbox debian