KiaraGrouwstra / nix-config

my NixOS configuration
15 stars 1 forks source link

add wake-on-lan #97

Closed KiaraGrouwstra closed 5 years ago

KiaraGrouwstra commented 5 years ago

see:

KiaraGrouwstra commented 5 years ago

listing devices by ifconfig -a, wlp5s0 and enp4s0 seem plausible. trying those with ethtool as per the articles:

$ sudo ethtool wlp5s0
Settings for wlp5s0:
        Link detected: yes
$ sudo ethtool enp4s0
Settings for enp4s0:
        Supported ports: [ TP ]
        Supported link modes:   10baseT/Half 10baseT/Full 
                                100baseT/Half 100baseT/Full 
                                1000baseT/Full 
        Supported pause frame use: Symmetric Receive-only
        Supports auto-negotiation: Yes
        Supported FEC modes: Not reported
        Advertised link modes:  10baseT/Half 10baseT/Full 
                                100baseT/Half 100baseT/Full 
                                1000baseT/Full 
        Advertised pause frame use: Symmetric
        Advertised auto-negotiation: Yes
        Advertised FEC modes: Not reported
        Speed: Unknown!
        Duplex: Unknown! (255)
        Port: Twisted Pair
        PHYAD: 0
        Transceiver: internal
        Auto-negotiation: on
        MDI-X: Unknown
        Current message level: 0x000060e4 (24804)
                               link ifup rx_err tx_err hw wol
        Link detected: no
$ sudo ethtool -s wlp5s0 wol g
Cannot get current wake-on-lan settings: Operation not supported
  not setting wol
$ sudo ethtool -s enp4s0 wol g
Cannot get current wake-on-lan settings: Operation not supported
  not setting wol

so... they don't support it and I'm stuck? if not actionable I'll close this.