Hi, I have done installation om debian Lenny, and all works fine, and use another server to resolv. A have a test domain.com and i have point the domain to my servers IP address, and configure mydnsconfig to act as a master DNS for my domain.com i have put up a web server and mail server om another IP. If i try dig and nslookup i got no response from the server, im sure my router i configure correctly. i have no ide whats wrong and cant fint any error messages i the log files.
Please post a screenshot of the domain settings in mydnsconfig for this test domain (the first tab and the records tab).
You missed to add a dot at the end of the fully qualified domains names. In mydns and BIND, records that contain a fully qualified domain have to end with a dot. The zone tab is ok.
No. You missed to add the dots in the fqdn's in the data field. Something like ns1.domain.com is a fqdn (fully qualified domain name) and a fqdn has to end with a dot. So it must be ns1.domain.com. and mail.domain.com. If you have relative records like "www", there is no dot at the end. For example, your current MX record mail.domain.com. points to mail.domain.com.domain.com as it is currently a relative record and not a absolute. I guess what you want is that emails for [email protected] gets delivered to the server mail.domain.com, the record for that will be: name: domain.com. data: mail.domain.com.
Better but not fully correct. Please see what I posted above for the mx record. Data must be domain.com. and not mail. Otherwise you would be able to get only emails for [email protected] but I guess you want to get emails for [email protected] The ns record is fine.
not workin Hi again! Now that i know that MyDNSConfig is correctly configured, i try to connect to the web server pointing to my ispconfig 2.2.35 server holding mydomain.com but no answer, i try dig and nslookup ------------------------------------------------ trexen@mDNS:~$ dig ns domain.com ; <<>> DiG 9.5.1-P3 <<>> ns domain.com ;; global options: printcmd ;; connection timed out; no servers could be reached trexen@mDNS:~$ nslookup domain.com ;; connection timed out; no servers could be reached --------------------------------------------------- i talked to the company that have my domain.com and everything looks fine, they just forward my domain to my server (DNS) i have no idea whats wrong. port 53, 8080 are open and a ssh port, im able to telnet on port 53 so its working. plz help rgds /M
If you changed the Nameserver of a domain, you have to wait up to 48 hours. The dig command above does not query your local dns server, it querys any dns server. If you want to test if your local dns server is configured correctly, run the command: dig @localhost domain.com
same problem Hi again. I got no answer from my DNS server from the Internet, it answer correctly when i run "dig @localhost mydomain.com" but if i run nslookup mydomain.com i got no answer (cant find the domain) plz help =) rgds M
Use http://www.yougetsignal.com/tools/open-ports/ check port 53. Is it opened? If you have your firewall off, and yet port 53 does not respond, it means that BIND is not listening to port 53. I'm also facing this problem at the moment. EDIT: I've solved my problem. I'm using Ubuntu 9.10 1. First use "netstat -an" without quotes and check and see if 0.0.0.0:53 exists. I found out that it's using 127.0.0.1:53 which was not correct. 2. I changed /etc/bind/named.conf.options and had it looked something like below, Code: options { directory "/var/cache/bind"; // If there is a firewall between you and nameservers you want // to talk to, you may need to fix the firewall to allow multiple // ports to talk. See [url]http://www.kb.cert.org/vuls/id/800113[/url] // If your ISP provided one or more IP addresses for stable // nameservers, you probably want to use them as forwarders. // Uncomment the following block, and insert the addresses replacing // the all-0's placeholder. // forwarders { // 0.0.0.0; // }; auth-nxdomain no; # conform to RFC1035 listen-on-v6 { ::1; }; allow-recursion { 0.0.0.0; }; query-source port 53; }; 3. Restart BIND Regards, Zepx
same same Hi, sorry by i dont got "Bind" installed this is "Installing MyDNS-NG & MyDNSConfig 3 On Debian Lenny" installation and say nothing about BIND I try netstat -an and it type med the correct IP:53 and 127.0.0.1:53 i already got 3 public BIND servers and they works fine. I will go to MyDNSConfig if i get it to work but i got problems whit that =) thanks
Ok fine, but I think by default all DNS servers listen at port 53. 127.0.0.1:53 is not correct, and I don't think it will be answering any of your DNS Queries. Therefore, you need to make it to 0.0.0.0:53. Figure it out for MyDNSConfig as even the latest ISPConfig 3.0.2.0+ has already started using BIND.
same same same Hi again, I checkt my other BIND servers and none of them had 0.0.0.0:53 only localIP:53 and 127.0.0.1:53 i also got the latest stable version. and no luck =)
Then have you tried the link I gave you? Have you tried checking whether port 53 is blocked? Check them on all of your other servers as well. If they are opened, then it's really strange for me.