- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: named[1111]: unexpected RCODE (SERVFAIL) resol...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2011 01:56 AM - edited 09-20-2011 01:57 AM
09-20-2011 01:56 AM - edited 09-20-2011 01:57 AM
named[1111]: unexpected RCODE (SERVFAIL) resolving 'page1.com/AAAA/IN': X.X.X.X#53
Hello.
Please help me to understand.
I have locally DNS running that is configured:
forward only
forwarders (X.X.X.X)
Now.
When I see log - I see many entries like that:
named[1234]: unexpected RCODE (SERVFAIL) resolving 'page1.com/AAAA/IN': X.X.X.X#53
named[2345]: unexpected RCODE (SERVFAIL) resolving 'page2.com/AAAA/IN': X.X.X.X#53
where X.X.X.X is actual forwarder IP
and page1.com and page2.com is any internet page.
I don't have any IPv6 configuration
listen-on-v6 in section options.
Why I have this messages then?
- Tags:
- named
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2011 01:22 PM
09-20-2011 01:22 PM
Re: named[1111]: unexpected RCODE (SERVFAIL) resolving 'page1.com/AAAA/IN': X.X.X.X#53
There is no requirement to actually use the IPv6 protocol to make queries on IPv6 addresses: it is perfectly valid to make queries for IPv6 addresses over an IPv4 connection. The client might have an IPv6-over-IPv4 tunnel or some other IPv6 connection mechanism, which the DNS server does not need to be aware of.
Some client of your local DNS server has made requests for the AAAA records (IPv6 address records) of page1.com and page2.com. Since you have a "forward only" configuration, your DNS server has dutifylly forwarded the queries to X.X.X.X. But X.X.X.X does not seem to like IPv6 at all: it has responded with a SERVFAIL error code.
Many web browsers today are already IPv6-aware, and IPv6 support is slowly increasing in other applications too. Typically, a IPv6-aware application will first ask for a IPv6 address for any DNS name. If the IPv6 query is not successful (or a IPv6 connection attempt fails), the IPv4 address is queried for and used instead.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2011 12:45 AM - edited 09-21-2011 04:59 AM
09-21-2011 12:45 AM - edited 09-21-2011 04:59 AM
Re: named[1111]: unexpected RCODE (SERVFAIL) resolving 'page1.com/AAAA/IN': X.X.X.X#53
Hi,
Thank you very much for contribution.
I assume then that to disable this resolving for IPv6 it's enaugh to edit
/etc/sysconfig/named and put there
OPTIONS="-4"
and restart of named.
Do you confirm it?