DUC stands for Dynamic Update Client. This means that the program will keep track of any changes in your IP, and will automatically update the DNS stored in the No-IP servers. Thus, the people visiting your website will never know that they've been redirected to another IP.
Опитвай се да описваш всичко в първият пост защото ми трябваха няколко поста за да разбера нужните минимални подробности, защото от поста ти се разбира че ти спира нета на дрийма, проблема ти е съвсем друг.
Губи се домейн името което се обновява от компютъра решението е си инсталираш inadyn на dm-500.
How to configure inadyn on Enigma1
Loads of People asking and we assume everyone knows how to [IMG]http://www.***************/images/set7/005.gif[/IMG]
Here Little Manual, It can vary slightly from image to image
you should have inadyn file on var/bin, if not, send this one in Also send this called inadyn_script.sh to /var/script/ and cmod 755 edit your details, save and restart.
Inadyn will start automaticaly Both files attached for your use, enjoy [IMG]http://www.***************/images/smilies/coolthumb.gif[/IMG]coolthumb
SCRIPT FOR EAGLE, PUNTAL, NABILO, GEMINI, ETC
Things to edit
#!/bin/sh Like this to stop DAEMON
!/bin/sh Like this to start DAEMON
[email protected] Your DNS username
INADYN_PASSWORD=xxxxxx Your DNS password
INADYN_ALIAS=xxxxxx.no-ip.info Your DNS host
Code:
#!/bin/sh
DAEMON=/var/bin/inadyn
NAME=inadyn
DESC="InaDyn dynamic DNS Client"
INADYN_ON=1
[email protected]
INADYN_PASSWORD=xxxxxx
INADYN_ALIAS=xxxxxx.no-ip.info
UPDATE_PERIOD=60000
LOG_FILE_ON=0
LOG_NAME=/var/log/inadyn.log
DYN_SYSTEM_ON=0
[email protected]
test -f $DAEMON || exit 0
set -e
case "$1" in
start)
if [ $INADYN_ON -ne 0 ]; then
ARGS="-u $INADYN_USERNAME -p $INADYN_PASSWORD -a $INADYN_ALIAS --update_period $UPDATE_PERIOD"
if [ $LOG_FILE_ON = 1 ]; then
ARGS="$ARGS --log_file $LOG_NAME"
fi
if [ $LOG_FILE_ON = 2 ]; then
ARGS="$ARGS --syslog"
fi
if [ $DYN_SYSTEM_ON -ne 0 ]; then
ARGS="$ARGS --dyndns_system $DYN_SYSTEM"
fi
# echo -n "starting $DESC: $NAME... "
$DAEMON $ARGS &
# start-stop-daemon -S -b -n $NAME -a $DAEMON -- $ARGS
# echo "done."
fi
;;
stop)
# echo -n "stopping $DESC: $NAME... "
# start-stop-daemon -K -n $NAME
prockill $DAEMON
rm $LOG_NAME
# echo "done."
;;
restart)
# echo "restarting $DESC: $NAME... "
$0 stop
$0 start
# echo "done."
;;
*)
echo "Usage: $0 {start|stop|restart|reload}"
exit 1
;;
esac
exit 0