Thanks
cageek and
nexox again. I finally figured out a bridge. It works, but I have a question mark on the "network" icon in the top right corner. Below is what did work:
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# Configure HP t740 with Intel i350-T4 PCIe ethernet adapter
# HP t740 Realtek ethernet port for "WAN"
auto enp2s0f0
iface enp2s0f0 inet manual
# Intel i350-T4 ethernet ports for "LAN"
auto enp1s0f0
iface enp1s0f0 inet manual
auto enp1s0f1
iface enp1s0f1 inet manual
auto enp1s0f2
iface enp1s0f2 inet manual
auto enp1s0f3
iface enp1s0f3 inet manual
# Creating the bridge
auto br0
iface br0 inet dhcp
bridge_ports enp2s0f0 enp1s0f0 enp1s0f1 enp1s0f2 enp1s0f3
My above method probably needs more work. I read about "allow-hotplug" on USB devices and will try that on some USB ports. "auto" was supposed to be okay on what I did above.
boerni666 Thanks very much for the file you included in your message. That looks better than mine. I'll try that on my Debian 13. I did alot of reading on networking, but did not find anything specific to what I wanted. There were combinations of iptables, nftables, and networking and deprecated commands from years ago. I wanted something without all of that and up to date. This is the first time I have completed a networking type problem and I am getting more into this. This is working out just fine. I'll be busy for awhile with this.
