Frequently Asked Questions

 

What do I set my name servers to?

Under normal circumstances you are to set your primary and secondary name servers at your registrar to the following...

  • ns1.wtfdns.com
  • ns2.wtfdns.com

Do you offer domain registration?

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.


I forgot my password!

Reset your password if you forgot it by clicking here.


How do I use Dynamic DNS?

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.

API Url

Secure: https://secure.wtfdns.com/dyndns_update.php
Insecure: http://www.wtfdns.com/dyndns_update.php

Get Paramaters

record <id>
token <token>
data <data> (optional)

Linux Crontab

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>'