ddclient-support Mailing List for ddclient (Page 21)
Brought to you by:
supersandro2000,
wimpunk
This list is closed, nobody may subscribe to it.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
(1) |
Oct
(4) |
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
(5) |
Dec
|
2007 |
Jan
(2) |
Feb
(38) |
Mar
(13) |
Apr
(10) |
May
(30) |
Jun
(18) |
Jul
(17) |
Aug
(4) |
Sep
(2) |
Oct
|
Nov
(1) |
Dec
|
2008 |
Jan
|
Feb
|
Mar
(1) |
Apr
(2) |
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
(2) |
Oct
(3) |
Nov
(1) |
Dec
|
2009 |
Jan
(1) |
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
(1) |
Feb
(4) |
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
(1) |
Feb
|
Mar
(2) |
Apr
|
May
(9) |
Jun
|
Jul
|
Aug
|
Sep
(5) |
Oct
(1) |
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
(3) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
(2) |
Feb
(2) |
Mar
|
Apr
|
May
(4) |
Jun
(9) |
Jul
(7) |
Aug
(5) |
Sep
|
Oct
(1) |
Nov
(3) |
Dec
(1) |
2014 |
Jan
|
Feb
(1) |
Mar
|
Apr
(10) |
May
(9) |
Jun
(6) |
Jul
(7) |
Aug
(3) |
Sep
(4) |
Oct
(7) |
Nov
|
Dec
|
2015 |
Jan
(4) |
Feb
|
Mar
|
Apr
|
May
(4) |
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
(1) |
Nov
(4) |
Dec
|
2017 |
Jan
|
Feb
(4) |
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
(8) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2018 |
Jan
(3) |
Feb
(1) |
Mar
(1) |
Apr
(1) |
May
(4) |
Jun
(1) |
Jul
(1) |
Aug
(3) |
Sep
(2) |
Oct
(3) |
Nov
|
Dec
(8) |
2019 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(10) |
Sep
(10) |
Oct
(5) |
Nov
|
Dec
(2) |
2020 |
Jan
(3) |
Feb
(1) |
Mar
(3) |
Apr
(2) |
May
(47) |
Jun
(99) |
Jul
(14) |
Aug
(2) |
Sep
|
Oct
(2) |
Nov
|
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2023 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: SourceForge.net <no...@so...> - 2007-02-25 20:33:06
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4177733 By: wimpunk Thank your for the patch. Could you add your init script to the patches section or send it to me directly so I don't have to reformat it. :-) Tnx, wimpunk at sf dot net ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-25 02:50:18
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4176949 By: clander I have recently created a SuSE run control script within /etc/init.d so that I could add ddclient as a run lelvel service. The script is a hybrid from existing RCscripts, scripts installed along with the ddclient package, and my own efforts. AFAIK having done some testing on my own system it works as expected on the command prompt and within Yast->System->System sewrvices (Runlevel) I hope this may prove useful to others... Best regards Chris Lander -[BEGIN]- #! /bin/sh # Copyright (c) 2002-2004 SuSE Linux AG, Nuernberg, Germany. # All rights reserved. # # Adapted from an original script created by Lars Mueller <lm...@su...>, # along with further input from the ddclient distribution this script is a # heavily modified hybrid authored by Chris Lander <cl...@la...> that # was created on a SuSE 10.0-OSS system. # # /etc/init.d/ddclient # and its symbolic link # /usr/sbin/rcddclient # ### BEGIN INIT INFO # Provides: ddclient # Required-Start: $network syslog # Required-Stop: # Default-Start: 3 5 # Default-Stop: 0 1 2 6 # Description: Dynamic DNS service update deamon ### END INIT INFO DDCLIENT_BIN="/usr/sbin/ddclient" DDCLIENT_CMD="ddclient" DDCLIENT_CONF="/etc/ddclient.conf" PID_FILE="/var/run/ddclient.pid" . /etc/rc.status rc_reset # Check for missing binary if [ ! -x ${DDCLIENT_BIN} ]; then echo -n >&2 "ddclient daemon, ${DDCLIENT_BIN} is not installed. " rc_status -s exit 5 fi case "$1" in start) echo -n "Starting ddclient daemon " if [ ! -f ${DDCLIENT_CONF} ]; then echo -n >&2 "ddclient configuration file, ${DDCLIENT_CONF} does not exist. " rc_status -s exit 6 fi checkproc -p ${PID_FILE} ${DDCLIENT_CMD} case $? in 0) echo -n "- Warning: daemon already running. " ;rc_failed;rc_status -v;exit;; esac ${DDCLIENT_CMD} -daemon 300 -file ${DDCLIENT_CONF} rc_status -v ;; stop) echo -n "Shutting down ddclient daemon " checkproc -p ${PID_FILE} ${DDCLIENT_CMD} if [[ $? -eq 0 ]]; then killproc -p ${PID_FILE} -t 10 ${DDCLIENT_CMD} else echo -n " Warning: daemon not running. " rc_failed fi rc_status -v ;; try-restart|condrestart) if test "$1" = "condrestart"; then echo "${attn} Use try-restart ${done}(LSB)${attn} rather than condrestart ${warn}(RH)${norm}" fi $0 status if test $? = 0; then $0 restart else rc_reset fi rc_status ;; restart) $0 stop $0 start rc_status ;; status) echo -n "Checking for ddclient daemon " checkproc -p ${PID_FILE} ${DDCLIENT_CMD} rc_status -v ;; *) echo "Usage: $0 {start|stop|status|try-restart|restart|}" exit 1 ;; esac rc_exit -[END]- ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-24 18:48:22
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4176568 By: wimpunk It's just a problem with the init scripts. We provide an example but it doesn't always work. You could check the skeleton init script from your distribution and try to modify it. Or you could install ddclient provided with FC6 and use that init script. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-24 13:31:44
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4176277 By: d0r5 Nice!its totally works now...just final question cant use chkconfig with FC6 is there another way to use it at boot? ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-23 14:34:14
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4174678 By: ernie49 It doesn't depend on a few days. It's for personel use. I am grateful for this assistance. Many thanks for your time spending on my problem. Kind regards ernie49 ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-23 14:10:02
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4174640 By: wimpunk It's already fixed in the subversion version. I don't think it causes any other problem, ddclient still works correct. wimpunk. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-23 14:05:18
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4174634 By: wimpunk You could try to solve it using another '-use' option. Otherwise, if it's really a dns problem, you could try to add members.dyndns.org to your /etc/host file. If it isn't a dnsproblem, I really have no idea what's going wrong. Ddclient uses the underlying perl-system to resolve the name. Maybe you could try to post a logging about what's happens when it goes wrong? wimpunk. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-23 13:56:59
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4174625 By: wimpunk During the weekend I'll try to modify their patch for 3.7.1 and post it back. I hope you have a little patience. wimpunk ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-23 13:00:02
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4174522 By: d0r5 :o so i should just wait :( hope it will be ready soon Thanks ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-23 11:07:12
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4174398 By: fgillote Hello Thanks for your reply. Unfortunately the problem is not linked to nscd for me because nscd is stopped on my machine. My ifup-ppp script is already modified to restart the ddclient when the connection is up, but it does not solve completely the problem if we suppose the Internet connection stays up and the DNS are unreachable for a short time or if the members.dydns.org server is down for a short time ... I am still searching .. Thanks Fred ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-23 10:18:45
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4174322 By: ernie49 Deleting cache file already done(first stopping ddclient, deleting cache file, starting ddclient). Second I already post the config with my first post. Third, what did you mean with "how ddclient gets started".Can you explain please? When I type "ddclient start", it starts normaly and when I go to message log it marks me the messages posted in the previous posts. I now the config on http://www.eurodns.com/info/faq/#. The a 3 days ago, I wrote an email to EuroDNS to know if I must apply the patch for the last release (3.7.1)? I'm still waiting the answer. Still one question. How to apply the patch from EuroDNS? ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-23 10:00:34
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4174305 By: wimpunk Btw, on http://www.eurodns.com/info/faq/# there's an example and a patch for ddclient. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-23 09:56:14
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4174303 By: wimpunk First, remove your cache file. Second post your config with password removed either to the forum or to ddclient.pastebin.co.uk. Third, verify how ddclient gets started. It looks like it either tries to hard to update (wrong min interval) or there are more than one instance running. You could also join irc://irc.freenode.org/#ddclient. regards, wimpunk. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-23 09:48:33
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4174293 By: ernie49 Do you want the entire log file, there you can see that it marks every 5 minutes the same message. Feb 22 06:22:32 firewall ddclient[1787]: WARNING: file /var/cache/ddclient/ddclient.cache, line 5: Invalid Value for keyword 'ip' = '' Feb 22 06:27:32 firewall ddclient[1787]: WARNING: file /var/cache/ddclient/ddclient.cache, line 4: Invalid Value for keyword 'ip' = '' Feb 22 06:27:32 firewall ddclient[1787]: WARNING: file /var/cache/ddclient/ddclient.cache, line 5: Invalid Value for keyword 'ip' = '' Feb 22 06:27:32 firewall ddclient[1787]: WARNING: skipping update of mail.sitz.org from <nothing> to 83.99.2.118. Feb 22 06:27:32 firewall ddclient[1787]: WARNING: last updated <never> but last attempt on Thu Feb 22 06:22:32 2007 failed. Feb 22 06:27:32 firewall ddclient[1787]: WARNING: Wait at least 5 minutes between update attempts. Feb 22 06:27:32 firewall ddclient[1787]: WARNING: skipping update of www.sitz.org from <nothing> to 83.99.2.118. Feb 22 06:27:32 firewall ddclient[1787]: WARNING: last updated <never> but last attempt on Thu Feb 22 06:22:32 2007 failed. Feb 22 06:27:32 firewall ddclient[1787]: WARNING: Wait at least 5 minutes between update attempts. Feb 22 06:37:33 firewall ddclient[1787]: WARNING: file /var/cache/ddclient/ddclient.cache, line 4: Invalid Value for keyword 'ip' = '' Feb 22 06:37:33 firewall ddclient[1787]: WARNING: file /var/cache/ddclient/ddclient.cache, line 5: Invalid Value for keyword 'ip' = '' Feb 22 06:37:33 firewall ddclient[1787]: WARNING: skipping update of mail.sitz.org from <nothing> to 83.99.2.118. Feb 22 06:37:33 firewall ddclient[1787]: WARNING: last updated <never> but last attempt on Thu Feb 22 06:32:32 2007 failed. Feb 22 06:37:33 firewall ddclient[1787]: WARNING: Wait at least 5 minutes between update attempts. Feb 22 06:37:33 firewall ddclient[1787]: WARNING: skipping update of www.sitz.org from <nothing> to 83.99.2.118. Feb 22 06:37:33 firewall ddclient[1787]: WARNING: last updated <never> but last attempt on Thu Feb 22 06:32:32 2007 failed. Feb 22 06:37:33 firewall ddclient[1787]: WARNING: Wait at least 5 minutes between update attempts. Feb 22 06:47:33 firewall ddclient[1787]: WARNING: file /var/cache/ddclient/ddclient.cache, line 4: Invalid Value for keyword 'ip' = '' Feb 22 06:47:33 firewall ddclient[1787]: WARNING: file /var/cache/ddclient/ddclient.cache, line 5: Invalid Value for keyword 'ip' = '' Feb 22 06:47:33 firewall ddclient[1787]: WARNING: skipping update of mail.sitz.org from <nothing> to 83.99.2.118. Feb 22 06:47:33 firewall ddclient[1787]: WARNING: last updated <never> but last attempt on Thu Feb 22 06:42:33 2007 failed. Feb 22 06:47:33 firewall ddclient[1787]: WARNING: Wait at least 5 minutes between update attempts. Feb 22 06:47:33 firewall ddclient[1787]: WARNING: skipping update of www.sitz.org from <nothing> to 83.99.2.118. Feb 22 06:47:33 firewall ddclient[1787]: WARNING: last updated <never> but last attempt on Thu Feb 22 06:42:33 2007 failed. Feb 22 06:47:33 firewall ddclient[1787]: WARNING: Wait at least 5 minutes between update attempts. Feb 22 06:57:30 firewall sshd(pam_unix)[8707]: session opened for user root by (uid=0) Feb 22 06:57:34 firewall ddclient[1787]: WARNING: file /var/cache/ddclient/ddclient.cache, line 4: Invalid Value for keyword 'ip' = '' Feb 22 06:57:34 firewall ddclient[1787]: WARNING: file /var/cache/ddclient/ddclient.cache, line 5: Invalid Value for keyword 'ip' = '' Great. And now? ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-23 09:38:04
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4174285 By: wimpunk Last line says it all: Wait at least 5 minutes between update attempts. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-23 08:24:57
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4174187 By: ernie49 Hello everybody, I use ClarkConnect 4 in Gateway mode (CentOs based). I will use it as mail, web and ftp server. I have a ADSL connection with dynamic IP address. I owned a domain at EuroDNS in 2003. I must use eurodyndns for updating IP. So I install ddclient 3.7.1. Here my config. # ddclient.conf daemon=300 # check every 300 seconds syslog=yes # log update msgs to syslog mail=root # mail all msgs to root mail-failure=root # mail failed update msgs to root pid=/var/run/ddclient.pid # record PID in file. #ssl=yes # use ssl-support. Works with ssl-library use=web, web=checkip.eurodyndns.org/, web-skip='IP Address' # found after IP Address server=eurodyndns.org login=***** password=***** mail.sitz.org I must do something wrong. ddclient recognise the ip but skip the update. I do the command "ddclient -daemon=0 -debug -verbose -noquiet" and now my result. === opt ==== opt{cache} : <undefined> opt{cmd} : <undefined> opt{cmd-skip} : <undefined> opt{daemon} : 0 opt{debug} : 1 opt{exec} : <undefined> opt{facility} : <undefined> opt{file} : <undefined> opt{force} : <undefined> opt{fw} : <undefined> opt{fw-login} : <undefined> opt{fw-password} : <undefined> opt{fw-skip} : <undefined> opt{geturl} : <undefined> opt{help} : <undefined> opt{host} : <undefined> opt{if} : <undefined> opt{if-skip} : <undefined> opt{ip} : <undefined> opt{login} : <undefined> opt{mail} : <undefined> opt{mail-failure} : <undefined> opt{max-interval} : 2160000 opt{min-error-interval} : 300 opt{min-interval} : 30 opt{options} : <undefined> opt{password} : <undefined> opt{pid} : <undefined> opt{priority} : <undefined> opt{protocol} : <undefined> opt{proxy} : <undefined> opt{query} : <undefined> opt{quiet} : 0 opt{retry} : <undefined> opt{server} : <undefined> opt{ssl} : <undefined> opt{syslog} : <undefined> opt{test} : <undefined> opt{timeout} : <undefined> opt{use} : <undefined> opt{verbose} : 1 opt{web} : <undefined> opt{web-skip} : <undefined> === globals ==== globals{daemon} : 60 globals{debug} : 1 globals{login} : ***** globals{mail} : root globals{mail-failure} : root globals{password} : ***** globals{pid} : /var/run/ddclient.pid globals{quiet} : 0 globals{server} : eurodyndns.org globals{syslog} : 1 globals{use} : web globals{verbose} : 1 globals{web} : checkip.eurodyndns.org/ globals{web-skip} : IP Address === config ==== config{mail.sitz.org}{atime} : 1172177071 config{mail.sitz.org}{backupmx} : 0 config{mail.sitz.org}{cacheable} : ARRAY(0x9cfc36c) config{mail.sitz.org}{custom} : 0 config{mail.sitz.org}{host} : mail.sitz.org config{mail.sitz.org}{ip} : <undefined> config{mail.sitz.org}{login} : ***** config{mail.sitz.org}{max-interval} : 2160000 config{mail.sitz.org}{min-error-interval} : 300 config{mail.sitz.org}{min-interval} : 30 config{mail.sitz.org}{mtime} : 0 config{mail.sitz.org}{mx} : config{mail.sitz.org}{password} : ***** config{mail.sitz.org}{protocol} : dyndns2 config{mail.sitz.org}{server} : eurodyndns.org config{mail.sitz.org}{static} : 0 config{mail.sitz.org}{status} : noconnect config{mail.sitz.org}{warned-min-error-interval} : 0 config{mail.sitz.org}{warned-min-interval} : 0 config{mail.sitz.org}{wildcard} : 0 config{mail.sitz.org}{wtime} : 30 === cache ==== cache{mail.sitz.org}{atime} : 1172177071 cache{mail.sitz.org}{backupmx} : 0 cache{mail.sitz.org}{custom} : 0 cache{mail.sitz.org}{host} : mail.sitz.org cache{mail.sitz.org}{mtime} : 0 cache{mail.sitz.org}{mx} : cache{mail.sitz.org}{static} : 0 cache{mail.sitz.org}{status} : noconnect cache{mail.sitz.org}{warned-min-error-interval} : 1172177074 cache{mail.sitz.org}{warned-min-interval} : 0 cache{mail.sitz.org}{wildcard} : 0 cache{mail.sitz.org}{wtime} : 30 DEBUG: proxy = DEBUG: url = checkip.eurodyndns.org/ DEBUG: server = checkip.eurodyndns.org DEBUG: opt(fw = Use of uninitialized value in concatenation (.) or string at /usr/sbin/ddclient line 1660. DEBUG: glo fw = CONNECT: checkip.eurodyndns.org CONNECTED: using HTTP SENDING: GET / HTTP/1.0 SENDING: Host: checkip.eurodyndns.org SENDING: User-Agent: ddclient/3.7.1 SENDING: Connection: close SENDING: RECEIVE: HTTP/1.1 200 OK RECEIVE: Date: Thu, 22 Feb 2007 20:44:35 GMT RECEIVE: Server: Apache RECEIVE: Content-Length: 176 RECEIVE: Connection: close RECEIVE: Content-Type: text/html RECEIVE: RECEIVE: <html><head><title>Current IP Check</title></head> RECEIVE: <body bgcolor=white text=black> RECEIVE: Current IP Address: 83.99.2.118 RECEIVE: <br>Hostname: ip-83-99-2-118.dyn.luxdsl.pt.lu RECEIVE: </body></html> DEBUG: get_ip: using web, checkip.eurodyndns.org/ reports 83.99.2.118 Use of uninitialized value in string ne at /usr/sbin/ddclient line 1947. WARNING: skipping update of mail.sitz.org from <nothing> to 83.99.2.118. WARNING: last updated <never> but last attempt on Thu Feb 22 21:44:31 2007 failed. WARNING: Wait at least 5 minutes between update attempts. What do I wrong? At th moment I use web, mail and ftp server on a Windows machine with Eurodyndns client and it's working without any problem but I will switch to Linux. Help would be appreciated. Thanks a lot. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-21 16:58:00
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4170134 By: wimpunk as far as i see, it's just a little bug in the debug message. It will be changed in the next version of ddclient. See http://svn.sourceforge.net/viewvc/ddclient?view=rev&revision=43 ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-20 17:04:10
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4168031 By: d0r5 im using 3.7.1 ################################################## ####################q daemon=600 # check ip every hour via checkip.dyndns.org, cache it, update if needed syslog=yes # log update msgs to syslog mail=root # mail all msgs to root mail-failure=root # mail failed update msgs to root pid=/var/run/ddclient.pid # record PID in file. use=web # via web # protocol=dyndns2 # default protocol #proxy=fasthttp.sympatico.ca:80 # default dyn server proxy server=members.dyndns.org # default dyn server #server=members.dyndns.org:8245 # default server (bypassing proxies) login=**** # default login on dyndns.org password=**** # default password on dyndns.org #mx=mx.for.your.host # default MX backupmx=no # host is primary MX ## dyndns.org dynamic addresses ***.selfip.net thats it, it worked with 3.6 ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-20 14:51:22
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4167772 By: d0r5 Hi guys, i have a lil problem, when i run ddclient i get his message # /etc/init.d/./ddclient -daemon=0 -noquiet -debug DEBUG: proxy = DEBUG: url = http://checkip.dyndns.org/ DEBUG: server = checkip.dyndns.org DEBUG: opt(fw = Use of uninitialized value in concatenation (.) or string at /etc/init.d/./ddclient line 1660. DEBUG: glo fw = DEBUG: get_ip: using web, http://checkip.dyndns.org/ reports xxx.xxx.xxx.xxx Whats wrong with this guy, what should i change? im using FC6 ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-19 16:50:27
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4166056 By: wimpunk I've seen this problem before on my firefox and gaim. In my case it was caused by nscd. When the network is up and I restart nscd, everything works fine again. If you start your internetconnection from your linux computer, you could better check the ifup scripts. There are a few out there which starts ddclient when the connection is present and ends when the connection drops down. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-19 14:15:20
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4165778 By: fgillote Hi, I am using ddclient-3.6.7 on Fedora Core 4 in daemon mode launched by /etc/rc.d/init.d/ddclient. When Internet is up, everything is ok. I have the following problem : If I loose the DNS for example, I get the message "Unable to connect to members.dyndns.org" .... : OK Now if I get the new DNS, the daemon is still running and always gives me the message 'Unable to connect to members.dyndns.org ..." (Even if my Internet connection is OK now, I can ping members.dyndns.org) I have to restart the service (service ddclient restart) to be able to update. (I tried the 'retry' option with no success) Any idea ? Thanks in advance Fred ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=399428 |
From: SourceForge.net <no...@so...> - 2007-02-19 09:45:14
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4165427 By: wimpunk Check the max-interval-setting. This is the option used by ddclient to force an update. (since 3.7.1 default 30days) ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=467339 |
From: SourceForge.net <no...@so...> - 2007-02-17 21:09:37
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4163882 By: rawdlite Could you also include an option "force_after_nochg_period" ? If the ip adress has not changed after "force_after_nochg_period" days, an update is forced to prevent expiry. tom ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=467339 |
From: SourceForge.net <no...@so...> - 2007-02-14 03:23:02
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4156931 By: joran It would be really nice to help those just starting out that if you've defined the default username and password to issue an error or warning if you haven't defined any hosts to update - currently it exits quietly even with -noquiet -verbose! So that's the feature request - if 0 hosts to update print a message saying "0 hosts to update, specify some (different from default username and password, look further down in the config file)" Thanks ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=467339 |
From: SourceForge.net <no...@so...> - 2007-02-07 20:15:19
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4145749 By: wolfsage Greetings from DynDNS. In an attempt to reduce unnecessary load on our servers, we would like to ask you if you would be willing to make some changes to ddclient. What we would like is for the client to disable updates if it receives an error code from our server, which is the desired behavior as documented in our API: http://www.dyndns.com/developers/specs/return.html The reason for this is that all returns from our update service aside from "good" and "nochg" are fatal errors. This means that updates have failed for some reason or other, and if repeated attempts to update continue to fail, the hostnames may become blocked for abuse by our systems. The client should disable updating until the user has made the necessary changes to the configuration. The following is a sample of returns generated by our services to ddclient/3.7.0 update clients over the course of a day: Total returns: good: 13,762 bad: 44,576 nochg: 924 Breakdown of bad returns: abuse: 361 badauth: 12,401 nohost: 24,158 notfqdn 2,046 !yours: 5,610 As you can see, there are far more failed attempts than good attempts to update hosts from ddclient due to the client not being configured properly, and not disabling updates when it receives an error. We believe fixing this problem would be beneficial both to our users and users of your client. We would be willing to work with you towards fixing this problem and look forward to hearing from you. Thank you for your time. Matt -- Matthew Horsfall mho...@dy... Certification Technician Dynamic Network Services, Inc. http://www.dyndns.com ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=467339 |