De acordo com a Formação de ponte de rede versus NIC? :
Bridging is usually used when you wish to combine two network connections, but not necessarily have them doing the same task (an example is if you want a VM to appear as a real machine on your network). You can bridge the VM's software NIC (if it has one) with a physical card giving it direct access to then LAN (rather than doing NAT)
It does make the computer see them as 1, but they'll only have one connection to the LAN/Internet.
Para saber que as interfaces usadas para criar pontes usam o bridge-utils no linux. por exemplo brctl show br0 , então ele mostrará as interfaces usadas para criar a bridge br0 e o endereço de hardware (endereço MAC) de br0 é o endereço MAC da primeira interface que é usada para criar a bridge br0. Então aqui a primeira interface que você verá depois de executar brctl show é eth2. Depois de ver seu resultado ifconfig, parece que existe uma ponte entre a interface eth2 para outras interfaces, como eth1, eth3, eth4 e eth5, nomeadas como eth2.1 e assim por diante. Você está vendo que o endereço MAC para eth2.5 é diferente porque durante a criação da bridge o eth5 é considerado como a primeira interface.