[solved]which host is connected to which physical port? (show mac-address-table)

Hello
I purchased switch CRS125-24G-1S and upgrade firmware to MikroTik RouterOS 6.36.3
Then i switch it to bridge mode, setup ip adress, and connect hosts to ports.

How i can see mac-address-table cisco (dlink) like?
I mean HOST-MAC-ADDRESS - PORT
eg

 
cisco> sh mac-address-table
 Vlan    Mac Address       Type        Ports
----    -----------       --------    -----
 103    822b.2b01.6b3a    DYNAMIC     Fa0/12
 101    01dc.dbdf.f580    DYNAMIC     Fa0/1
 101    4e0e.c8b0.0040    DYNAMIC     Fa0/1
 101    842b.2b01.663a    DYNAMIC     Fa0/12

I have tried ip arp print but it shows only my router!
mikrotik> ip arp print

Flags: X - disabled, I - invalid, H - DHCP, D - dynamic, P - published, C - complete
 #    ADDRESS         MAC-ADDRESS       INTERFACE
 0 DC 192.168.0.1   00:2B:13:01:C1:3B bridge1

Also i have tried interface bridge host print

mikrotik>interface bridge host print
Flags: L - local, E - external-fdb
  BRIDGE                                                                                         MAC-ADDRESS       ON-INTERFACE                                                                                         AGE
  bridge1                                                                                        00:04:13:2E:E2:BA ether1-master                                                                                        25s
  bridge1                                                                                        00:04:13:71:A2:B1 ether1-master                                                                                        17s
  bridge1                                                                                        00:0E:F2:D7:04:85 ether1-master                                                                                        24s
  bridge1                                                                                        00:0E:9B:E8:C7:D8 ether1-master                                                                                        0s
.....

It shows MAC-ADDRESS but it doesnt shows physical ports!


How can I determine which host is connected to which physical port?

Thank you.

You need to look at physical switch instead of the logical bridge. Try this:

 /interface ethernet switch host print

or

/interface ethernet switch unicast-fdb print
 /interface ethernet switch host print
 bad command name host (line 1 column 28)

but

/interface ethernet switch unicast-fdb print

Exactly what I need, thank you!

Great!

The frist will run on the “RB” units, the second will run on the “CRS” units.