Fixing Network Bridge & New NIC

emcdch

New Member
Jan 27, 2025
2
0
1
Hello!

I have an issue that I am way over my head on. I am inexperienced with Linux network bridges and I somehow managed to toast my one existing Linux bridge. When I installed my IBM 49Y4241 4-port NIC, it reset my network settings and I had to manually change the /etc/network/interfaces file to get any network back to my proxmox environment. However, at the moment, the onboard NIC is labeled as an unknown network device and the original network bridge no longer works. How would I go about resetting my network settings and building a bridges for one WAN port (built-in NIC) and 4 LAN ports (IBM 49Y4241 NIC)? Here is a screen shot of my current host network config.

Thanks!

Screenshot_2025-01-27_14-50-01.png
 
Hey,

what is the output of cat /etc/network/interfaces and ip a?
 
Hannes,

Here is what I get for cat:

auto lo
iface lo inet loopback

auto enp3s0
iface enp3s0 inet dhcp

auto enp1s0f0
iface enp1s0f0 inet manual

auto enp1s0f1
iface enp1s0f1 inet manual

auto enp1s0f2
iface enp1s0f2 inet manual

auto enp1s0f3
iface enp1s0f3 inet manual

auto vmbr0
iface vmbr0 inet static
address 192.168.217.25/24
gateway 192.168.217.1

auto vmbr2
iface vmbr2 inet static
address 10.0.0.101/24
bridge-ports enp1s0f1
bridge-stp off
bridge-fd 0
#IBM 49Y4241

Here is what I get for 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: enp3s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 44:8a:5b:08:02:4a brd ff:ff:ff:ff:ff:ff
inet 192.168.217.14/24 brd 192.168.217.255 scope global dynamic enp3s0
valid_lft 86017sec preferred_lft 86017sec
inet6 fe80::468a:5bff:fe08:24a/64 scope link
valid_lft forever preferred_lft forever
3: enp1s0f0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN group default qlen 1000
link/ether 90:e2:ba:55:41:78 brd ff:ff:ff:ff:ff:ff
4: enp1s0f1: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq master vmbr2 state DOWN group default qlen 1000
link/ether 90:e2:ba:55:41:79 brd ff:ff:ff:ff:ff:ff
5: enp1s0f2: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN group default qlen 1000
link/ether 90:e2:ba:55:41:7a brd ff:ff:ff:ff:ff:ff
6: enp1s0f3: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN group default qlen 1000
link/ether 90:e2:ba:55:41:7b brd ff:ff:ff:ff:ff:ff
7: vmbr2: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default qlen 1000
link/ether 90:e2:ba:55:41:79 brd ff:ff:ff:ff:ff:ff
inet 10.0.0.101/24 scope global vmbr2
valid_lft forever preferred_lft forever

If you need any other information, please let me know. Thanks!