Hello all,
I need a little help to get everything up and running here..
Recently I had to buy new hardware for our proxmox setup, due to the stability issues with the newest intel processors.
In the old setup, my mobo had two network interfaces, which i used both to seperate frigate network traffic from the rest.
No in the new setup, i have the Asus ROG crosshair X870E hero motherboard, with the Ryzen 9 7950x on it.
This board also has two interfaces, but proxmox only detects one of them.
With the old setup, proxmox automatically detected both ports so all i had to do is create a second bridge and everything worked perfectly.
But with the new setup, proxmox only detects one of them...
Right now, everything runs on this single interface, but i want to use both.
lspci | grep 'Ethernet':
ip a:
vmbr1 is the second bridge, which i intended for frigate.
ive added eno2 manually to /etc/network/interfaces. without succes unfortunately.
Can anyone point me in the right direction? how do i get the second port up and running?
Thanks in advance!
I need a little help to get everything up and running here..
Recently I had to buy new hardware for our proxmox setup, due to the stability issues with the newest intel processors.
In the old setup, my mobo had two network interfaces, which i used both to seperate frigate network traffic from the rest.
No in the new setup, i have the Asus ROG crosshair X870E hero motherboard, with the Ryzen 9 7950x on it.
This board also has two interfaces, but proxmox only detects one of them.
With the old setup, proxmox automatically detected both ports so all i had to do is create a second bridge and everything worked perfectly.
But with the new setup, proxmox only detects one of them...
Right now, everything runs on this single interface, but i want to use both.
lspci | grep 'Ethernet':
Code:
root@pve:~# lspci | grep 'Ethernet'
0d:00.0 Ethernet controller: Intel Corporation Ethernet Controller I226-V (rev 06)
0e:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. Device 8126 (rev 01)
ip a:
Code:
root@pve:~# ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host noprefixroute
valid_lft forever preferred_lft forever
2: eno1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master vmbr0 state UP group default qlen 1000
link/ether 60:cf:84:80:9a:ce brd ff:ff:ff:ff:ff:ff
altname enp13s0
3: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether 60:cf:84:80:9a:ce brd ff:ff:ff:ff:ff:ff
inet 192.168.1.220/24 scope global vmbr0
valid_lft forever preferred_lft forever
inet6 fe80::62cf:84ff:fe80:9ace/64 scope link
valid_lft forever preferred_lft forever
4: vmbr1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN group default qlen 1000
link/ether 82:36:83:fc:6f:87 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.197/24 scope global vmbr1
valid_lft forever preferred_lft forever
inet6 fe80::8036:83ff:fefc:6f87/64 scope link
valid_lft forever preferred_lft forever
ive added eno2 manually to /etc/network/interfaces. without succes unfortunately.
Code:
auto lo
iface lo inet loopback
iface eno1 inet manual
iface eno2 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.1.220/24
gateway 192.168.1.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
auto vmbr1
iface vmbr1 inet static
address 192.168.1.197/24
bridge-ports eno2
bridge-stp off
bridge-fd 0
source /etc/network/interfaces.d/*
Can anyone point me in the right direction? how do i get the second port up and running?
Thanks in advance!
Last edited: