ddclient-support Mailing List for ddclient (Page 13)
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: Roberto P. <ik...@gm...> - 2014-05-06 20:49:09
|
Hi all, I have seen on the syslog that ddclient write a warning WARNING: updating .... nochg: No update required; unnecessary attempts to change to the current address are considered abusive So checking the code (from my little understanding) it seems that the update procedure will happen also when the IP hasn't changed. I have then added a little piece of code (just for the no-ip section but similar can be done on dyndns section) This little piece of code check the ip for the host to be updated against the one obtained by Google dns server. If the wanted ip address is same of the one obtained from google DNS server 8.8.8.8 then a "SUCCESS" message will be printed and remain part of the code will be skipped for that host. Here my diff of original client and my mod I don't know if this feature is already present on the code and was just me that didn't realyze that. If not, i hope someone will do similar change on the mainained code adding same also on dyndns part. Cheers Roberto ========================================= diff /usr/sbin/ddclient.orig /usr/sbin/ddclient 2465a2466,2473 > my $host_ip = `host $h 8.8.8.8|grep $h|sed 's/.*has address //'`; > > if ( $ip == $host_ip ) > { > success("Host already updated %s: IP address is %s was %s", $h, $ip, $host_ip); > } > else > { 2537a2546 > } |
From: wimpunk <wi...@us...> - 2014-05-01 13:26:16
|
On 05/01/14 14:33, Daniel Roethlisberger wrote: > wimpunk <wi...@us...> 2014-05-01: >> It's been announced a while and now dyndns will stop offering >> free services. I don't know yet which service I will use but >> which one would you suggest for ddclient as default service? >> Any special reasons why? > > POLA [1] would dictate to leave the default as-is, as to not > break the configuration of people relying on the current default > (some users might actually stay with dyndns, some might be paying > customers today already). POLA would be important too for > distributions packaging ddclient, in their continuous struggle to > provide clean upgrade paths to their users. > > If you are willing to break some people's configurations, then I > would suggest removing the default altogether and not having a > default protocol, thereby forcing people to explicitly specify > their service in the configuration. This seems to be cleanest > from a technical point of view and it does not endorse any > specific provider of dynamic DNS services. > > [1] https://www.freebsd.org/doc/handbook/freebsd-glossary.html#pola-glossary > This is a good point. If I'm breaking people's configuration, I won't use a default provider. But I really want to give as sign to dyndns I don't like their decision to stop the free service even if you use any other payed service. Maybe I could check with the people providing the package for ddclient on the different distributions what's their opinion. Regards, wimpunk. |
From: Daniel R. <da...@ro...> - 2014-05-01 13:17:24
|
wimpunk <wi...@us...> 2014-05-01: > It's been announced a while and now dyndns will stop offering > free services. I don't know yet which service I will use but > which one would you suggest for ddclient as default service? > Any special reasons why? POLA [1] would dictate to leave the default as-is, as to not break the configuration of people relying on the current default (some users might actually stay with dyndns, some might be paying customers today already). POLA would be important too for distributions packaging ddclient, in their continuous struggle to provide clean upgrade paths to their users. If you are willing to break some people's configurations, then I would suggest removing the default altogether and not having a default protocol, thereby forcing people to explicitly specify their service in the configuration. This seems to be cleanest from a technical point of view and it does not endorse any specific provider of dynamic DNS services. [1] https://www.freebsd.org/doc/handbook/freebsd-glossary.html#pola-glossary -- Daniel Roethlisberger http://daniel.roe.ch/ |
From: wimpunk <wi...@us...> - 2014-05-01 11:48:26
|
Hi all, It's been announced a while and now dyndns will stop offering free services. I don't know yet which service I will use but which one would you suggest for ddclient as default service? Any special reasons why? I thought we discussed this earlier but I can't find anything about it in de history of the mailing list. Regards, wimpunk. |
From: wimpunk <wi...@us...> - 2014-04-30 14:45:34
|
Hi all, I got a pull request [1] on github but I can't decide if it is a good idea to add the service. It would add support for nsupdate on ddclient. Does anyone out there has any comments on this? [1] https://github.com/wimpunk/ddclient/pull/3 Regards, wimpunk. |
From: Anonymous W. V. <an...@ri...> - 2014-04-30 11:10:55
|
I don't know what to tell you, it put it in both places. Its all sorted out now. Since I upgraded to the new version everything works properly. I appreciate your help. On April 30, 2014 2:54:59 AM AST, wimpunk <wi...@us...> wrote: >Hi, > >I really don't understand how you can break your system that hard it >uses /etc/init.d/ddclient in stead of /usr/bin/ddclient after a default >install. A default debian installation installs its configuration in >/etc/ddclient.conf. > >What do you mean if you say you putted 'hostname=' in front of the >hostname? Do you mean in front of '*****.dnsapi.info'? > >If ddclient isn't in your path, you could try to run it with the path >specified which should be /usr/sbin/ in a default debian installation. >You could try to find the logging in syslog or run the verbose version >as specified before. > >Regards, > >wimpunk. > >On 04/30/14 03:09, Anonymous West Virginia wrote: >> Believe I fixed it. Put hostname= in front of the hostname, starts >> without error. I THINK the wrong ip thing might just be a propagation >> issue. >> >> co...@cc...: >>> Sounds like your path includes a script file rather than the real >>> ddclient, maybe? >>> >>> Anonymous West Virginia <an...@ri...> wrote: >>> >>>> I have a feeling its not reading my .conf but a default.conf file >>>> somewhere else. I installed with apt-get (Debian) and it asked me >some >>>> questions but I never did find where it created a .conf file. I >created >>>> the one you see in /etc/ddclient (create the dir and cache dir >too). >>>> >>>> wimpunk: >>>>> As written on >http://sourceforge.net/p/ddclient/wiki/Home/#documentation >>>>> `ddclient -daemon=0 -debug -verbose -noquiet` is a big help. Post >your >>>>> configuration and the result of the verbose output to pastebin or >>>>> something alike and put a link here. >>>>> >>>>> On 04/29/14 05:53, Anonymous West Virginia wrote: >>>>>> Hi guys, I just installed ddclient and I've clearly got something >hosed >>>>>> up, might be the 'use' line in the .conf file, might be something >else. >>>>>> >>>>>> When I go to whatsmyip.com I get a 108.70.*.* ip, this is correct >for my >>>>>> VPN. However, when I resolve my ddns name I a 192.168.*.* ip, my >>>>>> internal ip from the router. >>>>>> >>>>>> I'm guessing this is a common newb error, can you help me sort it >out? >>>>>> >>>>>> Thanks much! >>>>>> >>>>>> WV >>>>>> > >------------------------------------------------------------------------------ >"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE >Instantly run your Selenium tests across 300+ browser/OS combos. Get >unparalleled scalability from the best Selenium testing platform >available. >Simple to use. Nothing to install. Get started now for free." >http://p.sf.net/sfu/SauceLabs >_______________________________________________ >Ddclient-support mailing list >Ddc...@li... >https://lists.sourceforge.net/lists/listinfo/ddclient-support |
From: wimpunk <wi...@us...> - 2014-04-30 06:55:12
|
Hi, I really don't understand how you can break your system that hard it uses /etc/init.d/ddclient in stead of /usr/bin/ddclient after a default install. A default debian installation installs its configuration in /etc/ddclient.conf. What do you mean if you say you putted 'hostname=' in front of the hostname? Do you mean in front of '*****.dnsapi.info'? If ddclient isn't in your path, you could try to run it with the path specified which should be /usr/sbin/ in a default debian installation. You could try to find the logging in syslog or run the verbose version as specified before. Regards, wimpunk. On 04/30/14 03:09, Anonymous West Virginia wrote: > Believe I fixed it. Put hostname= in front of the hostname, starts > without error. I THINK the wrong ip thing might just be a propagation > issue. > > co...@cc...: >> Sounds like your path includes a script file rather than the real >> ddclient, maybe? >> >> Anonymous West Virginia <an...@ri...> wrote: >> >>> I have a feeling its not reading my .conf but a default.conf file >>> somewhere else. I installed with apt-get (Debian) and it asked me some >>> questions but I never did find where it created a .conf file. I created >>> the one you see in /etc/ddclient (create the dir and cache dir too). >>> >>> wimpunk: >>>> As written on http://sourceforge.net/p/ddclient/wiki/Home/#documentation >>>> `ddclient -daemon=0 -debug -verbose -noquiet` is a big help. Post your >>>> configuration and the result of the verbose output to pastebin or >>>> something alike and put a link here. >>>> >>>> On 04/29/14 05:53, Anonymous West Virginia wrote: >>>>> Hi guys, I just installed ddclient and I've clearly got something hosed >>>>> up, might be the 'use' line in the .conf file, might be something else. >>>>> >>>>> When I go to whatsmyip.com I get a 108.70.*.* ip, this is correct for my >>>>> VPN. However, when I resolve my ddns name I a 192.168.*.* ip, my >>>>> internal ip from the router. >>>>> >>>>> I'm guessing this is a common newb error, can you help me sort it out? >>>>> >>>>> Thanks much! >>>>> >>>>> WV >>>>> |
From: Anonymous W. V. <an...@ri...> - 2014-04-30 01:09:30
|
Believe I fixed it. Put hostname= in front of the hostname, starts without error. I THINK the wrong ip thing might just be a propagation issue. co...@cc...: > Sounds like your path includes a script file rather than the real > ddclient, maybe? > > Anonymous West Virginia <an...@ri...> wrote: > >> I have a feeling its not reading my .conf but a default.conf file >> somewhere else. I installed with apt-get (Debian) and it asked me some >> questions but I never did find where it created a .conf file. I created >> the one you see in /etc/ddclient (create the dir and cache dir too). >> >> wimpunk: >>> As written on http://sourceforge.net/p/ddclient/wiki/Home/#documentation >>> `ddclient -daemon=0 -debug -verbose -noquiet` is a big help. Post your >>> configuration and the result of the verbose output to pastebin or >>> something alike and put a link here. >>> >>> On 04/29/14 05:53, Anonymous West Virginia wrote: >>>> Hi guys, I just installed ddclient and I've clearly got something hosed >>>> up, might be the 'use' line in the .conf file, might be something else. >>>> >>>> When I go to whatsmyip.com I get a 108.70.*.* ip, this is correct for my >>>> VPN. However, when I resolve my ddns name I a 192.168.*.* ip, my >>>> internal ip from the router. >>>> >>>> I'm guessing this is a common newb error, can you help me sort it out? >>>> >>>> Thanks much! >>>> >>>> WV >>>> >>>> ------------------------------------------------------------------------------ >>>> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE >>>> Instantly run your Selenium tests across 300+ browser/OS combos. Get >>>> unparalleled scalability from the best Selenium testing platform available. >>>> Simple to use. Nothing to install. Get started now for free." >>>> http://p.sf.net/sfu/SauceLabs >>>> _______________________________________________ >>>> Ddclient-support mailing list >>>> Ddc...@li... >>>> https://lists.sourceforge.net/lists/listinfo/ddclient-support >>>> >>> >>> ------------------------------------------------------------------------------ >>> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE >>> Instantly run your Selenium tests across 300+ browser/OS combos. Get >>> unparalleled scalability from the best Selenium testing platform available. >>> Simple to use. Nothing to install. Get started now for free." >>> http://p.sf.net/sfu/SauceLabs >>> _______________________________________________ >>> Ddclient-support mailing list >>> Ddc...@li... >>> https://lists.sourceforge.net/lists/listinfo/ddclient-support >>> >> >> >> ------------------------------------------------------------------------------ >> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE >> Instantly run your Selenium tests across 300+ browser/OS combos. Get >> unparalleled scalability from the best Selenium testing platform available. >> Simple to use. Nothing to install. Get started now for free." >> http://p.sf.net/sfu/SauceLabs >> _______________________________________________ >> Ddclient-support mailing list >> Ddc...@li... >> https://lists.sourceforge.net/lists/listinfo/ddclient-support > |
From: <co...@cc...> - 2014-04-29 23:52:55
|
Sounds like your path includes a script file rather than the real ddclient, maybe? Anonymous West Virginia <an...@ri...> wrote: > I have a feeling its not reading my .conf but a default.conf file > somewhere else. I installed with apt-get (Debian) and it asked me some > questions but I never did find where it created a .conf file. I created > the one you see in /etc/ddclient (create the dir and cache dir too). > > wimpunk: > > As written on http://sourceforge.net/p/ddclient/wiki/Home/#documentation > > `ddclient -daemon=0 -debug -verbose -noquiet` is a big help. Post your > > configuration and the result of the verbose output to pastebin or > > something alike and put a link here. > > > > On 04/29/14 05:53, Anonymous West Virginia wrote: > >> Hi guys, I just installed ddclient and I've clearly got something hosed > >> up, might be the 'use' line in the .conf file, might be something else. > >> > >> When I go to whatsmyip.com I get a 108.70.*.* ip, this is correct for my > >> VPN. However, when I resolve my ddns name I a 192.168.*.* ip, my > >> internal ip from the router. > >> > >> I'm guessing this is a common newb error, can you help me sort it out? > >> > >> Thanks much! > >> > >> WV > >> > >> ------------------------------------------------------------------------------ > >> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > >> Instantly run your Selenium tests across 300+ browser/OS combos. Get > >> unparalleled scalability from the best Selenium testing platform available. > >> Simple to use. Nothing to install. Get started now for free." > >> http://p.sf.net/sfu/SauceLabs > >> _______________________________________________ > >> Ddclient-support mailing list > >> Ddc...@li... > >> https://lists.sourceforge.net/lists/listinfo/ddclient-support > >> > > > > ------------------------------------------------------------------------------ > > "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > > Instantly run your Selenium tests across 300+ browser/OS combos. Get > > unparalleled scalability from the best Selenium testing platform available. > > Simple to use. Nothing to install. Get started now for free." > > http://p.sf.net/sfu/SauceLabs > > _______________________________________________ > > Ddclient-support mailing list > > Ddc...@li... > > https://lists.sourceforge.net/lists/listinfo/ddclient-support > > > > > ------------------------------------------------------------------------------ > "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > Instantly run your Selenium tests across 300+ browser/OS combos. Get > unparalleled scalability from the best Selenium testing platform available. > Simple to use. Nothing to install. Get started now for free." > http://p.sf.net/sfu/SauceLabs > _______________________________________________ > Ddclient-support mailing list > Ddc...@li... > https://lists.sourceforge.net/lists/listinfo/ddclient-support -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici co...@cc... |
From: Anonymous W. V. <an...@ri...> - 2014-04-29 23:09:36
|
I have a feeling its not reading my .conf but a default.conf file somewhere else. I installed with apt-get (Debian) and it asked me some questions but I never did find where it created a .conf file. I created the one you see in /etc/ddclient (create the dir and cache dir too). wimpunk: > As written on http://sourceforge.net/p/ddclient/wiki/Home/#documentation > `ddclient -daemon=0 -debug -verbose -noquiet` is a big help. Post your > configuration and the result of the verbose output to pastebin or > something alike and put a link here. > > On 04/29/14 05:53, Anonymous West Virginia wrote: >> Hi guys, I just installed ddclient and I've clearly got something hosed >> up, might be the 'use' line in the .conf file, might be something else. >> >> When I go to whatsmyip.com I get a 108.70.*.* ip, this is correct for my >> VPN. However, when I resolve my ddns name I a 192.168.*.* ip, my >> internal ip from the router. >> >> I'm guessing this is a common newb error, can you help me sort it out? >> >> Thanks much! >> >> WV >> >> ------------------------------------------------------------------------------ >> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE >> Instantly run your Selenium tests across 300+ browser/OS combos. Get >> unparalleled scalability from the best Selenium testing platform available. >> Simple to use. Nothing to install. Get started now for free." >> http://p.sf.net/sfu/SauceLabs >> _______________________________________________ >> Ddclient-support mailing list >> Ddc...@li... >> https://lists.sourceforge.net/lists/listinfo/ddclient-support >> > > ------------------------------------------------------------------------------ > "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > Instantly run your Selenium tests across 300+ browser/OS combos. Get > unparalleled scalability from the best Selenium testing platform available. > Simple to use. Nothing to install. Get started now for free." > http://p.sf.net/sfu/SauceLabs > _______________________________________________ > Ddclient-support mailing list > Ddc...@li... > https://lists.sourceforge.net/lists/listinfo/ddclient-support > |
From: Anonymous W. V. <an...@ri...> - 2014-04-29 23:01:13
|
OK, 'ddclient -daemon=0 -debug -verbose -noquiet' returns nothing but [ ok ] Usage: /etc/init.d/ddclient {start|stop|restart|force-reload} When I add start to the mix it returns nothing. Here's my /etc/ddclient/ddclient.conf: daemon=60 # check every 60 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=myip.dnsdynamic.com # get ip from server. server=www.dnsdynamic.org # default server login=****@******.net # default login password=***** # default password server=www.dnsdynamic.org, \ protocol=dyndns2 \ *****.dnsapi.info I checked the server listed in a browser and it returns my IP correctly. btw, I'm using http://mxtoolbox.com/DnsLookup.aspx to test this. Appreciate any ideas! wimpunk: > As written on http://sourceforge.net/p/ddclient/wiki/Home/#documentation > `ddclient -daemon=0 -debug -verbose -noquiet` is a big help. Post your > configuration and the result of the verbose output to pastebin or > something alike and put a link here. > > On 04/29/14 05:53, Anonymous West Virginia wrote: >> Hi guys, I just installed ddclient and I've clearly got something hosed >> up, might be the 'use' line in the .conf file, might be something else. >> >> When I go to whatsmyip.com I get a 108.70.*.* ip, this is correct for my >> VPN. However, when I resolve my ddns name I a 192.168.*.* ip, my >> internal ip from the router. >> >> I'm guessing this is a common newb error, can you help me sort it out? >> >> Thanks much! >> >> WV >> >> ------------------------------------------------------------------------------ >> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE >> Instantly run your Selenium tests across 300+ browser/OS combos. Get >> unparalleled scalability from the best Selenium testing platform available. >> Simple to use. Nothing to install. Get started now for free." >> http://p.sf.net/sfu/SauceLabs >> _______________________________________________ >> Ddclient-support mailing list >> Ddc...@li... >> https://lists.sourceforge.net/lists/listinfo/ddclient-support >> > > ------------------------------------------------------------------------------ > "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > Instantly run your Selenium tests across 300+ browser/OS combos. Get > unparalleled scalability from the best Selenium testing platform available. > Simple to use. Nothing to install. Get started now for free." > http://p.sf.net/sfu/SauceLabs > _______________________________________________ > Ddclient-support mailing list > Ddc...@li... > https://lists.sourceforge.net/lists/listinfo/ddclient-support > |
From: Anonymous W. V. <an...@ri...> - 2014-04-29 12:43:50
|
Thanks. Will get this done tonight. On April 29, 2014 2:32:24 AM EDT, wimpunk <wi...@us...> wrote: >As written on >http://sourceforge.net/p/ddclient/wiki/Home/#documentation >`ddclient -daemon=0 -debug -verbose -noquiet` is a big help. Post your >configuration and the result of the verbose output to pastebin or >something alike and put a link here. > >On 04/29/14 05:53, Anonymous West Virginia wrote: >> Hi guys, I just installed ddclient and I've clearly got something >hosed >> up, might be the 'use' line in the .conf file, might be something >else. >> >> When I go to whatsmyip.com I get a 108.70.*.* ip, this is correct for >my >> VPN. However, when I resolve my ddns name I a 192.168.*.* ip, my >> internal ip from the router. >> >> I'm guessing this is a common newb error, can you help me sort it >out? >> >> Thanks much! >> >> WV >> >> >------------------------------------------------------------------------------ >> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For >FREE >> Instantly run your Selenium tests across 300+ browser/OS combos. Get > >> unparalleled scalability from the best Selenium testing platform >available. >> Simple to use. Nothing to install. Get started now for free." >> http://p.sf.net/sfu/SauceLabs >> _______________________________________________ >> Ddclient-support mailing list >> Ddc...@li... >> https://lists.sourceforge.net/lists/listinfo/ddclient-support >> > >------------------------------------------------------------------------------ >"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE >Instantly run your Selenium tests across 300+ browser/OS combos. Get >unparalleled scalability from the best Selenium testing platform >available. >Simple to use. Nothing to install. Get started now for free." >http://p.sf.net/sfu/SauceLabs >_______________________________________________ >Ddclient-support mailing list >Ddc...@li... >https://lists.sourceforge.net/lists/listinfo/ddclient-support |
From: wimpunk <wi...@us...> - 2014-04-29 06:59:19
|
As written on http://sourceforge.net/p/ddclient/wiki/Home/#documentation `ddclient -daemon=0 -debug -verbose -noquiet` is a big help. Post your configuration and the result of the verbose output to pastebin or something alike and put a link here. On 04/29/14 05:53, Anonymous West Virginia wrote: > Hi guys, I just installed ddclient and I've clearly got something hosed > up, might be the 'use' line in the .conf file, might be something else. > > When I go to whatsmyip.com I get a 108.70.*.* ip, this is correct for my > VPN. However, when I resolve my ddns name I a 192.168.*.* ip, my > internal ip from the router. > > I'm guessing this is a common newb error, can you help me sort it out? > > Thanks much! > > WV > > ------------------------------------------------------------------------------ > "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > Instantly run your Selenium tests across 300+ browser/OS combos. Get > unparalleled scalability from the best Selenium testing platform available. > Simple to use. Nothing to install. Get started now for free." > http://p.sf.net/sfu/SauceLabs > _______________________________________________ > Ddclient-support mailing list > Ddc...@li... > https://lists.sourceforge.net/lists/listinfo/ddclient-support > |
From: Anonymous W. V. <an...@ri...> - 2014-04-29 03:53:39
|
Hi guys, I just installed ddclient and I've clearly got something hosed up, might be the 'use' line in the .conf file, might be something else. When I go to whatsmyip.com I get a 108.70.*.* ip, this is correct for my VPN. However, when I resolve my ddns name I a 192.168.*.* ip, my internal ip from the router. I'm guessing this is a common newb error, can you help me sort it out? Thanks much! WV |
From: Paul N. P. <pau...@gm...> - 2014-02-09 08:33:42
|
Hello! I have ddclient 3.8.0 on Ubuntu Server 12.04 and I'm just reading that there are issues with this version with afraid.org. I apologize if this is a totally ignorant question, but can I just drop in the /usr/sbin/ddclient file for 3.8.2, change the file locations in it to match what the Ubuntu package uses, and have it 'just work'? Thanks! Paul |
From: wimpunk <wi...@us...> - 2013-12-26 09:57:40
|
Hi all, Like I just announced on the news page of ddclient [1]: ddclient 3.8.2 got finally released. Most important features: * adding support by ChangeIP - patch send by Michele Giorato * sha-1 patch send by pirast to allow Digest::SHA * allow reuse of use - patch send by Rodrigo Araujo * preventing deep sleep - see [bugs:#46] * Fallback to iproute if ifconfig doesn't work send by Maccied Grela Thanks every one who helped on this version. I hope to release the next release much faster than previous ones. Regards, wimpunk. [1] https://sourceforge.net/p/ddclient/news/2013/12/ddclient-382-finally-released/ |
From: wimpunk <wi...@us...> - 2013-11-05 20:17:40
|
Hi there, For those who might be interested: I've imported the current subversion version of ddclient into github. It should make it possible to push patches using git. Next step will be cleaning up the current repo and releasing a new version. See you soon, wimpunk. |
From: wimpunk <wi...@us...> - 2013-11-02 13:36:04
|
Hi, On 11/02/13 14:30, Timothy Murphy wrote: > I'm running ddclient on a remote server (under CentOS-6.4). > Two or three times a day I get email from ddclient saying > "TIMEOUT: checkip.dyndns.org after 120 seconds". I get those to. I haven't looked very closely into this problem but I guess it happens when one of the three servers isn't reacting. On the next try, dns should give another IP which normally functions. Maybe we could add an extra feature which would add a retry. > > As far as I can see, ddclient checks the IP address every 10 minutes. > So can I assume that ddclient got the address the next time it tried? Yes it does. If it doesn't you'll get another email. > > Assuming this is the case, it might be helpful if ddclient could > send email the next time it successfully checked the address? > You may add the option but I don't think it's useful. |
From: Timothy M. <gay...@ei...> - 2013-11-02 13:30:32
|
I'm running ddclient on a remote server (under CentOS-6.4). Two or three times a day I get email from ddclient saying "TIMEOUT: checkip.dyndns.org after 120 seconds". As far as I can see, ddclient checks the IP address every 10 minutes. So can I assume that ddclient got the address the next time it tried? Assuming this is the case, it might be helpful if ddclient could send email the next time it successfully checked the address? -- Timothy Murphy e-mail: gayleard /at/ eircom.net School of Mathematics, Trinity College, Dublin 2, Ireland |
From: wimpunk <wi...@us...> - 2013-10-28 20:42:43
|
Hi, Is there anyone out there who's using zone edit and could help on a recent post [1]. As you can see in the discussion, I don't really believe the patch is a good fix but I want to be sure. [1] https://sourceforge.net/p/ddclient/discussion/399428/thread/e8eb537e/ Regards, wimpunk. |
From: Kurt B. <ku...@no...> - 2013-08-29 00:14:35
|
Sorry.. I listed %23A where it should just be %3A. On Aug 28, 2013, at 4:55 PM, Kurt Bussche <ku...@no...> wrote: > If the encoding is done right on ddclient you can use the group password by altering the username sent to us. We accepted the username in the form of username:group along with the group password on our other protocols. But with the HTTP Basic Authentication the ":" can not be used. So the fix is to replace it with the url encoded form of a colon or optionally a pound "#" symbol. Details below. > > > > First, make sure you have a username set for the account (not an email). > Second, create a group, assign your favorite host to it and set a password for that group. > Third, in ddclient set your username to a string that looks like the below one. > > username#groupname (your noip username, a pound symbol then the name of the group) > > Note: If that does not work, replace the # symbol with a %23A (which is url encode for a colon) to separate the username and group name. > > Fourth, in ddclient set the password field to the group password. > > Lastly, make the the host you have ddclient set to update is actually in the group on our site. > > > Feel free to reply directly to me. > > Thanks > Kurt > www.noip.com > > > On Aug 28, 2013, at 8:18 AM, Adam Funk <a2...@du...> wrote: > >> On 2013-07-21, Mike Scott wrote: >> >>> On 21/07/13 04:32, Kurt Bussche wrote: >>>> Is No-IP still supported by DDClient? I see no mention of us on the below link even though we use the identical protocol as Dyn. >>>> >>> Must be - I'm using it :-) >>> >>> 'ddclient --help' offers: >>> >>> The 'No-IP Compatible' protocol is used to make dynamic dns updates >>> over an http request. Details of the protocol are outlined at: >>> http://www.no-ip.com/integrate/ >> >> What do you have to do to get ddclient to work with No-IP using a >> group with its own password? (I switched from dyndns in order to get >> different passwords for host authentication & account management.) >> >> >> ------------------------------------------------------------------------------ >> Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more! >> Discover the easy way to master current and previous Microsoft technologies >> and advance your career. Get an incredible 1,500+ hours of step-by-step >> tutorial videos with LearnDevNow. Subscribe today and save! >> http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk >> _______________________________________________ >> Ddclient-support mailing list >> Ddc...@li... >> https://lists.sourceforge.net/lists/listinfo/ddclient-support > |
From: Kurt B. <ku...@no...> - 2013-08-29 00:14:32
|
If the encoding is done right on ddclient you can use the group password by altering the username sent to us. We accepted the username in the form of username:group along with the group password on our other protocols. But with the HTTP Basic Authentication the ":" can not be used. So the fix is to replace it with the url encoded form of a colon or optionally a pound "#" symbol. Details below. First, make sure you have a username set for the account (not an email). Second, create a group, assign your favorite host to it and set a password for that group. Third, in ddclient set your username to a string that looks like the below one. username#groupname (your noip username, a pound symbol then the name of the group) Note: If that does not work, replace the # symbol with a %23A (which is url encode for a colon) to separate the username and group name. Fourth, in ddclient set the password field to the group password. Lastly, make the the host you have ddclient set to update is actually in the group on our site. Feel free to reply directly to me. Thanks Kurt www.noip.com On Aug 28, 2013, at 8:18 AM, Adam Funk <a2...@du...> wrote: > On 2013-07-21, Mike Scott wrote: > >> On 21/07/13 04:32, Kurt Bussche wrote: >>> Is No-IP still supported by DDClient? I see no mention of us on the below link even though we use the identical protocol as Dyn. >>> >> Must be - I'm using it :-) >> >> 'ddclient --help' offers: >> >> The 'No-IP Compatible' protocol is used to make dynamic dns updates >> over an http request. Details of the protocol are outlined at: >> http://www.no-ip.com/integrate/ > > What do you have to do to get ddclient to work with No-IP using a > group with its own password? (I switched from dyndns in order to get > different passwords for host authentication & account management.) > > > ------------------------------------------------------------------------------ > Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more! > Discover the easy way to master current and previous Microsoft technologies > and advance your career. Get an incredible 1,500+ hours of step-by-step > tutorial videos with LearnDevNow. Subscribe today and save! > http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk > _______________________________________________ > Ddclient-support mailing list > Ddc...@li... > https://lists.sourceforge.net/lists/listinfo/ddclient-support |
From: Adam F. <a2...@du...> - 2013-08-28 15:35:14
|
On 2013-07-21, Mike Scott wrote: > On 21/07/13 04:32, Kurt Bussche wrote: >> Is No-IP still supported by DDClient? I see no mention of us on the below link even though we use the identical protocol as Dyn. >> > Must be - I'm using it :-) > > 'ddclient --help' offers: > > The 'No-IP Compatible' protocol is used to make dynamic dns updates > over an http request. Details of the protocol are outlined at: > http://www.no-ip.com/integrate/ What do you have to do to get ddclient to work with No-IP using a group with its own password? (I switched from dyndns in order to get different passwords for host authentication & account management.) |
From: Rodrigo A. <ro...@eu...> - 2013-08-14 20:43:11
|
Hi. Seems to me your error is unlikely to be ddclient's fault. I'm not an expert on FreeBSD, but I'd say it's related to your security/ca_root_nss port (which contain the base certificate authorities that allow certificates to be verified). It's probably not installed or needs an update. Other than that, might be related to your perl installation itself, more precisely your security/p5-IO-Socket-SSL port might need to be updated too. Hope it helps. Regards. On 14-08-2013 16:37, Joseph Mingrone wrote: > Hello; > > This is with the ddclient-3.8.1_1 port on FreeBSD. Everything works if > I set ssl=no in the configuration file. > > WARNING: cannot connect to members.dyndns.org:443 socket: > IO::Socket::SSL: SSL connect attempt failed with unknown error > error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate > verify failed IO::Socket::INET configuration failed SSL connect attempt > failed with unknown error error:14090086:SSL > routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed FAILED: > updating xxx: Could not connect to members.dyndns.org > > WARNING: file /var/tmp/ddclient.cache, line 3: Invalid Value for keyword > 'ip' = '' WARNING: cannot connect to members.dyndns.org:443 socket: > IO::Socket::SSL: SSL connect attempt failed with unknown error > error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate > verify failed IO::Socket::INET configuration failed SSL connect attempt > failed with unknown error error:14090086:SSL > routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed FAILED: > updating xxx: Could not connect to members.dyndns.org > > Cheers, > > Joseph -- Rodrigo Araújo <ro...@eu...> Administrador de Sistemas Eurotux Informática, S.A. | www.eurotux.com Tel: (+351) 253680300 - Suporte: (+351) 253680301 Fax: (+351) 253680319 |
From: Joseph M. <jr...@ft...> - 2013-08-14 16:00:15
|
Hello; This is with the ddclient-3.8.1_1 port on FreeBSD. Everything works if I set ssl=no in the configuration file. WARNING: cannot connect to members.dyndns.org:443 socket: IO::Socket::SSL: SSL connect attempt failed with unknown error error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed IO::Socket::INET configuration failed SSL connect attempt failed with unknown error error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed FAILED: updating xxx: Could not connect to members.dyndns.org WARNING: file /var/tmp/ddclient.cache, line 3: Invalid Value for keyword 'ip' = '' WARNING: cannot connect to members.dyndns.org:443 socket: IO::Socket::SSL: SSL connect attempt failed with unknown error error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed IO::Socket::INET configuration failed SSL connect attempt failed with unknown error error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed FAILED: updating xxx: Could not connect to members.dyndns.org Cheers, Joseph |