Default robots dns info is this and it works:
$TTL 86400
@ IN SOA ns1.first-ns.de. postmaster.robot.first-ns.de. (
201208 ; serial
86400 ; refresh
10800 ; retry
3600000 ; expire
86400 ) ; minimum
@ IN NS robotns3.second-ns.com.
@ IN NS robotns2.second-ns.de.
@ IN NS ns1.first-ns.de.
@ IN A 95.111.1.11
mail IN A 95.111.1.11
www IN A 95.111.1.11
So for private nameserver, first I registered these two names server in 'Registered nameservers' section:
dns1.example.com IP:95.111.1.11
dns2.example.com IP:95.111.1.11
And then I try to add them to the DNS code:
$TTL 86400
@ IN SOA ns1.first-ns.de. postmaster.robot.first-ns.de. (
201208 ; serial
86400 ; refresh
10800 ; retry
3600000 ; expire
86400 ) ; minimum
@ IN NS dns1.example.com.
@ IN NS dns2.example.com.
@ IN A 95.111.1.11
mail IN A 95.111.1.11
www IN A 95.111.1.11
But not works.
what is my wrong?