When rebooting the OS

waiting for network configuration waiting up to 60 seconds for network configuration 

The device is not running. To raise from the console you need:

 sudo ifconfig 192.168.1.210 eth0 

If you run this:

 sudo ifconfig eth0 

then the IP4 settings are not loaded

My actions:

 sudo apt-get purge --yes network-manager sudo nano /etc/network/interfaces auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.1.210 netmask 255.255.255.0 gateway 192.168.1.1 dns-nameservers 192.168.1.1 77.88.88.8 

Same question for graphic utility

  • one
    Try changing the auto eth0 directive to allow-hotplug eth0 . on a related question: nm should ignore the interfaces that are configured “manually”, i.e. those mentioned (in this case) in /etc/network/interfaces* . - aleksandr barakin
  • Reinstalled on any system, in the router I set the static IP for the card's MAC address, it worked. - shaman888

0