Just a guess, but are you sure that
the connection should be opened and closed 16 times
as well ?
I suspect that the NIC address should be binary (6 bytes),
no ":" characters.
So try #{00D009AD71F4}
Also try reversing the byte order, sending it completely
in reverse order etc.

Anton.

> 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 

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.

Reply via email to