[SOLVED] Interface/vrb0 not auto starting on power on

mikein89

New Member
Jan 16, 2022
2
1
3
36
Every time I reset my pc I have to run ifup vrb0 on my Linux Bridge. In the settings Autostart is checked. I did mess with my wifi adapters to try to get my server running over wifi but because I cant share those with my vms I got a long network cord and set my interfaces file back.

My /etc/network/interfaces looks like:

auto lo
iface lo inet loopback

auto vmbr0
iface vmbr0 inet static
address 192.168.1.43/24
gateway 192.168.1.1
bridge-ports enp5s0
bridge-stp off
bridge-fd 0

Any ideas would be greatly appreciated!
 
One difference in your /etc/network/interfaces files from what gets written by the installer is the missing:
Code:
iface enp5s0 manual

maybe try adding it and rebooting

Else please post the journal after the reboot -maybe the logs show something

I hope this helps!
 
  • Like
Reactions: mikein89