0
0
mirror of https://github.com/openwrt/packages.git synced 2025-02-07 06:59:51 +00:00
packages/net/etherwake/files/etherwake.config
Stefan Weil 6d2c0fd06f net: Fix typos (found by codespell)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
2016-04-10 12:51:10 +02:00

29 lines
861 B
Plaintext

config 'etherwake' 'setup'
# possible program paths
option 'pathes' '/usr/bin/etherwake /usr/bin/ether-wake'
# use sudo, defaults to off
option 'sudo' 'off'
# interface, defaults to 'eth0'
# -i <ifname>
option 'interface' ''
# send wake-up packet to the broadcast address, defaults to off
# -b
option 'broadcast' 'off'
config 'target'
# name for the target
option 'name' 'example'
# mac address to wake up
option 'mac' '11:22:33:44:55:66'
# password in hex without any delimiters
option 'password' 'AABBCCDDEEFF'
# wake up on system start, defaults to off
option 'wakeonboot' 'off'
# To add a new target use:
# uci add etherwake target
# uci set etherwake.@target[-1].name=example
# uci set etherwake.@target[-1].mac=11:22:33:44:55:66
# uci set etherwake.@target[-1].password=AABBCCDDEEFF
# uci set etherwake.@target[-1].wakeonboot=off