Hello,
TL;DR: I want a Proxmox instance for a homelab, but after installing it, `vmbr0` is not configured ; configuring it manually brings down access to the Proxmox instance.
First time user Proxmox user here. Full disclaimer: I'm not a networking expert, I do have basics knowledge on how usual home network work, but I suppose the issue I'm experiencing today is related to my lack of knowledge here. I planned to follow a full course on Linux networking, but for that, I wanted to set up.... a proxmox instance as a lab.
Hardware:
Dell Optiplex 9020 SFF with
Due to Xorg errors when trying to install via the bare-metal ISO installer, I opted for the Proxmox VE on top of debian 11 bullseye installation, then upgraded to the pve-kernel-6.2 kernel. All went well there.
Network context:
Can't make it more basic : I have a flat network behind my ISP router/switch with 192.168.0.0/24. The proxmox instance is connected via Ethernet (and I would like it to have fixed IP 192.168.0.14, more on that later).
What happened:
Once the installation was done, I quickly realized that my VMs didn't have Internet connectivity, and after looking in the Proxmox settings, I saw that there was no bridge interface. I set up to add it through the GUI. I attached it to the physical `eno1` interface, put a CIDR 10.0.0.0/24, then applied configuration, and I wasn't able to access my instance both via ssh or GUI afterwards.
The configuration before the apply was the following :
The applied configuration is the following :
Then all connection to the host is lost.
Can you help please ?
TL;DR: I want a Proxmox instance for a homelab, but after installing it, `vmbr0` is not configured ; configuring it manually brings down access to the Proxmox instance.
First time user Proxmox user here. Full disclaimer: I'm not a networking expert, I do have basics knowledge on how usual home network work, but I suppose the issue I'm experiencing today is related to my lack of knowledge here. I planned to follow a full course on Linux networking, but for that, I wanted to set up.... a proxmox instance as a lab.
Hardware:
Dell Optiplex 9020 SFF with
- i7 4790
- 24Go RAM
- 256Gb SSD
- AMD RX 6400
- BIOS option VT-d enabled
Due to Xorg errors when trying to install via the bare-metal ISO installer, I opted for the Proxmox VE on top of debian 11 bullseye installation, then upgraded to the pve-kernel-6.2 kernel. All went well there.
Network context:
Can't make it more basic : I have a flat network behind my ISP router/switch with 192.168.0.0/24. The proxmox instance is connected via Ethernet (and I would like it to have fixed IP 192.168.0.14, more on that later).
What happened:
Once the installation was done, I quickly realized that my VMs didn't have Internet connectivity, and after looking in the Proxmox settings, I saw that there was no bridge interface. I set up to add it through the GUI. I attached it to the physical `eno1` interface, put a CIDR 10.0.0.0/24, then applied configuration, and I wasn't able to access my instance both via ssh or GUI afterwards.
The configuration before the apply was the following :
Code:
# /etc/network/interfaces
# The loopback network interface
auto lo iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet dhcp
The applied configuration is the following :
Code:
# /etc/network/interfaces
# The loopback network interface
auto lo iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet dhcp
auto vmbr0
iface vmbr0 inet static
address 10.0.0.0/24
gateway 10.0.0.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
Then all connection to the host is lost.
Can you help please ?
Last edited: