Comment on virtualizing PFSense. What else works besides ESXi for virtual networking?
tofubl@discuss.tchncs.de 10 months agoMy config was more or less identical to yours, and that removed some doubt and let me focus on the right part: Without a wan0.network
, the host isn’t bringing up br0
on boot. I thought it had something to do with the interface having an IP, but turns out the following works as well:
user@edge:/etc/systemd/network$ cat wan0.network [Match] Name=br0 [Network] DHCP=no LinkLocalAddressing=ipv4 [Link] RequiredForOnline=no
Thank you once again!
TCB13@lemmy.world 10 months ago
Oh, now I remembered that there’s
ActivationPolicy=
on[Link]
that can be used to control what happens to the interface. At some point I even reported a bug on that feature and vlans ahah github.com/systemd/systemd/issues/22593tofubl@discuss.tchncs.de 10 months ago
You know your stuff, man! It’s exactly as you say. 🙏
TCB13@lemmy.world 10 months ago
You’re welcome.