1aadeals Posted September 26, 2014 #1 Posted September 26, 2014 I've upgrade to DSM 5.0 Update 5 using nano boot. For the life of me i can't get WOL to work. Has anyone got any ideas or got it to work? I deeply appreciate any guidance.
fjf Posted September 27, 2014 #2 Posted September 27, 2014 In a HP n54l I got it to work (only within your lan, not from internet) with this tuto: http://www.xpenology.nl/wake-on-lan/ Use the "translate" on the right if you (like me) dont read dutch
1aadeals Posted September 27, 2014 Author #3 Posted September 27, 2014 Thank you. That's exactly the one I've been following. Just can't get it to work.
1aadeals Posted September 27, 2014 Author #4 Posted September 27, 2014 Managed to get it to work. Not sure what I did even
1aadeals Posted September 27, 2014 Author #7 Posted September 27, 2014 It's stopped working again I have to run the command "ethtool - s eth0 wol g" after every boot. Otherwise when the server shutdowns, WOL will not work. Do I need to do anything special to retain settings? Any ideas?
shteve Posted September 28, 2014 #8 Posted September 28, 2014 Either stick that command in an init script, or add it to the scheduled tasks under xpenology to run at startup.
1aadeals Posted September 28, 2014 Author #9 Posted September 28, 2014 Thx. I'm not running Xpenology. Using DSM straight on HP N54L
XPEH Posted September 28, 2014 #10 Posted September 28, 2014 Thx. I'm not running Xpenology. Using DSM straight on HP N54L Thats Right! DSM straight on HP N54L is not a XPenology project, its something else. Stand-alone project running Synology DSM on generic, third party hardware. Don't let anybody convince you otherwise even if you are using this site (xpenology.com) to get all the components needed for you DSM installation. Unbelievable naive self kidding.
hawie Posted September 29, 2014 #11 Posted September 29, 2014 It's one known bug (nanoboot series). temp fix code: #!/bin/sh case $1 in start) if [ -f /var/packages/shutdown_script/DSShutdown.sh ]; then /var/packages/shutdown_script/DSShutdown.sh & fi ;; stop) if [ -f /var/tmp/shut.down ]; then rm /var/tmp/shut.down fi ifconfig eth0 down ;; *) echo "Usage: $0 [start|stop]" ;; esac named as S99ZZZ_Shutdown.sh or anything you like. and chmod +x, put it to /usr/syno/etc/rc.d reboot.
rabside Posted December 31, 2014 #13 Posted December 31, 2014 It's one known bug (nanoboot series). temp fix code: #!/bin/sh case $1 in start) if [ -f /var/packages/shutdown_script/DSShutdown.sh ]; then /var/packages/shutdown_script/DSShutdown.sh & fi ;; stop) if [ -f /var/tmp/shut.down ]; then rm /var/tmp/shut.down fi ifconfig eth0 down ;; *) echo "Usage: $0 [start|stop]" ;; esac named as S99ZZZ_Shutdown.sh or anything you like. and chmod +x, put it to /usr/syno/etc/rc.d reboot. How does it work? the file /var/packages/shutdown_script/DSShutdown.sh doesn't exist, so this script only puts down the ethernet interface.
CtrlAltDel Posted December 31, 2014 #14 Posted December 31, 2014 (edited) You can get the script from a link in this WOL guide http://You can get the script from a link in this WOL guide http://www.xpenology.nl/wake-on-lan/ Edited December 31, 2014 by Guest
rabside Posted December 31, 2014 #15 Posted December 31, 2014 Hi CtrlAltDel, your URL Is empty. Could you correct it? Thank you
CtrlAltDel Posted December 31, 2014 #16 Posted December 31, 2014 Humm not sure what's going on there. You will need to paste it in > http://www.xpenology.nl/wake-on-lan/ Edit: Looks like there is a problem with using the tags?
rabside Posted December 31, 2014 #17 Posted December 31, 2014 In that guide the rar archive contains only the sh script posted by hawie. There isn't the /var/packages/shutdown_script/DSShutdown.sh file. Do you have it on your NAS?
rabside Posted December 31, 2014 #18 Posted December 31, 2014 Update: I've used the script without /var/packages/shutdown_script/DSShutdown.sh file and it works. I really don't understand how but it works
Recommended Posts