Setting up a Cisco IOS router to update multiple no-ip dynamic DNS host names.






The following variables will be used:

  • no-ip Username: noipusername
  • no-ip Password: noippassword
  • no-ip Hostname1: someddnshostname1.sytes.net
  • no-ip Hostname1: someddnshostname2.sytes.net

First create the no-ip connection configuration.

1
2
3
4
5
ip ddns update method no-ip
 HTTP
  add http://noipusername:noippassword@dynupdate.no-ip.com/nic/update?hostname=someddnshostname1.sytes.net,someddnshostname1.sytes.net&myip=<a>
  remove http://noipusername:noippassword@dynupdate.no-ip.com/nic/update?hostname=someddnshostname1.sytes.net,someddnshostname1.sytes.net&myip=<a>
 interval maximum 0 0 5 0

Then on the router’s, internet facing, outside interface, apply the config.

1
2
3
interface Dialer0
 ip ddns update hostname someddnshostname1.sytes.net
 ip ddns update no-ip

Comments