/etc/network/interfaces
config. vmbr0
- you can add your second NIC to the bridge-ports
don't forget to restart your networking.service
or simply change those settings via webgui: HOST > System > Networkiface enp6s0 inet manual
iface enp4s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 10.0.0.5/24
gateway 10.0.0.1
bridge-ports enp6s0 enp4s0
bridge-stp off
bridge-fd 0
linux bond interface
as described in the official Proxmox documentation - https://pve.proxmox.com/wiki/Network_Configuration#sysadmin_network_bondA bond is a solution for redundancy and/ or spit traffic over 2 or more nic card. you have only the speed of one nic card. e.g. 1 GBit/s duplex 2 GBit/s.This would add the bandwidth of both cards, right?Thank you!!