Jump to content
XPEnology Community

Recommended Posts

Posted

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.

Posted

It's stopped working again :sad:

 

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?

Posted
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.:mrgreen:

Posted

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.

  • 3 months later...
Posted
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.

Posted

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?

×
×
  • Create New...