# 1. ping might not be reliable when having duplicated mac
ping -b 192.168.1.255
arp -n
# 1.1 however, the two machine can be assign different ip
# (most likely) netplan -> dhcp-identifier -> can use duid as idenfier instead of mac
# (less likely) dhcp server have a really low lease time
# in this case, arp table will contain two ips point to the same mac.
10.137.159.110 ether 34:12:78:56:00:00 C enP7p4s0
10.137.159.214 ether 34:12:78:56:00:00 C enP7p4s0
# ping will get redirected. But it will fail later on
From 10.137.159.214: icmp_seq=6 Redirect Host(New nexthop: 10.137.159.110)
# 2. have a managed switch so that we can check mac address per-port
# 3. arpwatch?