Difference between revisions of "Wake on LAN"

From LinuxMCE
Jump to: navigation, search
(Added -i option for use of eth1 interface)
m
Line 7: Line 7:
 
   man etherwake
 
   man etherwake
  
for more info. This will send a 'magic packet' to the device targeted and as long as that device has the bios & Network interface options to do WOL then your in business. Obviously you could build some scripts to make this work more slickly and also trigger those scripts based on other events or even time of day etc etc.
+
for more info. This will send a 'magic packet' to the device targeted and as long as that device has the bios & Network interface options to do WOL then you're in business. Obviously you could build some scripts to make this work more slickly and also trigger those scripts based on other events or even time of day etc etc.
  
 
Remember that etherwake will use eth0 by default which might not be your internal network. To use for example eth1 type
 
Remember that etherwake will use eth0 by default which might not be your internal network. To use for example eth1 type

Revision as of 10:22, 23 March 2010

From the command line type;

   etherwake <mac-address of device> or even moonID (for MD/PC's)

try;

  man etherwake

for more info. This will send a 'magic packet' to the device targeted and as long as that device has the bios & Network interface options to do WOL then you're in business. Obviously you could build some scripts to make this work more slickly and also trigger those scripts based on other events or even time of day etc etc.

Remember that etherwake will use eth0 by default which might not be your internal network. To use for example eth1 type

   etherwake -i eth1 <mac-address of device>

Taken from the forum [1].