Adding a Forward and Reverse Record…
Hey Folks,
To setup a PTR record (reverse lookup) you need to create a special zone for it.
For the following information, we’re going to use the following IP address and hostname for reference purposes.
IP Address: 12.34.56.78
Hostname: mydomain.com
Okay — with the information, you’d create a new zone with the name:
78.56.34.12.in-addr.arpa. (the final “.” is very important)
This should create a default zone which looks like:
78.56.34.12.in-addr.arpa. A 1 86400 12.34.56.78
www.78.56.34.12.in-addr.arpa. A 1 86400 12.34.56.78
78.56.34.12.in-addr.arpa. NS 1 86400 ns1.us.editdns.net.
78.56.34.12.in-addr.arpa. NS 1 86400 ns2.us.editdns.net.
78.56.34.12.in-addr.arpa. NS 1 86400 ns3.us.editdns.net.
Next, you want to remove both “A” records which are not needed for the reverse lookup zone.
Finally add a “PTR” record with:
78.56.34.12.in-addr.arpa. PTR 1 86400 mydomain.com.
The resulting zone should look something like this:

78.56.34.12.in-addr.arpa zone
So long as your ISP hasn’t imposed some odd restriction, and ns1.us.editdns.net is listed as your SOA for this domain, then everything should resolve without an issue within 2 – 3 days.
Now, you can add the “forward” zone with the name:
mydomain.com. (the final “.” is very important)
Also to save you a step, add the “default ip” as “12.34.56.78″.
This should create a default zone which looks like:

mydomain.com zone
You can test to see if each of the editdns.net servers is properly configured along the way by running the following commands from the windows command line:
nslookup 12.34.56.78 ns1.us.editdns.net
nslookup 12.34.56.78 ns2.us.editdns.net
nslookup 12.34.56.78 ns3.us.editdns.net
(the above focuses on the “US” servers. if using the “EU” servers, simply follow same instructions making sure that the relevent “EU” records are listed and setup the same as the “US” within the zone.)
Hope this helps!