How can I set up a Dynamic DNS fetching service on Ubuntu Server? The Next CEO of Stack OverflowGiving Ubuntu Desktop a domain name to ssh intoThe noip2 (no-ip.com) package was deleted from the repository, now what?How can I setup dhcpd (dynamic DNS)?How do I set up a reverse dns on Ubuntu 12.04 VPSUMS.sh (run as service) on Ubuntu 14.04 won't read configuration fileCannot remotely connect to MySQLCan't reach tomcat server on Ubuntu 14.04 host from VirtualBox 4.3 Windows 7 guest or Ubuntu 14.04 guestUbuntu server + Dynamic DNSUsing EasyDNS on a dedicated server - stuckHow can I make my tftp server visible/available on my local network?How does Ubuntu desktop and server do their dns resolution?Lost editing DNS config in Ubuntu 18.04

sp_blitzCache results Memory grants

Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis

Can I equip Skullclamp on a creature I am sacrificing?

Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?

Do I need to enable Dev Hub in my PROD Org?

Why has the US not been more assertive in confronting Russia in recent years?

What does convergence in distribution "in the Gromov–Hausdorff" sense mean?

How do we know the LHC results are robust?

How did people program for Consoles with multiple CPUs?

Anatomically Correct Strange Women In Ponds Distributing Swords

Won the lottery - how do I keep the money?

Is there a difference between "Fahrstuhl" and "Aufzug"

How to solve a differential equation with a term to a power?

Has this building technique been used in an official set?

Why does the UK parliament need a vote on the political declaration?

How to safely derail a train during transit?

Several mode to write the symbol of a vector

How do I go from 300 unfinished/half written blog posts, to published posts?

How to invert MapIndexed on a ragged structure? How to construct a tree from rules?

Can I run my washing machine drain line into a condensate pump so it drains better?

What's the best way to handle refactoring a big file?

Which tube will fit a -(700 x 25c) wheel?

Is micro rebar a better way to reinforce concrete than rebar?

What happened in Rome, when the western empire "fell"?



How can I set up a Dynamic DNS fetching service on Ubuntu Server?



The Next CEO of Stack OverflowGiving Ubuntu Desktop a domain name to ssh intoThe noip2 (no-ip.com) package was deleted from the repository, now what?How can I setup dhcpd (dynamic DNS)?How do I set up a reverse dns on Ubuntu 12.04 VPSUMS.sh (run as service) on Ubuntu 14.04 won't read configuration fileCannot remotely connect to MySQLCan't reach tomcat server on Ubuntu 14.04 host from VirtualBox 4.3 Windows 7 guest or Ubuntu 14.04 guestUbuntu server + Dynamic DNSUsing EasyDNS on a dedicated server - stuckHow can I make my tftp server visible/available on my local network?How does Ubuntu desktop and server do their dns resolution?Lost editing DNS config in Ubuntu 18.04










17















I've created accounts and hostnames within my http://no-ip.org/ account, which is by far the most commonly used service for my type of server. Can somebody walk me through the configuration process of using ddclient with no-ip, as I'm a command line noob?










