I'm having a tough time really getting into proxmox because of some very weird networking situations here.
The first issue I ran into was just simply trying to get WiFi to actually work. After getting the connection going, installing wpa_supplicant, etc. it just seems like a nightmare. I ran across another reddit post that mentioned the same thing, and then eventually stumbled upon this not being recommended per the wiki. So this is OK.
Now that I've committed to just going ethernet, I can't figure out why enp3s0 isn't pulling a DHCP address automatically. I have to manually run `dhclient` for this to work. I'm using NetworkManager and here's my `/etc/network/interfaces` configuration:
However, during a reboot it seems like this is being ignored.
Lastly, proxmox keeps prioritizing the default route over vmbr0 instead of enp3s0. So, in order for me to connect to it, I have to physically login and delete the default route via the vmbr0 interface.
My home network resides on 10.x.x.x/24 but I plugged in 192.168.1.250/24 for the "proxmox management environment". I've tried configuring 10.x.x.x/24 for the vmbr0 network, but because it keeps prioritizing the vmbr0 interface over enp3s0, I simply lose network access to the proxmox server because it's trying to get out of an interface other than enp3s0.
Would someone mind chiming in to let me know what I'm doing wrong here? The two questions I specifically have are:
The first issue I ran into was just simply trying to get WiFi to actually work. After getting the connection going, installing wpa_supplicant, etc. it just seems like a nightmare. I ran across another reddit post that mentioned the same thing, and then eventually stumbled upon this not being recommended per the wiki. So this is OK.
Now that I've committed to just going ethernet, I can't figure out why enp3s0 isn't pulling a DHCP address automatically. I have to manually run `dhclient` for this to work. I'm using NetworkManager and here's my `/etc/network/interfaces` configuration:
Code:
auto lo
iface lo inet loopback
auto enp3s0
iface enp3s0 inet dhcp
auto wlp2s0
iface wlp2s0 inet dhcp
auto vmbr0
iface vmbr0 inet static
address 192.168.1.250/24
gateway 192.168.1.1
bridge-ports enp3s0
bridge-stp off
bridge-fd 0
However, during a reboot it seems like this is being ignored.
Lastly, proxmox keeps prioritizing the default route over vmbr0 instead of enp3s0. So, in order for me to connect to it, I have to physically login and delete the default route via the vmbr0 interface.
My home network resides on 10.x.x.x/24 but I plugged in 192.168.1.250/24 for the "proxmox management environment". I've tried configuring 10.x.x.x/24 for the vmbr0 network, but because it keeps prioritizing the vmbr0 interface over enp3s0, I simply lose network access to the proxmox server because it's trying to get out of an interface other than enp3s0.
Would someone mind chiming in to let me know what I'm doing wrong here? The two questions I specifically have are:
- Why isn't enp3s0 automatically picking up DHCP? Is it due to some conflicting networking services or something?
- Why does it keep prioritizing vmbr0? Is it because of what I just mentioned in #1?
- Is my vmbr0 network interface set up correctly, or does this need to be the same network as my home LAN? 192.168.1.x/24 does not exist anywhere within my local network at all, just simply proxmox, so I suppose this is having an issue.
Last edited: