Thank you for your info. In fact I used the following script in my DM500 and it worked nicely. I want to implement it in DM800 as well.
gt_standby.sh
#!/bin/sh
PSW="dreambox"
TMPFILE="/tmp/tmpWebIF.standby"
if [ "$1" = "" ]; then
sleep 20
else
sleep $1
fi
wget -O $TMPFILE -q http://root:$PSW@localhost/cgi-bin/admin?command=standby
rm $TMPFILE
exit 0
init
#!/bin/sh
/var/script/gt_standby.sh 40 &
How do I implement the above in DM800. Appreciate your help.