Wake on lan not working

still not working with hassio, broadcast address is correct

  - platform: wake_on_lan
    mac_address: "70-85-C2-5D-88-5D"
    name: "pc"
    host: 10.0.1.82
    broadcast_address: 10.0.1.255

how do I change hassio to implement:

--net=host

looks like hassio is allready in host mode?:

from: https://github.com/home-assistant/hassio/blob/23c35d4c80a1c8b5de8a026e4edec8554d8c6c83/hassio/docker/homeassistant.py

        ret = self._docker.run(
        self.image,
        name=self.name,
        hostname=self.name,
        detach=True,
        privileged=True,
        init=True,
        devices=self.devices,
        network_mode='host',

I found it, I had to select ACPI S3 power saving in BIOS in stead of S1

When running Kodi on Raspberry Pi, WOL won’t work. Looks like the ethernet hardware is connected via USB and that does not support WOL. More info: https://www.raspberrypi.org/forums/viewtopic.php?t=39714

This works. Bridge mode was not enough in my case as well so connecting the container to HOST solved the issue.

Man thank you so much.

adding dashes and broadcast_address fixes the problem for me (without network_mode='host')

Adding broadcast_address fixed this for me, but apparently colons work now which is nice since I can just copy & paste the MACs right out of the router.