- WD Community
- :
- Network Devices
- :
- Network Product Ideas
- :
- Wake On Lan (WOL) support for My Book Live
- WD Community
- News & Assistance
- Announcements
- New to Community
- Forum Feedback
- Off-Topic
- Software & Apps
- WD Software
- WD Mobile Apps
- Software & Accessory Ideas
- WD TV Live Streaming
- Live Streaming Discussions
- Live Streaming Firmware
- Live Streaming Ideas
- Live Streaming Issues
- WD TV Live Hub
- Hub Discussions
- Hub Firmware
- Hub Themes
- WD TV Live Hub Ideas
- WD TV Live Hub Issue Reporting
- WD TV Play
- WD TV Play
- Live & Live Plus
- Live Discussions
- Live Firmware
- Elements Play
- Elements Play
- External Drives
- Mac Externals
- PC Externals
- Portable Drives
- External Drive Ideas
- Network Devices
- Networking Devices
- Live Duo
- Sentinel
- My Book Live
- Other Network Drives
- Network Product Ideas
- Internal Drives
- Desktop & Portable
- Internal Drive Ideas
- Anuncios
- Noticias
- Nuevo a La Comunidad
- Los Productos de WD
- Software y Accesorios
- Reproductores Multimedia
- Unidades de Red
- Unidades Externas
- Unidades Internas
- Ankuendigungen
- Neuigkeiten
- Neu in der Community
- WD Produkte
- WD Programme
- WD TV Media Player
- Netzwerk Laufwerke
- Externe Laufwerke
- Interne Laufwerke
- Annunci
- Annunci e Novita'
- Nuovo per La Comunita'
- Prodotti WD
- Programmi & Accessori
- Riproduttori Multimediali
- Dischi di Rete
- Dischi Esterni
- Dischi Interni
- WD TV Legacy
- Hub Network
- Live Networking
- WD TV HD
- WD TV Mini
- Software
- WD Photos
- Other Software & Accessories
- Hard Drives
- WD ShareSpace
- Other Externals
- Other Internal Drives
- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Email to a Friend
- Printer Friendly Page
- Report Inappropriate Content
In the WD Quick View the shut down of the My Book Live is really easy and I use this a lot for energy saving reasons when I not using the NAS. But it is not possible to start the NAS so easily. To start the My Book Live you have to reconnect the power connector, because the My Book Live does not support WOL.
So please support WOL to boot the device when it is needed and if possible implement it also into the WD Quick View
You can also going further by doing a automatic shutdown when all Computer with WD Quick View are powered off and do a automatic startup when the first computer with the WD Quick View is starting. This will by a major step in the energy saving of your device.
Because nobody need a NAS when all Computer are power off especially in the private sector for what the My Book Live is designed.
- Mark as Read
- Mark as New
- Bookmark
- Highlight
- Email to a Friend
- Report Inappropriate Content
I couldn't agree more. Not having WOL is really a huge disappointment. I bought a WD MyBook 4 years ago and have enjoyed it. It seems well made, which is why I chose WD again. But how long is a drive going to last if you have to leave it spinning all the time? With no power switch, t's very inconvenient having to reach to the back to disconnect power, then reconnect. Very disappointed that there isn't WOL. It only seems logical.
- Mark as Read
- Mark as New
- Bookmark
- Highlight
- Email to a Friend
- Report Inappropriate Content
Not having WOL is also a huge disappointment to me. Having this feature would contribute to a more environment friendly NAS solution and would definitely be a great sales argument. So please consider this as a high priority enhancement request.
Thanks in advance.
- Mark as Read
- Mark as New
- Bookmark
- Highlight
- Email to a Friend
- Report Inappropriate Content
I'm not sure that the hardware used in the my book live supports wake on lan. Ethtool reports:
Settings for eth0:
Supported ports: [ MII ]
Supported link modes: 10baseT/Full
100baseT/Full
1000baseT/Full
Supports auto-negotiation: Yes
Advertised link modes: 10baseT/Full
100baseT/Full
1000baseT/Full
Advertised auto-negotiation: Yes
Speed: 100Mb/s
Duplex: Full
Port: MII
PHYAD: 1
Transceiver: external
Auto-negotiation: on
Link detected: yes
There is no mention of wake on lan there, and I believe there would be if the hardware was capable of it. It may well be possible by recompiling the driver, but as it stands I don't think it would be terribly easy to enable this.
- Mark as Read
- Mark as New
- Bookmark
- Highlight
- Email to a Friend
- Report Inappropriate Content
- Mark as Read
- Mark as New
- Bookmark
- Highlight
- Email to a Friend
- Report Inappropriate Content
I fully agree with the need to implement WOL.
This drive is advertised to be accessible from everywhere in the world, and is not equipped with a decent powerup button (pulling out and putting in a powercable is bad on hardware), can be powered down remotely, after which you have to travel home ..........
Mees
- Mark as Read
- Mark as New
- Bookmark
- Highlight
- Email to a Friend
- Report Inappropriate Content
@ WDTony: and by " future products" you mean future firmware updates or really real products like new hardware? As there are a lot of people out there using MyBook World I think it should be somehow implemented in a (next!?) firmware release. Btw. the actuell Lion/time machine problem should also be solved asap!
- Mark as Read
- Mark as New
- Bookmark
- Highlight
- Email to a Friend
- Report Inappropriate Content
The good news: The APM82181 system-on-a-chip used in the My Book Live comes from the PowerPC 460 family which supports Wake-on-LAN. Google for "linux BCM54610 wake on lan".
The bad news: The current kernel driver (net/ibm_newemac) does not support this feature at all. Enabling it, if even possible, would require someone skilled in driver programming.
- Mark as Read
- Mark as New
- Bookmark
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hello,
although we have no 'real' WOL, there is a way to fake it.
You need:
* nmap network scanner installed (apt-get install nmap),
* the below script to shut down,
* a crontab entry to enable the script,
* a remote controlled wall socket adapter like this one between the NAS and the wall socket:
http://www.amazon.co.uk/Remote-Control-Socket-Set/
Leave the socket switched on. When you want to switch the device on, turn it off, then on again, using the remote control.
With the script below, the NAS will automatically shut down 10..20 minutes after the last client went offline (i.e. IP not reachable), and will check this every 10 minutes.
$ cat /autoshutdown.sh
#!/bin/sh
MYIP=$( /sbin/ifconfig eth0 | grep "inet " | cut -d: -f2 | cut -d " " -f1 )
NETWORK=$( echo "$MYIP" | cut -d. -f-3 )
CLIENTS=$NETWORK.0/24
ROUTERIP=$( route -n | grep ^0.0.0.0 | awk '{print $2;}' ),$NETWORK.254
TIMEOUTFILE=/root/autoshutdown.1
test -z "$MYIP" && MYIP=$ROUTERIP
# test for other clients in network (using ping scan)
if /usr/bin/nmap -qsPP $CLIENTS --exclude $MYIP,$ROUTERIP | \
/bin/grep -q "\(0 hosts up\)" ; then
# if timeout tag file exists, then shutdown
if test -f $TIMEOUTFILE ; then
/sbin/shutdown -h +1
else
echo "No clients up, shutdown in 10 minutes" | /usr/bin/wall
touch $TIMEOUTFILE
fi
else
if test -f $TIMEOUTFILE ; then
logger -t autoshutdown "Clients came up second time (or reboot), removing tag file"
rm $TIMEOUTFILE
fi
fiThen put this line into /etc/crontab:
*/10 * * * * root /autoshutdown.sh
If you have any clients that are reachable even when the NAS should shut down, then you can extend the "--exclude" command in the script with the other IPs.
DISCLAIMER 1: I have not tested this (yet) on the NAS. This script runs on my home server so far, which is also a Debian Linux OS, just like the MyBook Live. Success and failure reports welcome!
DISCLAIMER 2: The MyBook Live uses 3..5 Watts of power while idle. This translates to 3,6 kWh of monthly(!) power usage (0,005 * 24 * 30). If you are using the device daily, you will maybe save half of these costs. So if you need to buy a power switch just for this purpose, the costs will be greater than anything you'll save in energy in the first year of usage.
So, consider whether you will actually need this. You will save much more energy if you leave your car at home and take the bus just once a month, or use a broom instead of the vacuum to clean the hallway, or by going 80 instead of 100 mph on the motorway.
Regards
You must be a registered user to add a comment here. If you've already registered, please log in. If you haven't registered yet, please register and log in.
For a list of our Idea Exchanges, please click here.
Idea Statuses explained here.
-
defdef
on:
My Net 750 - Limiting power consumptio
n of attache... -
Zumfidl
on:
Functional "WOL" implementa
tion - RocketScience on: WD MyNet parental control features
- Ben342018 on: [Request] Shutdown / Reboot Button next to Logout ...
- Comm2000 on: Port Triggering for MyNet N900
- mirkokid on: File & Folder mail Link sharing from WD2go app as ...
- panga on: MBL / Twonky Changes
- nicopizza on: windows 8 is fast coming...
- iammike on: Access my I-tunes library and view m4v files
-
timsbuck2
on:
Remove mediacrawl
er from MyBook Live
- Provide different level of access to Folder and Su...
- Auto turn off
- Remove "Shared Videos" folders
- MACs / LAN networks (WD MyNet 900 Central).
- Log-out time.
- Solve the problem of wrong character copy for SAFE...
- To be able to put proxy parameters
- Access web GUI from wireless option
- Truecrypt
- add function to n750 and n900
-
Auto-Logout Dashboard
(1) -
backup
(1) -
BIG hard drive
(1) -
BT
(1) -
Channel Width
(1) -
compare
(1) -
Copy Manager
(1) -
Data loss
(1) -
dlna
(2) -
DLNA server
(1) -
download
(1) -
Feature
(1) -
file
(1) -
firmware
(1) -
firmware updates
(1) -
folder
(2) -
internet download
(1) -
iTunes
(1) -
link
(1) -
local
(1) -
mail
(1) -
Map
(1) -
mediacrawler
(1) -
MKV
(1) -
My Book Live
(3) -
Mybook Live
(4) -
N750
(1) -
NAS
(1) -
network control
(1) -
network drive
(1) -
newsreader
(1) -
nfs
(1) -
NFS4
(1) -
on My
(1) -
performance
(1) -
playlists
(1) -
power management
(1) -
power saving
(1) -
protokoll
(1) -
Proxy parameters
(1) -
Raid
(1) -
RAID-5
(1) -
recovery
(1) -
Remote
(1) -
Request
(1) -
RSYNC
(1) -
Schedule Power Up Down for My Book World Edition
(1) -
SFTP
(1) -
shares
(1) -
Sharespace
(2) -
sharing
(2) -
Sort order in MyBook Live twonky media server
(1) -
sub folder
(1) -
time machine
(1) -
torrent
(1) -
UPNP
(1) -
usenet newsgroups
(1) -
validation
(1) -
WD MYBook LIVE Apps
(1) -
wd2go
(2) -
wd2go.com
(1) -
WebOS
(1) -
Wireless Setup
(1) -
WOL
(1)
- New (93)
- Acknowledged (32)
- Duplicate Idea (5)
- Unplanned (37)
- In Review (3)
- Pending (0)
- Implemented (5)
| Forums | Ideas | News and Announcements | Register | Sign in | Help | Forum Guidelines | |


