When I installed Proxmox 8.04, the vmbr0 was created automatically. Now I added a new network card and created a new bridge vmbr1
After applying the config, the
I could access the Proxmox Admin UI and SSH to Proxmox using the new static IP address
QUESTION: vmbr1 has no gateway definition. Because if I set the same gateway than vmbr0, Proxmox will reject the creation of vmbr1 (gateway
I suppose this question is more of a general linux networking question rather than Proxmox specific. I wonder what is the purpose of the vmbr1 bridge, because for managing Proxmox server, I think I could use the enp5s0 interface directly without creating a bridge.
The reason I create the new bridge vmbr1, is in fact extracted from a tutorial How to Run OPNsense in a Proxmox Virtual Machine for Evaluation Purposes Before I go through with the exercise, I'd like to play around a bit to get familiarized with Proxmox networking.
After applying the config, the
/etc/network/interfaces
is updated accordingly
INI:
auto lo
iface lo inet loopback
iface enp4s0 inet manual
iface enp5s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.1.80/24
gateway 192.168.1.250
bridge-ports enp4s0
bridge-stp off
bridge-fd 0
auto vmbr1
iface vmbr1 inet static
address 192.168.1.81/24
bridge-ports enp5s0
bridge-stp off
bridge-fd 0
#Proxmox Management
I could access the Proxmox Admin UI and SSH to Proxmox using the new static IP address
192.168.1.81
. However the vmbr1 cannot access the internet
Bash:
curl -sSL --interface vmbr1 --connect-timeout 5 https://pve.proxmox.com/wiki | grep -Eoi '<title>.+</title>'
#curl: (7) Failed to connect to pve.proxmox.com port 443 after 3090 ms: Couldn't connect to server
# But vmbr0 can access internet
curl -sSL --interface vmbr0 --connect-timeout 5 https://pve.proxmox.com/wiki | grep -Eoi '<title>.+</title>'
#<title>Proxmox VE</title>
QUESTION: vmbr1 has no gateway definition. Because if I set the same gateway than vmbr0, Proxmox will reject the creation of vmbr1 (gateway
192.168.1.250
is already used). However the IP address 192.168.1.81
is in the same subnet than the enp4s0 interface underlying the vmbr0 bridge. Should it use automatically the same gateway defined for the subnet 192.168.1.0/24
?I suppose this question is more of a general linux networking question rather than Proxmox specific. I wonder what is the purpose of the vmbr1 bridge, because for managing Proxmox server, I think I could use the enp5s0 interface directly without creating a bridge.
The reason I create the new bridge vmbr1, is in fact extracted from a tutorial How to Run OPNsense in a Proxmox Virtual Machine for Evaluation Purposes Before I go through with the exercise, I'd like to play around a bit to get familiarized with Proxmox networking.
Last edited: