Jump to content
XPEnology Community

WOL in DSM 5.0 (N54L)


1aadeals

Recommended Posts

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:

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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

Link to comment
Share on other sites

×
×
  • Create New...