Under normal circumstances you are to set your primary and secondary name servers at your registrar to the following...
Currently we do not offer domain registration, we will be offering domains as soon as we have a working interface though. In the meantime feel free to register domains at any of the most popular domain registrars like Godaddy.
Reset your password if you forgot it by clicking here.
To update your Dynamic DNS records you can use a router firmware such as "Tomato" or "DD-WRT" to hit our custom URL. Or you can use tools such as wget and crontab to handle the API call. It works very simply, once you add an existing record to dynamic DNS you are given a secure or insecure URL to hit with specific GET paramaters.
Secure: https://secure.wtfdns.com/dyndns_update.php
Insecure: http://www.wtfdns.com/dyndns_update.php
record <id>
token <token>
data <data> (optional)
Using crontab you can make sure your record stays updated by running it once a day.
0 1 * * * wget -q --no-check-certificate -O /dev/null 'https://secure.wtfdns.com/dyndns_update.php?record=<id>&token=<token>'
- or -
0 1 * * * wget -q -O /dev/null 'http://www.wtfdns.com/dyndns_update.php?record=<id>&token=<token>'