I just build a Ubuntu 17.4 Server on a Supermicro box, could not get network up and running.
Turns out I misconfigure the /etc/network/interfaces by describing the ethernet adapter as eth0. Should look something like this
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# 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 eno1 iface eno1 inet static address 10.1.1.86 netmask 255.255.255.0 gateway 10.1.1.1 dns-nameservers 8.8.8.8 |
You can obtain the correct naming by using the following command.
1 |
lshw -c network |