So I couldn't connect to my host today. Got a monitor hooked up and with some research found the interface was not up. I have it hard coded, but when I manually brought it up using 'ip link set eno1 up', it got a DHCP address it seems. I also had to use 'ifup vmbr0'
If I reboot, I have to manually bring the interfaces up again and goes to the DHCP address even though the screen says to connect to the static address I have assigned.
/etc/network/interfaces looks like below
auto lo
iface lo inet loopback
iface eno1 inet manual
auto vmbr0
iface vmbr0 inet dhcp
address 192.168.0.250/24
gateway 192.168.0.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
How can I get this back to my static IP address and fix the networking?
If I reboot, I have to manually bring the interfaces up again and goes to the DHCP address even though the screen says to connect to the static address I have assigned.
/etc/network/interfaces looks like below
auto lo
iface lo inet loopback
iface eno1 inet manual
auto vmbr0
iface vmbr0 inet dhcp
address 192.168.0.250/24
gateway 192.168.0.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
How can I get this back to my static IP address and fix the networking?