Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
11-19-2013, 12:22 PM
|
#1
|
LQ Newbie
Registered: Nov 2013
Posts: 3
Rep:
|
SERVFAIL, id: 12875 when dig against my server
Good morning thanks for helping.
When I use kloth or digwebinterface against my dns server I get connection timed out, or servfail error messages. Here is the servfail message I get when I dig from the server itself.
dig dns1.snap.lib.ca.us
; <<>> DiG 9.2.4 <<>> dns1.snap.lib.ca.us
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 12875
;; flags: qr rd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;dns1.snap.lib.ca.us. IN A
;; Query time: 0 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Tue Nov 19 12:13:00 2013
;; MSG SIZE rcvd: 37
This particular server has been up and running/functioning for years. We were alerted by the .US registrar in October (didn't receive the email) and today they parked the domain and sent another email that we received. Our domain is currently parked, and the linux admin retired and I'm trying to fumble my way through this. Any help would be super appreciated.
|
|
|
11-19-2013, 04:09 PM
|
#2
|
LQ Guru
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,214
|
It works fine from here:
Code:
; <<>> DiG 9.9.4-P1 <<>> dns1.snap.lib.ca.us
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 49668
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4096
;; QUESTION SECTION:
;dns1.snap.lib.ca.us. IN A
;; ANSWER SECTION:
dns1.snap.lib.ca.us. 17280 IN A 66.127.213.223
;; AUTHORITY SECTION:
snap.lib.ca.us. 7200 IN NS dns1.snap.lib.ca.us.
snap.lib.ca.us. 7200 IN NS soar.snap.lib.ca.us.
;; ADDITIONAL SECTION:
soar.snap.lib.ca.us. 7200 IN A 66.127.213.248
;; Query time: 533 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Tue Nov 19 23:08:08 EET 2013
;; MSG SIZE rcvd: 113
|
|
1 members found this post helpful.
|
11-19-2013, 04:16 PM
|
#3
|
LQ Newbie
Registered: Nov 2013
Posts: 3
Original Poster
Rep:
|
Bathory
I seem to be able to dig it from the server itself now, and I think digwebinterface is working, but kloth isn't. Neustar parked our domain today, and said they couldn't get requests from our server since before Oct. 11th.
I'll keep investigating and see what I can see. Thanks for looking into this though.
|
|
|
11-19-2013, 04:55 PM
|
#4
|
LQ Guru
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,214
|
According to this your server didn't respond, so check if there is a firewall blocking port 53 udp
From here I too get a SERVFAIL if I use your dns to resolve your domain. So you may post the zone file and named.conf to see if there is something wrong.
|
|
|
11-19-2013, 05:43 PM
|
#5
|
LQ Newbie
Registered: Nov 2013
Posts: 3
Original Poster
Rep:
|
//
// named.conf for Red Hat master dns server
//
options {
version "Bind";
directory "/var/named";
allow-transfer { 192.168.90.0/24; localhost; };
recursion no;
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
};
//
// a master name server
//
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "snap.lib.ca.us" IN {
type master;
file "db.hosts";
};
zone "solano.lib.ca.us" IN {
type master;
file "db.libus";
};
zone "solanolibrary.com" IN {
type master;
file "db.libcom";
};
zone "solanocountylibrary.com" IN {
type master;
file "db.sclcom";
};
zone "solanolibrary.net" IN {
type master;
file "db.libnet";
};
zone "solanolibrary.org" IN {
type master;
file "db.liborg";
};
zone "solanocountylibrary.org" IN {
type master;
file "db.sclcom";
};
zone "213.127.66.in-addr-arpa" IN {
type master;
file "/db.66.127.213";
};
zone "0.0.127.in-addr.arpa" IN {
type master;
file "named.local";
allow-update { none; };
};
zone "." IN {
type hint;
file "named.ca";
};
include "/etc/rndc.key";
And Zone file:
;
; Authoritative data for snap.lib.ca.us
;
snap.lib.ca.us. IN SOA soar.snap.lib.ca.us. postmaster.soar.snap.lib.ca.us. (
2013062601 ; Serial number
10800 ; Refresh
3600 ; Retry
604800 ; Expire
17280 ) ; Default time-to-live
; Name Servers
;
snap.lib.ca.us. IN A 66.127.213.248
IN NS soar.snap.lib.ca.us.
IN NS dns1.snap.lib.ca.us.
;
; Mail Exchangers
;
snap.lib.ca.us. IN MX 10 mail1.snap.lib.ca.us.
snap.lib.ca.us. IN MX 15 mailhost.snap.lib.ca.us.
;
snap.lib.ca.us. IN TXT "v=spf1 a mx ptr ~all"
; Host Information
;
;soar IN HINFO SUN SPARC Ultra UNIX
;
; Aliases
;
www IN CNAME soar
snapweb IN CNAME starship
;
; Address Records (net-1)
;
soar IN A 66.127.213.248
www IN A 66.127.213.248
mailhost IN A 66.127.213.225
mail1 IN A 66.127.213.225
ecard IN A 66.127.213.249
ecarddev IN A 66.127.213.249
dns1 IN A 66.127.213.223
m IN A 66.127.213.249
mtest IN A 66.127.213.249
carlweb IN A 66.127.213.235
ls2pac IN A 66.127.213.237
libonline IN A 66.127.213.190
mjsdev IN A 66.127.213.166
Thanks again for the help.
- John
|
|
|
11-20-2013, 01:44 AM
|
#6
|
LQ Guru
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,214
|
Hi,
You have 2 www records. Comment out or remove the line:
Also there is no A record for the starship host, so better remove the 2nd CNAME also
|
|
|
All times are GMT -5. The time now is 12:16 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|