lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

etherwake.config (861B)


      1 config 'etherwake' 'setup'
      2 	# possible program paths
      3 	option 'pathes' '/usr/bin/etherwake /usr/bin/ether-wake'
      4 	# use sudo, defaults to off
      5 	option 'sudo' 'off'
      6 	# interface, defaults to 'eth0'
      7 	# -i <ifname>
      8 	option 'interface' ''
      9 	# send wake-up packet to the broadcast address, defaults to off
     10 	# -b
     11 	option 'broadcast' 'off'
     12 
     13 config 'target'
     14 	# name for the target
     15 	option 'name' 'example'
     16 	# mac address to wake up
     17 	option 'mac' '11:22:33:44:55:66'
     18 	# password in hex without any delimiters
     19 	option 'password' 'AABBCCDDEEFF'
     20 	# wake up on system start, defaults to off
     21 	option 'wakeonboot' 'off'
     22 
     23 # To add a new target use:
     24 #  uci add etherwake target
     25 #  uci set etherwake.@target[-1].name=example
     26 #  uci set etherwake.@target[-1].mac=11:22:33:44:55:66
     27 #  uci set etherwake.@target[-1].password=AABBCCDDEEFF
     28 #  uci set etherwake.@target[-1].wakeonboot=off