share|improve this question




























    17















    I've created accounts and hostnames within my http://no-ip.org/ account, which is by far the most commonly used service for my type of server. Can somebody walk me through the configuration process of using ddclient with no-ip, as I'm a command line noob?










    share|improve this question


























      17












      17








      17


      5






      I've created accounts and hostnames within my http://no-ip.org/ account, which is by far the most commonly used service for my type of server. Can somebody walk me through the configuration process of using ddclient with no-ip, as I'm a command line noob?










      share|improve this question
















      I've created accounts and hostnames within my http://no-ip.org/ account, which is by far the most commonly used service for my type of server. Can somebody walk me through the configuration process of using ddclient with no-ip, as I'm a command line noob?







      11.10 networking dhcp






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Oct 28 '11 at 6:14









      belacqua

      15.9k1473103




      15.9k1473103










      asked Oct 28 '11 at 2:53









      TrevonTrevon

      86113




      86113




















          4 Answers
          4






          active

          oldest

          votes


















          20














          Setting up ddclient for No-IP



          ddclient is a Dynamic Update Client (DUC) which can be used to update dynamic DNS entries. It checks the current IP address at regular intervals and updates the DNS information when a change is detected. Here is how to install and configure it for the No-IP (noip.com/no-ip.com) service.



          First, install the ddclient package. We will configure it manually later, so just press enter for all configuration questions.



          sudo apt-get install ddclient


          Stop the ddclient daemon. The sudo service ddclient stop command does not work on Ubuntu 12.04 due to a bug, so we use pkill instead.



          sudo pkill ddclient


          Edit the config files. To turn off the backup files (e.g. /etc/ddclient.conf~) which gedit creates by default and which could for example contain passwords after you thought you had deleted them, turn off the setting
          Edit -> Preferences -> Editor -> Create a backup copy of files before saving.



          sudo gedit /etc/ddclient.conf /etc/default/ddclient


          Delete the old content of /etc/ddclient.conf and paste in the template shown below.



          Read through the comments of the template and customize the file to your needs.



          It could be a good idea to use a noip.com sub-account, i.e. a group with password (this feature is a pay-service). This way, the password only gives access to updating the specified hosts and not full access to your entire No-IP account, which could include MX records (an attacker which acquires your password could change the MX records in order to intercept your e-mails) or other services such as IMAP accounts.



          You should probably set daemon_interval=3600 (see template comments).



          Test your configuration with the following command:



          sudo ddclient -daemon=0 -debug -verbose -noquiet -force


          You should get a good (IP address updated) or nochg (IP address was already set to that value) response. It is OK to receive the following warning at this point (but it is not OK to keep getting the warning during normal operation):



          WARNING: updating <hostname>: nochg: No update required; unnecessary attempts to change to the current address are considered abusive



          Note: There seems to be some caching going on at the No-IP server, so if the response you get from the server is not what you expect, it might help to just wait a little while.



          When you are done configuring, start the ddclient daemon:



          sudo service ddclient start


          The daemon will also start automatically each time you start the computer.



          The DNS entry/entries will now be updated each time an IP address change is detected.



          Troubleshooting



          Run package configuration again:



          sudo dpkg-reconfigure ddclient


          Remove package and config files:



          sudo apt-get purge ddclient


          Daemon control:



          sudo service ddclient status
          sudo service ddclient start
          sudo service ddclient stop
          # The stop command above does not work on Ubuntu 12.04 due to a bug, but
          # it works on 14.04. Here are alternative ways to control the daemon:
          ps -A f | grep -i ddclient
          sudo pkill ddclient


          Delete the cache to trick the daemon into updating the DNS entry for debugging purposes (during normal operation the DNS entry is only updated if the current IP address is different from the IP address stored in the cache):



          sudo pkill ddclient
          sudo rm /var/cache/ddclient/ddclient.cache
          sudo service ddclient start
          # See the result:
          tail /var/log/syslog
          # If you have set up mail=..., you should also receive an e-mail.
          # The syslog and e-mail should show a "good" or "nochg" response.


          Test whether the daemon will actually update the DNS entry when the IP address has changed, by setting the DNS entry IP address to 1.2.3.4 and then starting the daemon:



          sudo pkill ddclient
          sudo ddclient -daemon=0 -debug -verbose -noquiet -force -use ip -ip 1.2.3.4
          sleep 30 # ddclient will not perform updates less than 30 seconds apart
          sudo service ddclient start


          Debug run (update DNS entry never / as needed / always):



          sudo ddclient -daemon=0 -debug -verbose -noquiet -noexec
          sudo ddclient -daemon=0 -debug -verbose -noquiet
          sudo ddclient -daemon=0 -debug -verbose -noquiet -force


          Try to detect current IP address using various methods:



          sudo ddclient -query


          Files of interest:



          /etc/ddclient.conf
          /etc/default/ddclient
          /var/cache/ddclient/ddclient.cache


          Messages from the daemon will appear here (and will also be sent by e-mail if set up to do so):



          /var/log/syslog


          Documentation:



          • ddclient -help

          • /usr/share/doc/ddclient/examples/sample-etc_ddclient.conf.gz

          • ddclient home page

          • No-IP protocol

          Template for /etc/ddclient.conf



          ################################################################################
          # Configuration file for ddclient
          ################################################################################


          ################################################################################
          # Misc. configurations

          # To choose between ipup mode (for dial-on-demand) and daemon mode, please edit
          # /etc/default/ddclient.

          #mail=root # E-mail messages to this address
          #mail-failure=root # E-mail messages about failed updates to this address


          ################################################################################
          # How to obtain current IP address

          # Methods:
          # use=ip, ip=ADDRESS # Set the IP address to ADDRESS
          # use=if, if=INTERFACE, if-skip=PATTERN # Obtain IP address by calling 'ifconfig INTERFACE'
          # use=web, web=PROVIDER|URL, web-skip=PATTERN # Obtain IP address from IP discovery web page
          # use=cmd, cmd=PROGRAM, cmd-skip=PATTERN # Obtain IP address by calling PROGRAM
          # use=fw|FWMODEL, fw=ADDRESS|URL, fw-skip=PATTERN # Obtain IP address from firewall web page
          # fw-login=LOGIN, fw-password=SECRET
          #
          # The *-skip options can be used to skip IP addresses found before PATTERN.
          #
          # NOTE: The ddclient IP detection routines do not respect the HTTPS prefix in
          # URLs, and instead fall back to HTTP (this is fixed in version 3.8.1). The
          # option ssl=yes does not apply to the IP detection either (this is at least
          # how versions 3.8.0 to 3.8.2 behave).
          #
          # The default time between each IP address change check is daemon_interval=300
          # (5 minutes), which may be a bit too frequent when using an external IP
          # discovery service. To set the checking interval to e.g. one hour instead,
          # please edit /etc/default/ddclient and set daemon_interval=3600.

          # Obtain IP address from network interface
          #use=if, if=eth0

          # Obtain IP address from no-ip.com IP discovery web page (unencrypted connection)
          use=web, web='http://ip1.dynupdate.no-ip.com:8245/'

          # Obtain IP address from no-ip.com IP discovery web page (encrypted connection)
          # Encryption does not offer any real protection since a man-in-the-middle
          # attack could route the HTTPS connection through a host belonging to the
          # attacker, thus causing an incorrect IP address to be reported.
          #use=cmd, cmd='bash -c "set -o pipefail; timeout 120 wget -qO-
          # --header=Host:ip1.dynupdate.no-ip.com https://dynupdate.no-ip.com/ | head -c 1000"'


          ################################################################################
          # Dynamic DNS service setup

          protocol=noip
          #server= # Defaults to dynupdate.no-ip.com for noip protocol
          ssl=yes # NOTE: Does not apply when obtaining IP address, just when updating the DNS entry!
          login='nobody@nowhere.com' # Username. For No-IP sub-accounts (groups with passwords), use '<groupname>%3A<username>'.
          password='1234'


          ################################################################################
          # Hosts to update, with optional per-host options

          # Examples:
          # protocol=hammernode1,
          # login='my-hn-login', password='my-hn-password'
          # myhost.hn.org,myhost2.hn.org
          #
          # login='group2%3Ajohndoe@domain.com', password='1234' myhost3.no-ip.biz,myhost4.no-ip.biz
          #
          # myhost.no-ip.biz,myhost2.no-ip.biz

          my.full.hostname


          Update: Encrypted connection to IP detection service is quite pointless. This is now explained in the ddclient.conf template and it now defaults to using unencrypted connection for IP detection.






          share|improve this answer
































            1














            Here is a good walkthrough...
            http://www.ubuntugeek.com/update-ip-addresses-at-dynamic-dns-services-using-ddclient.html



            Hope this helps :)






            share|improve this answer


















            • 1





              This doesn't address the OP's request for No-IP specific configuration.

              – nrobey
              Jul 3 '14 at 14:49


















            0














            No-ip has its own client which worked for me first time it was installed.



            There are instructions on their own website to download the client, and then it's a quick make && make install and you're done. Have your login credentials for no-ip to hand as you will be asked them as part of the configuration wizard. Afterwards, make sure you run noip2 and you can check your host account on their site to see if it has updated.






            share|improve this answer

























            • WARNING: noip2 has security issues! See this answer.

              – Håkon A. Hjortland
              May 1 '14 at 22:58











            • @HåkonA.Hjortland: I didn't realize it accepts HTTPS connections. I've deleted my previous incorrect statement, thanks!

              – MestreLion
              Jul 3 '14 at 1:58


















            0














            If you looking of a good dynamic domain name system



            please check out https://StaticIP.io






            share|improve this answer








            New contributor




            G C is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.




















              Your Answer








              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "89"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader:
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              ,
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );













              draft saved

              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f73048%2fhow-can-i-set-up-a-dynamic-dns-fetching-service-on-ubuntu-server%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              4 Answers
              4






              active

              oldest

              votes








              4 Answers
              4






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              20














              Setting up ddclient for No-IP



              ddclient is a Dynamic Update Client (DUC) which can be used to update dynamic DNS entries. It checks the current IP address at regular intervals and updates the DNS information when a change is detected. Here is how to install and configure it for the No-IP (noip.com/no-ip.com) service.



              First, install the ddclient package. We will configure it manually later, so just press enter for all configuration questions.



              sudo apt-get install ddclient


              Stop the ddclient daemon. The sudo service ddclient stop command does not work on Ubuntu 12.04 due to a bug, so we use pkill instead.



              sudo pkill ddclient


              Edit the config files. To turn off the backup files (e.g. /etc/ddclient.conf~) which gedit creates by default and which could for example contain passwords after you thought you had deleted them, turn off the setting
              Edit -> Preferences -> Editor -> Create a backup copy of files before saving.



              sudo gedit /etc/ddclient.conf /etc/default/ddclient


              Delete the old content of /etc/ddclient.conf and paste in the template shown below.



              Read through the comments of the template and customize the file to your needs.



              It could be a good idea to use a noip.com sub-account, i.e. a group with password (this feature is a pay-service). This way, the password only gives access to updating the specified hosts and not full access to your entire No-IP account, which could include MX records (an attacker which acquires your password could change the MX records in order to intercept your e-mails) or other services such as IMAP accounts.



              You should probably set daemon_interval=3600 (see template comments).



              Test your configuration with the following command:



              sudo ddclient -daemon=0 -debug -verbose -noquiet -force


              You should get a good (IP address updated) or nochg (IP address was already set to that value) response. It is OK to receive the following warning at this point (but it is not OK to keep getting the warning during normal operation):



              WARNING: updating <hostname>: nochg: No update required; unnecessary attempts to change to the current address are considered abusive



              Note: There seems to be some caching going on at the No-IP server, so if the response you get from the server is not what you expect, it might help to just wait a little while.



              When you are done configuring, start the ddclient daemon:



              sudo service ddclient start


              The daemon will also start automatically each time you start the computer.



              The DNS entry/entries will now be updated each time an IP address change is detected.



              Troubleshooting



              Run package configuration again:



              sudo dpkg-reconfigure ddclient


              Remove package and config files:



              sudo apt-get purge ddclient


              Daemon control:



              sudo service ddclient status
              sudo service ddclient start
              sudo service ddclient stop
              # The stop command above does not work on Ubuntu 12.04 due to a bug, but
              # it works on 14.04. Here are alternative ways to control the daemon:
              ps -A f | grep -i ddclient
              sudo pkill ddclient


              Delete the cache to trick the daemon into updating the DNS entry for debugging purposes (during normal operation the DNS entry is only updated if the current IP address is different from the IP address stored in the cache):



              sudo pkill ddclient
              sudo rm /var/cache/ddclient/ddclient.cache
              sudo service ddclient start
              # See the result:
              tail /var/log/syslog
              # If you have set up mail=..., you should also receive an e-mail.
              # The syslog and e-mail should show a "good" or "nochg" response.


              Test whether the daemon will actually update the DNS entry when the IP address has changed, by setting the DNS entry IP address to 1.2.3.4 and then starting the daemon:



              sudo pkill ddclient
              sudo ddclient -daemon=0 -debug -verbose -noquiet -force -use ip -ip 1.2.3.4
              sleep 30 # ddclient will not perform updates less than 30 seconds apart
              sudo service ddclient start


              Debug run (update DNS entry never / as needed / always):



              sudo ddclient -daemon=0 -debug -verbose -noquiet -noexec
              sudo ddclient -daemon=0 -debug -verbose -noquiet
              sudo ddclient -daemon=0 -debug -verbose -noquiet -force


              Try to detect current IP address using various methods:



              sudo ddclient -query


              Files of interest:



              /etc/ddclient.conf
              /etc/default/ddclient
              /var/cache/ddclient/ddclient.cache


              Messages from the daemon will appear here (and will also be sent by e-mail if set up to do so):



              /var/log/syslog


              Documentation:



              • ddclient -help

              • /usr/share/doc/ddclient/examples/sample-etc_ddclient.conf.gz

              • ddclient home page

              • No-IP protocol

              Template for /etc/ddclient.conf



              ################################################################################
              # Configuration file for ddclient
              ################################################################################


              ################################################################################
              # Misc. configurations

              # To choose between ipup mode (for dial-on-demand) and daemon mode, please edit
              # /etc/default/ddclient.

              #mail=root # E-mail messages to this address
              #mail-failure=root # E-mail messages about failed updates to this address


              ################################################################################
              # How to obtain current IP address

              # Methods:
              # use=ip, ip=ADDRESS # Set the IP address to ADDRESS
              # use=if, if=INTERFACE, if-skip=PATTERN # Obtain IP address by calling 'ifconfig INTERFACE'
              # use=web, web=PROVIDER|URL, web-skip=PATTERN # Obtain IP address from IP discovery web page
              # use=cmd, cmd=PROGRAM, cmd-skip=PATTERN # Obtain IP address by calling PROGRAM
              # use=fw|FWMODEL, fw=ADDRESS|URL, fw-skip=PATTERN # Obtain IP address from firewall web page
              # fw-login=LOGIN, fw-password=SECRET
              #
              # The *-skip options can be used to skip IP addresses found before PATTERN.
              #
              # NOTE: The ddclient IP detection routines do not respect the HTTPS prefix in
              # URLs, and instead fall back to HTTP (this is fixed in version 3.8.1). The
              # option ssl=yes does not apply to the IP detection either (this is at least
              # how versions 3.8.0 to 3.8.2 behave).
              #
              # The default time between each IP address change check is daemon_interval=300
              # (5 minutes), which may be a bit too frequent when using an external IP
              # discovery service. To set the checking interval to e.g. one hour instead,
              # please edit /etc/default/ddclient and set daemon_interval=3600.

              # Obtain IP address from network interface
              #use=if, if=eth0

              # Obtain IP address from no-ip.com IP discovery web page (unencrypted connection)
              use=web, web='http://ip1.dynupdate.no-ip.com:8245/'

              # Obtain IP address from no-ip.com IP discovery web page (encrypted connection)
              # Encryption does not offer any real protection since a man-in-the-middle
              # attack could route the HTTPS connection through a host belonging to the
              # attacker, thus causing an incorrect IP address to be reported.
              #use=cmd, cmd='bash -c "set -o pipefail; timeout 120 wget -qO-
              # --header=Host:ip1.dynupdate.no-ip.com https://dynupdate.no-ip.com/ | head -c 1000"'


              ################################################################################
              # Dynamic DNS service setup

              protocol=noip
              #server= # Defaults to dynupdate.no-ip.com for noip protocol
              ssl=yes # NOTE: Does not apply when obtaining IP address, just when updating the DNS entry!
              login='nobody@nowhere.com' # Username. For No-IP sub-accounts (groups with passwords), use '<groupname>%3A<username>'.
              password='1234'


              ################################################################################
              # Hosts to update, with optional per-host options

              # Examples:
              # protocol=hammernode1,
              # login='my-hn-login', password='my-hn-password'
              # myhost.hn.org,myhost2.hn.org
              #
              # login='group2%3Ajohndoe@domain.com', password='1234' myhost3.no-ip.biz,myhost4.no-ip.biz
              #
              # myhost.no-ip.biz,myhost2.no-ip.biz

              my.full.hostname


              Update: Encrypted connection to IP detection service is quite pointless. This is now explained in the ddclient.conf template and it now defaults to using unencrypted connection for IP detection.






              share|improve this answer





























                20














                Setting up ddclient for No-IP



                ddclient is a Dynamic Update Client (DUC) which can be used to update dynamic DNS entries. It checks the current IP address at regular intervals and updates the DNS information when a change is detected. Here is how to install and configure it for the No-IP (noip.com/no-ip.com) service.



                First, install the ddclient package. We will configure it manually later, so just press enter for all configuration questions.



                sudo apt-get install ddclient


                Stop the ddclient daemon. The sudo service ddclient stop command does not work on Ubuntu 12.04 due to a bug, so we use pkill instead.



                sudo pkill ddclient


                Edit the config files. To turn off the backup files (e.g. /etc/ddclient.conf~) which gedit creates by default and which could for example contain passwords after you thought you had deleted them, turn off the setting
                Edit -> Preferences -> Editor -> Create a backup copy of files before saving.



                sudo gedit /etc/ddclient.conf /etc/default/ddclient


                Delete the old content of /etc/ddclient.conf and paste in the template shown below.



                Read through the comments of the template and customize the file to your needs.



                It could be a good idea to use a noip.com sub-account, i.e. a group with password (this feature is a pay-service). This way, the password only gives access to updating the specified hosts and not full access to your entire No-IP account, which could include MX records (an attacker which acquires your password could change the MX records in order to intercept your e-mails) or other services such as IMAP accounts.



                You should probably set daemon_interval=3600 (see template comments).



                Test your configuration with the following command:



                sudo ddclient -daemon=0 -debug -verbose -noquiet -force


                You should get a good (IP address updated) or nochg (IP address was already set to that value) response. It is OK to receive the following warning at this point (but it is not OK to keep getting the warning during normal operation):



                WARNING: updating <hostname>: nochg: No update required; unnecessary attempts to change to the current address are considered abusive



                Note: There seems to be some caching going on at the No-IP server, so if the response you get from the server is not what you expect, it might help to just wait a little while.



                When you are done configuring, start the ddclient daemon:



                sudo service ddclient start


                The daemon will also start automatically each time you start the computer.



                The DNS entry/entries will now be updated each time an IP address change is detected.



                Troubleshooting



                Run package configuration again:



                sudo dpkg-reconfigure ddclient


                Remove package and config files:



                sudo apt-get purge ddclient


                Daemon control:



                sudo service ddclient status
                sudo service ddclient start
                sudo service ddclient stop
                # The stop command above does not work on Ubuntu 12.04 due to a bug, but
                # it works on 14.04. Here are alternative ways to control the daemon:
                ps -A f | grep -i ddclient
                sudo pkill ddclient


                Delete the cache to trick the daemon into updating the DNS entry for debugging purposes (during normal operation the DNS entry is only updated if the current IP address is different from the IP address stored in the cache):



                sudo pkill ddclient
                sudo rm /var/cache/ddclient/ddclient.cache
                sudo service ddclient start
                # See the result:
                tail /var/log/syslog
                # If you have set up mail=..., you should also receive an e-mail.
                # The syslog and e-mail should show a "good" or "nochg" response.


                Test whether the daemon will actually update the DNS entry when the IP address has changed, by setting the DNS entry IP address to 1.2.3.4 and then starting the daemon:



                sudo pkill ddclient
                sudo ddclient -daemon=0 -debug -verbose -noquiet -force -use ip -ip 1.2.3.4
                sleep 30 # ddclient will not perform updates less than 30 seconds apart
                sudo service ddclient start


                Debug run (update DNS entry never / as needed / always):



                sudo ddclient -daemon=0 -debug -verbose -noquiet -noexec
                sudo ddclient -daemon=0 -debug -verbose -noquiet
                sudo ddclient -daemon=0 -debug -verbose -noquiet -force


                Try to detect current IP address using various methods:



                sudo ddclient -query


                Files of interest:



                /etc/ddclient.conf
                /etc/default/ddclient
                /var/cache/ddclient/ddclient.cache


                Messages from the daemon will appear here (and will also be sent by e-mail if set up to do so):



                /var/log/syslog


                Documentation:



                • ddclient -help

                • /usr/share/doc/ddclient/examples/sample-etc_ddclient.conf.gz

                • ddclient home page

                • No-IP protocol

                Template for /etc/ddclient.conf



                ################################################################################
                # Configuration file for ddclient
                ################################################################################


                ################################################################################
                # Misc. configurations

                # To choose between ipup mode (for dial-on-demand) and daemon mode, please edit
                # /etc/default/ddclient.

                #mail=root # E-mail messages to this address
                #mail-failure=root # E-mail messages about failed updates to this address


                ################################################################################
                # How to obtain current IP address

                # Methods:
                # use=ip, ip=ADDRESS # Set the IP address to ADDRESS
                # use=if, if=INTERFACE, if-skip=PATTERN # Obtain IP address by calling 'ifconfig INTERFACE'
                # use=web, web=PROVIDER|URL, web-skip=PATTERN # Obtain IP address from IP discovery web page
                # use=cmd, cmd=PROGRAM, cmd-skip=PATTERN # Obtain IP address by calling PROGRAM
                # use=fw|FWMODEL, fw=ADDRESS|URL, fw-skip=PATTERN # Obtain IP address from firewall web page
                # fw-login=LOGIN, fw-password=SECRET
                #
                # The *-skip options can be used to skip IP addresses found before PATTERN.
                #
                # NOTE: The ddclient IP detection routines do not respect the HTTPS prefix in
                # URLs, and instead fall back to HTTP (this is fixed in version 3.8.1). The
                # option ssl=yes does not apply to the IP detection either (this is at least
                # how versions 3.8.0 to 3.8.2 behave).
                #
                # The default time between each IP address change check is daemon_interval=300
                # (5 minutes), which may be a bit too frequent when using an external IP
                # discovery service. To set the checking interval to e.g. one hour instead,
                # please edit /etc/default/ddclient and set daemon_interval=3600.

                # Obtain IP address from network interface
                #use=if, if=eth0

                # Obtain IP address from no-ip.com IP discovery web page (unencrypted connection)
                use=web, web='http://ip1.dynupdate.no-ip.com:8245/'

                # Obtain IP address from no-ip.com IP discovery web page (encrypted connection)
                # Encryption does not offer any real protection since a man-in-the-middle
                # attack could route the HTTPS connection through a host belonging to the
                # attacker, thus causing an incorrect IP address to be reported.
                #use=cmd, cmd='bash -c "set -o pipefail; timeout 120 wget -qO-
                # --header=Host:ip1.dynupdate.no-ip.com https://dynupdate.no-ip.com/ | head -c 1000"'


                ################################################################################
                # Dynamic DNS service setup

                protocol=noip
                #server= # Defaults to dynupdate.no-ip.com for noip protocol
                ssl=yes # NOTE: Does not apply when obtaining IP address, just when updating the DNS entry!
                login='nobody@nowhere.com' # Username. For No-IP sub-accounts (groups with passwords), use '<groupname>%3A<username>'.
                password='1234'


                ################################################################################
                # Hosts to update, with optional per-host options

                # Examples:
                # protocol=hammernode1,
                # login='my-hn-login', password='my-hn-password'
                # myhost.hn.org,myhost2.hn.org
                #
                # login='group2%3Ajohndoe@domain.com', password='1234' myhost3.no-ip.biz,myhost4.no-ip.biz
                #
                # myhost.no-ip.biz,myhost2.no-ip.biz

                my.full.hostname


                Update: Encrypted connection to IP detection service is quite pointless. This is now explained in the ddclient.conf template and it now defaults to using unencrypted connection for IP detection.






                share|improve this answer



























                  20












                  20








                  20







                  Setting up ddclient for No-IP



                  ddclient is a Dynamic Update Client (DUC) which can be used to update dynamic DNS entries. It checks the current IP address at regular intervals and updates the DNS information when a change is detected. Here is how to install and configure it for the No-IP (noip.com/no-ip.com) service.



                  First, install the ddclient package. We will configure it manually later, so just press enter for all configuration questions.



                  sudo apt-get install ddclient


                  Stop the ddclient daemon. The sudo service ddclient stop command does not work on Ubuntu 12.04 due to a bug, so we use pkill instead.



                  sudo pkill ddclient


                  Edit the config files. To turn off the backup files (e.g. /etc/ddclient.conf~) which gedit creates by default and which could for example contain passwords after you thought you had deleted them, turn off the setting
                  Edit -> Preferences -> Editor -> Create a backup copy of files before saving.



                  sudo gedit /etc/ddclient.conf /etc/default/ddclient


                  Delete the old content of /etc/ddclient.conf and paste in the template shown below.



                  Read through the comments of the template and customize the file to your needs.



                  It could be a good idea to use a noip.com sub-account, i.e. a group with password (this feature is a pay-service). This way, the password only gives access to updating the specified hosts and not full access to your entire No-IP account, which could include MX records (an attacker which acquires your password could change the MX records in order to intercept your e-mails) or other services such as IMAP accounts.



                  You should probably set daemon_interval=3600 (see template comments).



                  Test your configuration with the following command:



                  sudo ddclient -daemon=0 -debug -verbose -noquiet -force


                  You should get a good (IP address updated) or nochg (IP address was already set to that value) response. It is OK to receive the following warning at this point (but it is not OK to keep getting the warning during normal operation):



                  WARNING: updating <hostname>: nochg: No update required; unnecessary attempts to change to the current address are considered abusive



                  Note: There seems to be some caching going on at the No-IP server, so if the response you get from the server is not what you expect, it might help to just wait a little while.



                  When you are done configuring, start the ddclient daemon:



                  sudo service ddclient start


                  The daemon will also start automatically each time you start the computer.



                  The DNS entry/entries will now be updated each time an IP address change is detected.



                  Troubleshooting



                  Run package configuration again:



                  sudo dpkg-reconfigure ddclient


                  Remove package and config files:



                  sudo apt-get purge ddclient


                  Daemon control:



                  sudo service ddclient status
                  sudo service ddclient start
                  sudo service ddclient stop
                  # The stop command above does not work on Ubuntu 12.04 due to a bug, but
                  # it works on 14.04. Here are alternative ways to control the daemon:
                  ps -A f | grep -i ddclient
                  sudo pkill ddclient


                  Delete the cache to trick the daemon into updating the DNS entry for debugging purposes (during normal operation the DNS entry is only updated if the current IP address is different from the IP address stored in the cache):



                  sudo pkill ddclient
                  sudo rm /var/cache/ddclient/ddclient.cache
                  sudo service ddclient start
                  # See the result:
                  tail /var/log/syslog
                  # If you have set up mail=..., you should also receive an e-mail.
                  # The syslog and e-mail should show a "good" or "nochg" response.


                  Test whether the daemon will actually update the DNS entry when the IP address has changed, by setting the DNS entry IP address to 1.2.3.4 and then starting the daemon:



                  sudo pkill ddclient
                  sudo ddclient -daemon=0 -debug -verbose -noquiet -force -use ip -ip 1.2.3.4
                  sleep 30 # ddclient will not perform updates less than 30 seconds apart
                  sudo service ddclient start


                  Debug run (update DNS entry never / as needed / always):



                  sudo ddclient -daemon=0 -debug -verbose -noquiet -noexec
                  sudo ddclient -daemon=0 -debug -verbose -noquiet
                  sudo ddclient -daemon=0 -debug -verbose -noquiet -force


                  Try to detect current IP address using various methods:



                  sudo ddclient -query


                  Files of interest:



                  /etc/ddclient.conf
                  /etc/default/ddclient
                  /var/cache/ddclient/ddclient.cache


                  Messages from the daemon will appear here (and will also be sent by e-mail if set up to do so):



                  /var/log/syslog


                  Documentation:



                  • ddclient -help

                  • /usr/share/doc/ddclient/examples/sample-etc_ddclient.conf.gz

                  • ddclient home page

                  • No-IP protocol

                  Template for /etc/ddclient.conf



                  ################################################################################
                  # Configuration file for ddclient
                  ################################################################################


                  ################################################################################
                  # Misc. configurations

                  # To choose between ipup mode (for dial-on-demand) and daemon mode, please edit
                  # /etc/default/ddclient.

                  #mail=root # E-mail messages to this address
                  #mail-failure=root # E-mail messages about failed updates to this address


                  ################################################################################
                  # How to obtain current IP address

                  # Methods:
                  # use=ip, ip=ADDRESS # Set the IP address to ADDRESS
                  # use=if, if=INTERFACE, if-skip=PATTERN # Obtain IP address by calling 'ifconfig INTERFACE'
                  # use=web, web=PROVIDER|URL, web-skip=PATTERN # Obtain IP address from IP discovery web page
                  # use=cmd, cmd=PROGRAM, cmd-skip=PATTERN # Obtain IP address by calling PROGRAM
                  # use=fw|FWMODEL, fw=ADDRESS|URL, fw-skip=PATTERN # Obtain IP address from firewall web page
                  # fw-login=LOGIN, fw-password=SECRET
                  #
                  # The *-skip options can be used to skip IP addresses found before PATTERN.
                  #
                  # NOTE: The ddclient IP detection routines do not respect the HTTPS prefix in
                  # URLs, and instead fall back to HTTP (this is fixed in version 3.8.1). The
                  # option ssl=yes does not apply to the IP detection either (this is at least
                  # how versions 3.8.0 to 3.8.2 behave).
                  #
                  # The default time between each IP address change check is daemon_interval=300
                  # (5 minutes), which may be a bit too frequent when using an external IP
                  # discovery service. To set the checking interval to e.g. one hour instead,
                  # please edit /etc/default/ddclient and set daemon_interval=3600.

                  # Obtain IP address from network interface
                  #use=if, if=eth0

                  # Obtain IP address from no-ip.com IP discovery web page (unencrypted connection)
                  use=web, web='http://ip1.dynupdate.no-ip.com:8245/'

                  # Obtain IP address from no-ip.com IP discovery web page (encrypted connection)
                  # Encryption does not offer any real protection since a man-in-the-middle
                  # attack could route the HTTPS connection through a host belonging to the
                  # attacker, thus causing an incorrect IP address to be reported.
                  #use=cmd, cmd='bash -c "set -o pipefail; timeout 120 wget -qO-
                  # --header=Host:ip1.dynupdate.no-ip.com https://dynupdate.no-ip.com/ | head -c 1000"'


                  ################################################################################
                  # Dynamic DNS service setup

                  protocol=noip
                  #server= # Defaults to dynupdate.no-ip.com for noip protocol
                  ssl=yes # NOTE: Does not apply when obtaining IP address, just when updating the DNS entry!
                  login='nobody@nowhere.com' # Username. For No-IP sub-accounts (groups with passwords), use '<groupname>%3A<username>'.
                  password='1234'


                  ################################################################################
                  # Hosts to update, with optional per-host options

                  # Examples:
                  # protocol=hammernode1,
                  # login='my-hn-login', password='my-hn-password'
                  # myhost.hn.org,myhost2.hn.org
                  #
                  # login='group2%3Ajohndoe@domain.com', password='1234' myhost3.no-ip.biz,myhost4.no-ip.biz
                  #
                  # myhost.no-ip.biz,myhost2.no-ip.biz

                  my.full.hostname


                  Update: Encrypted connection to IP detection service is quite pointless. This is now explained in the ddclient.conf template and it now defaults to using unencrypted connection for IP detection.






                  share|improve this answer















                  Setting up ddclient for No-IP



                  ddclient is a Dynamic Update Client (DUC) which can be used to update dynamic DNS entries. It checks the current IP address at regular intervals and updates the DNS information when a change is detected. Here is how to install and configure it for the No-IP (noip.com/no-ip.com) service.



                  First, install the ddclient package. We will configure it manually later, so just press enter for all configuration questions.



                  sudo apt-get install ddclient


                  Stop the ddclient daemon. The sudo service ddclient stop command does not work on Ubuntu 12.04 due to a bug, so we use pkill instead.



                  sudo pkill ddclient


                  Edit the config files. To turn off the backup files (e.g. /etc/ddclient.conf~) which gedit creates by default and which could for example contain passwords after you thought you had deleted them, turn off the setting
                  Edit -> Preferences -> Editor -> Create a backup copy of files before saving.



                  sudo gedit /etc/ddclient.conf /etc/default/ddclient


                  Delete the old content of /etc/ddclient.conf and paste in the template shown below.



                  Read through the comments of the template and customize the file to your needs.



                  It could be a good idea to use a noip.com sub-account, i.e. a group with password (this feature is a pay-service). This way, the password only gives access to updating the specified hosts and not full access to your entire No-IP account, which could include MX records (an attacker which acquires your password could change the MX records in order to intercept your e-mails) or other services such as IMAP accounts.



                  You should probably set daemon_interval=3600 (see template comments).



                  Test your configuration with the following command:



                  sudo ddclient -daemon=0 -debug -verbose -noquiet -force


                  You should get a good (IP address updated) or nochg (IP address was already set to that value) response. It is OK to receive the following warning at this point (but it is not OK to keep getting the warning during normal operation):



                  WARNING: updating <hostname>: nochg: No update required; unnecessary attempts to change to the current address are considered abusive



                  Note: There seems to be some caching going on at the No-IP server, so if the response you get from the server is not what you expect, it might help to just wait a little while.



                  When you are done configuring, start the ddclient daemon:



                  sudo service ddclient start


                  The daemon will also start automatically each time you start the computer.



                  The DNS entry/entries will now be updated each time an IP address change is detected.



                  Troubleshooting



                  Run package configuration again:



                  sudo dpkg-reconfigure ddclient


                  Remove package and config files:



                  sudo apt-get purge ddclient


                  Daemon control:



                  sudo service ddclient status
                  sudo service ddclient start
                  sudo service ddclient stop
                  # The stop command above does not work on Ubuntu 12.04 due to a bug, but
                  # it works on 14.04. Here are alternative ways to control the daemon:
                  ps -A f | grep -i ddclient
                  sudo pkill ddclient


                  Delete the cache to trick the daemon into updating the DNS entry for debugging purposes (during normal operation the DNS entry is only updated if the current IP address is different from the IP address stored in the cache):



                  sudo pkill ddclient
                  sudo rm /var/cache/ddclient/ddclient.cache
                  sudo service ddclient start
                  # See the result:
                  tail /var/log/syslog
                  # If you have set up mail=..., you should also receive an e-mail.
                  # The syslog and e-mail should show a "good" or "nochg" response.


                  Test whether the daemon will actually update the DNS entry when the IP address has changed, by setting the DNS entry IP address to 1.2.3.4 and then starting the daemon:



                  sudo pkill ddclient
                  sudo ddclient -daemon=0 -debug -verbose -noquiet -force -use ip -ip 1.2.3.4
                  sleep 30 # ddclient will not perform updates less than 30 seconds apart
                  sudo service ddclient start


                  Debug run (update DNS entry never / as needed / always):



                  sudo ddclient -daemon=0 -debug -verbose -noquiet -noexec
                  sudo ddclient -daemon=0 -debug -verbose -noquiet
                  sudo ddclient -daemon=0 -debug -verbose -noquiet -force


                  Try to detect current IP address using various methods:



                  sudo ddclient -query


                  Files of interest:



                  /etc/ddclient.conf
                  /etc/default/ddclient
                  /var/cache/ddclient/ddclient.cache


                  Messages from the daemon will appear here (and will also be sent by e-mail if set up to do so):



                  /var/log/syslog


                  Documentation:



                  • ddclient -help

                  • /usr/share/doc/ddclient/examples/sample-etc_ddclient.conf.gz

                  • ddclient home page

                  • No-IP protocol

                  Template for /etc/ddclient.conf



                  ################################################################################
                  # Configuration file for ddclient
                  ################################################################################


                  ################################################################################
                  # Misc. configurations

                  # To choose between ipup mode (for dial-on-demand) and daemon mode, please edit
                  # /etc/default/ddclient.

                  #mail=root # E-mail messages to this address
                  #mail-failure=root # E-mail messages about failed updates to this address


                  ################################################################################
                  # How to obtain current IP address

                  # Methods:
                  # use=ip, ip=ADDRESS # Set the IP address to ADDRESS
                  # use=if, if=INTERFACE, if-skip=PATTERN # Obtain IP address by calling 'ifconfig INTERFACE'
                  # use=web, web=PROVIDER|URL, web-skip=PATTERN # Obtain IP address from IP discovery web page
                  # use=cmd, cmd=PROGRAM, cmd-skip=PATTERN # Obtain IP address by calling PROGRAM
                  # use=fw|FWMODEL, fw=ADDRESS|URL, fw-skip=PATTERN # Obtain IP address from firewall web page
                  # fw-login=LOGIN, fw-password=SECRET
                  #
                  # The *-skip options can be used to skip IP addresses found before PATTERN.
                  #
                  # NOTE: The ddclient IP detection routines do not respect the HTTPS prefix in
                  # URLs, and instead fall back to HTTP (this is fixed in version 3.8.1). The
                  # option ssl=yes does not apply to the IP detection either (this is at least
                  # how versions 3.8.0 to 3.8.2 behave).
                  #
                  # The default time between each IP address change check is daemon_interval=300
                  # (5 minutes), which may be a bit too frequent when using an external IP
                  # discovery service. To set the checking interval to e.g. one hour instead,
                  # please edit /etc/default/ddclient and set daemon_interval=3600.

                  # Obtain IP address from network interface
                  #use=if, if=eth0

                  # Obtain IP address from no-ip.com IP discovery web page (unencrypted connection)
                  use=web, web='http://ip1.dynupdate.no-ip.com:8245/'

                  # Obtain IP address from no-ip.com IP discovery web page (encrypted connection)
                  # Encryption does not offer any real protection since a man-in-the-middle
                  # attack could route the HTTPS connection through a host belonging to the
                  # attacker, thus causing an incorrect IP address to be reported.
                  #use=cmd, cmd='bash -c "set -o pipefail; timeout 120 wget -qO-
                  # --header=Host:ip1.dynupdate.no-ip.com https://dynupdate.no-ip.com/ | head -c 1000"'


                  ################################################################################
                  # Dynamic DNS service setup

                  protocol=noip
                  #server= # Defaults to dynupdate.no-ip.com for noip protocol
                  ssl=yes # NOTE: Does not apply when obtaining IP address, just when updating the DNS entry!
                  login='nobody@nowhere.com' # Username. For No-IP sub-accounts (groups with passwords), use '<groupname>%3A<username>'.
                  password='1234'


                  ################################################################################
                  # Hosts to update, with optional per-host options

                  # Examples:
                  # protocol=hammernode1,
                  # login='my-hn-login', password='my-hn-password'
                  # myhost.hn.org,myhost2.hn.org
                  #
                  # login='group2%3Ajohndoe@domain.com', password='1234' myhost3.no-ip.biz,myhost4.no-ip.biz
                  #
                  # myhost.no-ip.biz,myhost2.no-ip.biz

                  my.full.hostname


                  Update: Encrypted connection to IP detection service is quite pointless. This is now explained in the ddclient.conf template and it now defaults to using unencrypted connection for IP detection.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited May 4 '14 at 1:47

























                  answered Apr 30 '14 at 20:29









                  Håkon A. HjortlandHåkon A. Hjortland

                  3,20112225




                  3,20112225























                      1














                      Here is a good walkthrough...
                      http://www.ubuntugeek.com/update-ip-addresses-at-dynamic-dns-services-using-ddclient.html



                      Hope this helps :)






                      share|improve this answer


















                      • 1





                        This doesn't address the OP's request for No-IP specific configuration.

                        – nrobey
                        Jul 3 '14 at 14:49















                      1














                      Here is a good walkthrough...
                      http://www.ubuntugeek.com/update-ip-addresses-at-dynamic-dns-services-using-ddclient.html



                      Hope this helps :)






                      share|improve this answer


















                      • 1





                        This doesn't address the OP's request for No-IP specific configuration.

                        – nrobey
                        Jul 3 '14 at 14:49













                      1












                      1








                      1







                      Here is a good walkthrough...
                      http://www.ubuntugeek.com/update-ip-addresses-at-dynamic-dns-services-using-ddclient.html



                      Hope this helps :)






                      share|improve this answer













                      Here is a good walkthrough...
                      http://www.ubuntugeek.com/update-ip-addresses-at-dynamic-dns-services-using-ddclient.html



                      Hope this helps :)







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Oct 28 '11 at 4:08









                      nobodynobody

                      4231718




                      4231718







                      • 1





                        This doesn't address the OP's request for No-IP specific configuration.

                        – nrobey
                        Jul 3 '14 at 14:49












                      • 1





                        This doesn't address the OP's request for No-IP specific configuration.

                        – nrobey
                        Jul 3 '14 at 14:49







                      1




                      1





                      This doesn't address the OP's request for No-IP specific configuration.

                      – nrobey
                      Jul 3 '14 at 14:49





                      This doesn't address the OP's request for No-IP specific configuration.

                      – nrobey
                      Jul 3 '14 at 14:49











                      0














                      No-ip has its own client which worked for me first time it was installed.



                      There are instructions on their own website to download the client, and then it's a quick make && make install and you're done. Have your login credentials for no-ip to hand as you will be asked them as part of the configuration wizard. Afterwards, make sure you run noip2 and you can check your host account on their site to see if it has updated.






                      share|improve this answer

























                      • WARNING: noip2 has security issues! See this answer.

                        – Håkon A. Hjortland
                        May 1 '14 at 22:58











                      • @HåkonA.Hjortland: I didn't realize it accepts HTTPS connections. I've deleted my previous incorrect statement, thanks!

                        – MestreLion
                        Jul 3 '14 at 1:58















                      0














                      No-ip has its own client which worked for me first time it was installed.



                      There are instructions on their own website to download the client, and then it's a quick make && make install and you're done. Have your login credentials for no-ip to hand as you will be asked them as part of the configuration wizard. Afterwards, make sure you run noip2 and you can check your host account on their site to see if it has updated.






                      share|improve this answer

























                      • WARNING: noip2 has security issues! See this answer.

                        – Håkon A. Hjortland
                        May 1 '14 at 22:58











                      • @HåkonA.Hjortland: I didn't realize it accepts HTTPS connections. I've deleted my previous incorrect statement, thanks!

                        – MestreLion
                        Jul 3 '14 at 1:58













                      0












                      0








                      0







                      No-ip has its own client which worked for me first time it was installed.



                      There are instructions on their own website to download the client, and then it's a quick make && make install and you're done. Have your login credentials for no-ip to hand as you will be asked them as part of the configuration wizard. Afterwards, make sure you run noip2 and you can check your host account on their site to see if it has updated.






                      share|improve this answer















                      No-ip has its own client which worked for me first time it was installed.



                      There are instructions on their own website to download the client, and then it's a quick make && make install and you're done. Have your login credentials for no-ip to hand as you will be asked them as part of the configuration wizard. Afterwards, make sure you run noip2 and you can check your host account on their site to see if it has updated.







                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      edited Oct 6 '12 at 12:14









                      Eliah Kagan

                      83k22229369




                      83k22229369










                      answered Aug 7 '12 at 9:46









                      ChrisChris

                      213




                      213












                      • WARNING: noip2 has security issues! See this answer.

                        – Håkon A. Hjortland
                        May 1 '14 at 22:58











                      • @HåkonA.Hjortland: I didn't realize it accepts HTTPS connections. I've deleted my previous incorrect statement, thanks!

                        – MestreLion
                        Jul 3 '14 at 1:58

















                      • WARNING: noip2 has security issues! See this answer.

                        – Håkon A. Hjortland
                        May 1 '14 at 22:58











                      • @HåkonA.Hjortland: I didn't realize it accepts HTTPS connections. I've deleted my previous incorrect statement, thanks!

                        – MestreLion
                        Jul 3 '14 at 1:58
















                      WARNING: noip2 has security issues! See this answer.

                      – Håkon A. Hjortland
                      May 1 '14 at 22:58





                      WARNING: noip2 has security issues! See this answer.

                      – Håkon A. Hjortland
                      May 1 '14 at 22:58













                      @HåkonA.Hjortland: I didn't realize it accepts HTTPS connections. I've deleted my previous incorrect statement, thanks!

                      – MestreLion
                      Jul 3 '14 at 1:58





                      @HåkonA.Hjortland: I didn't realize it accepts HTTPS connections. I've deleted my previous incorrect statement, thanks!

                      – MestreLion
                      Jul 3 '14 at 1:58











                      0














                      If you looking of a good dynamic domain name system



                      please check out https://StaticIP.io






                      share|improve this answer








                      New contributor




                      G C is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.
























                        0














                        If you looking of a good dynamic domain name system



                        please check out https://StaticIP.io






                        share|improve this answer








                        New contributor




                        G C is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.






















                          0












                          0








                          0







                          If you looking of a good dynamic domain name system



                          please check out https://StaticIP.io






                          share|improve this answer








                          New contributor




                          G C is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.










                          If you looking of a good dynamic domain name system



                          please check out https://StaticIP.io







                          share|improve this answer








                          New contributor




                          G C is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.









                          share|improve this answer



                          share|improve this answer






                          New contributor




                          G C is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.









                          answered 19 mins ago









                          G CG C

                          1




                          1




                          New contributor




                          G C is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.





                          New contributor





                          G C is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.






                          G C is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.



























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Ask Ubuntu!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f73048%2fhow-can-i-set-up-a-dynamic-dns-fetching-service-on-ubuntu-server%23new-answer', 'question_page');

                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Möglingen Índice Localización Historia Demografía Referencias Enlaces externos Menú de navegación48°53′18″N 9°07′45″E / 48.888333333333, 9.129166666666748°53′18″N 9°07′45″E / 48.888333333333, 9.1291666666667Sitio web oficial Mapa de Möglingen«Gemeinden in Deutschland nach Fläche, Bevölkerung und Postleitzahl am 30.09.2016»Möglingen

                              Virtualbox - Configuration error: Querying “UUID” failed (VERR_CFGM_VALUE_NOT_FOUND)“VERR_SUPLIB_WORLD_WRITABLE” error when trying to installing OS in virtualboxVirtual Box Kernel errorFailed to open a seesion for the virtual machineFailed to open a session for the virtual machineUbuntu 14.04 LTS Virtualbox errorcan't use VM VirtualBoxusing virtualboxI can't run Linux-64 Bit on VirtualBoxUnable to insert the virtual optical disk (VBoxguestaddition) in virtual machine for ubuntu server in win 10VirtuaBox in Ubuntu 18.04 Issues with Win10.ISO Installation

                              Antonio De Lisio Carrera Referencias Menú de navegación«Caracas: evolución relacional multipleja»«Cuando los gobiernos subestiman a las localidades: L a Iniciativa para la Integración de la Infraestructura Regional Suramericana (IIRSA) en la frontera Colombo-Venezolana»«Maestría en Planificación Integral del Ambiente»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«Conózcanos»«Caracas: evolución relacional multipleja»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»