Você não receberá o endereço IP dessa maneira, mas poderá ver quais MACs a bridge aprendeu:
# brctl showmacs br0
port no mac addr is local? ageing timer
1 00:16:3e:aa:bb:cc no 3.02
1 00:16:3e:ab:bb:cc no 30.37
1 00:16:3e:ac:bb:cc no 90.66
2 fe:ff:ff:ff:ff:ff yes 0.00
Observe a coluna port
, isso indica em qual interface ( port
) o pacote entrou na ponte. Se não estiver claro qual é qual, execute brctl show
.
Se você precisar do endereço IP também, precisará atribuir um endereço de rede à bridge e iniciar uma verificação de ping:
ip addr add X.X.X.X/yy dev br0
nmap -T5 -sP X.X.X.Z/yy
arp -a
ip addr del X.X.X.X/yy dev br0