SO to recap...
When I change a PCI card all the bus locations will change. So I just update my /etc/network/interfaces to refer to the correct
`bus info: pci@0000:05:00.0` or `logical name: enp5s0`
Essentially create a new interface link normal, correct?
Does my on motherboard NIC fall into "Predictable Naming" My static ip/ main lan ip is vmbr0.
Here's my current conf wirth 1 video card and functioning properly.
<code>
GNU nano 2.7.4 File: /etc/network/interfaces Modified
auto lo
iface lo inet loopback
auto vmbr0
iface vmbr0 inet static
address 10.10.11.196
netmask 255.255.255.0
gateway 10.10.11.254
bridge_ports enp4s0
bridge_stp off
bridge_fd 0
##messed up from testing...
auto enp4s0
iface enp8s0 inet dhcp
</code>
<code>
root@prox:~# ifconfig
enp4s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
ether bc:5f:f4:97:62:51 txqueuelen 1000 (Ethernet)
RX packets 742509 bytes 173404280 (165.3 MiB)
RX errors 0 dropped 1782 overruns 0 frame 0
TX packets 1253606 bytes 1617139710 (1.5 GiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
device interrupt 16
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 93144 bytes 18782112 (17.9 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 93144 bytes 18782112 (17.9 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
tap201i0: flags=4419<UP,BROADCAST,RUNNING,PROMISC,MULTICAST> mtu 1500
ether 3e:fe:7f:a5:b6:65 txqueuelen 1000 (Ethernet)
RX packets 319806 bytes 1521796447 (1.4 GiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 663444 bytes 133415135 (127.2 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
vmbr0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 10.10.11.196 netmask 255.255.255.0 broadcast 10.10.11.255
inet6 fe80::be5f:f4ff:fe97:6251 prefixlen 64 scopeid 0x20<link>
ether bc:5f:f4:97:62:51 txqueuelen 1000 (Ethernet)
RX packets 298867 bytes 45835015 (43.7 MiB)
RX errors 0 dropped 9 overruns 0 frame 0
TX packets 42526 bytes 31071938 (29.6 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
</code>