Bridged Network - Scale VMs cannot connect to host

Apprisco

Dabbler
Joined
Aug 3, 2022
Messages
40
I have followed the guide to create a bridged network and attach my existing network into it, and I have the web GUI running again.
1710934529408.png

I have attached my VMs to this bridged network as seen here:
1710934555043.png

However, now NONE of the VMs have basic internet access nor do they get picked up as a local address. I have lost all network access to both VMs.

Does anyone have any ideas? I have already tried creating new NICs.
 

chuck32

Guru
Joined
Jan 14, 2023
Messages
623
What interface is physically connected to your switch/router?

Can you show the bridge configuration?

There is only one nix (the bridge) attached to the VMs?
 

Apprisco

Dabbler
Joined
Aug 3, 2022
Messages
40
1. The bond0 is the bonded network connected to my router.
2.
1710936348871.png

3. Yes, that's the only NIC attached to the VMs.

What's hilarious is that the Windows VM is now working and has SMB access to the NAS.
The Ubuntu-server VM still fails to find any ip, and basically might as well as not exist.
I can access it through the built in TrueNAS display, but ifconfig shows absolutely no connection. I'm very confused.
 

Stux

MVP
Joined
Jun 2, 2016
Messages
4,419
what does ip a show as your interface name.

And does it match the net plan in /etc/netplan?
 

chuck32

Guru
Joined
Jan 14, 2023
Messages
623
So it seems like the NIC is straight up missing.
No, ens3 is the NIC you assigned br1 to, see the max address.
However that interface does not have an IP. Either force a new DHCP lease (don't know on top of my head) or assign a static IP (something like this:)

Code:
network:
 version: 2
 ethernets:
   ens3:
     dhcp4: no
     addresses: [192.168.1.XXX/24]
     routes:
      - to: default
        via: 192.168.1.12
     nameservers:
         addresses: [192.168.1.12]


where XXX is a free IP in your network. For me it works like that.
 

Apprisco

Dabbler
Joined
Aug 3, 2022
Messages
40
Damn, you're right. OPN has a ip address there though so what could be going on then?
Screen Shot 2024-03-20 at 8.39.37 AM.png
 

chuck32

Guru
Joined
Jan 14, 2023
Messages
623
Did you apply the settings after updating? How does your netplan look now?

sudo netplan try
 

Apprisco

Dabbler
Joined
Aug 3, 2022
Messages
40
Screen Shot 2024-03-20 at 9.16.43 AM.png

I have run the command successfully w/o errors, and this is how it looks like.
At this point just making a new VM and moving files over seems like the wiser solution haha, while it'd be a ton of pain.
Tried both 24 and 32 btw.
 
Last edited:

chuck32

Guru
Joined
Jan 14, 2023
Messages
623
What is OPN? Isn't .138 already taken then?
 

chuck32

Guru
Joined
Jan 14, 2023
Messages
623
Top