Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Wake On Lan with REBOL ?

From: ronaldoff::free::fr at: 28-Feb-2004 2:10

Hi Rebolers, Did someone try to make a wake on Lan , with REBOL ? How can I send the physical adress of the target NIC ? I know I have to use UDP protocol, and I tested this : data: "00:D0:09:AD:71:F4" ; <---- is this correct ?? (physical remote NIC address) i: 0 repeat i 16 [ ; when sending 16 times it's physical address, the target NIC should awake connection: open udp://255.255.255.255:54000 set-modes connection [ broadcast: true ] insert connection data print rejoin ["sending " i] close connection ] But nothing happens on remote computer