My Home Assistant Server needs to send WOL to my TV. I am using Unifi gear, and in order to do WOL between different subnets I need to add a static ARP. My confusion here is where to put the MAC address; after reading this thread, I'm confused about the exact order and placement of the MAC and IP addresses.
HA: 192.168.1.230 mac address = ac:b6:12:2b:1f:37
TV: 192.168.15.15 mac address = b8:13:ge:h5:41:44
DHCP rage is 192.168.1.10 - 192.168.1.254
So if I understand correctly, in my setup, it could be:
HA: 192.168.1.230 mac address = ac:b6:12:2b:1f:37
TV: 192.168.15.15 mac address = b8:13:ge:h5:41:44
DHCP rage is 192.168.1.10 - 192.168.1.254
So if I understand correctly, in my setup, it could be:
Code:
{
"protocols": {
"static": {
"arp": {
"192.168.1.9": {
"hwaddr": "ac:b6:12:2b:1f:37"
},
"192.168.15.9": {
"hwaddr": "b8:13:ge:h5:41:44"
}
}
}
}
}