RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 1670068 - b.root-servers.net entry in named.ca is outdated
Summary: b.root-servers.net entry in named.ca is outdated
Keywords:
Status: CLOSED DUPLICATE of bug 1520808
Alias: None
Product: Red Hat Enterprise Linux 7
Classification: Red Hat
Component: bind
Version: 7.0
Hardware: Unspecified
OS: Unspecified
urgent
high
Target Milestone: rc
: ---
Assignee: Petr Menšík
QA Contact: qe-baseos-daemons
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2019-01-28 14:25 UTC by debugitu
Modified: 2019-03-18 12:31 UTC (History)
1 user (show)

Fixed In Version:
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed: 2019-03-18 12:31:26 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)

Description debugitu 2019-01-28 14:25:23 UTC
Description of problem:

Getting a lot of syslog messages, like:

Jan 27 15:32:25 azurill named[6873]: checkhints: b.root-servers.net/A (199.9.14.201) missing from hints
Jan 27 15:32:25 azurill named[6873]: checkhints: b.root-servers.net/A (192.228.79.201) extra record in hints
Jan 27 15:32:30 azurill named[6873]: checkhints: b.root-servers.net/A (199.9.14.201) missing from hints
Jan 27 15:32:30 azurill named[6873]: checkhints: b.root-servers.net/A (192.228.79.201) extra record in hints
Jan 27 15:34:55 azurill named[6873]: checkhints: b.root-servers.net/A (199.9.14.201) missing from hints
Jan 27 15:34:55 azurill named[6873]: checkhints: b.root-servers.net/A (192.228.79.201) extra record in hints
Jan 27 15:35:04 azurill named[6873]: checkhints: b.root-servers.net/A (199.9.14.201) missing from hints
Jan 27 15:35:04 azurill named[6873]: checkhints: b.root-servers.net/A (192.228.79.201) extra record in hints
Jan 27 15:38:09 azurill named[6873]: checkhints: b.root-servers.net/A (199.9.14.201) missing from hints
Jan 27 15:38:09 azurill named[6873]: checkhints: b.root-servers.net/A (192.228.79.201) extra record in hints


Version-Release number of selected component (if applicable):


How reproducible:

The messages are coming after some days of run on a freshly installed bind package configured to have direct DNS Internet access.

Steps to Reproduce:
1.
2.
3.

Actual results:

The syslog messages above.

Expected results:

No that kind of syslog messages.

Additional info:

That is a similar issue than https://bugzilla.redhat.com/show_bug.cgi?id=1267991
The /var/named/named.ca file is slightly outdated now, the A and AAAA glue record of b.root-servers.net has changed value since the hint file last time updated in the bind package.

The following script:

#! /bin/bash
TMPF1=`mktemp`
TMPF2=`mktemp`
sed -e 's/3600000/518400/' /var/named/named.ca | sort > $TMPF1
dig +bufsize=1200 +norec @a.root-servers.net | sort > $TMPF2
diff $TMPF1 $TMPF2
rm -f $TMPF1 $TMPF2

has the output:

5a6
> 
24,25c25,26
< b.root-servers.net.	518400	IN	A	192.228.79.201
< b.root-servers.net.	518400	IN	AAAA	2001:500:84::b
---
> b.root-servers.net.	518400	IN	A	199.9.14.201
> b.root-servers.net.	518400	IN	AAAA	2001:500:200::b
28c29
< ; <<>> DiG 9.9.4-RedHat-9.9.4-38.el7_3.2 <<>> +bufsize=1200 +norec @a.root-servers.net
---
> ; <<>> DiG 9.9.4-RedHat-9.9.4-72.el7 <<>> +bufsize=1200 +norec @a.root-servers.net
31c32
< ; EDNS: version: 0, flags:; udp: 1472
---
> ; EDNS: version: 0, flags:; udp: 4096
41c42
< ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 17380
---
> ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 40498
57c58
< ;; Query time: 18 msec
---
> ;; Query time: 24 msec
60c61
< ;; WHEN: Po kvě 22 10:14:44 CEST 2017
---
> ;; WHEN: Mon Jan 28 14:55:47 CET 2019


The official location of the root hint zone file can be found at:
http://www.internic.net/domain/named.root

Comment 2 Anssi Johansson 2019-02-02 07:52:18 UTC
Maybe a duplicate of bug 1520808 ?

Comment 4 Petr Menšík 2019-03-18 12:31:26 UTC

*** This bug has been marked as a duplicate of bug 1520808 ***


Note You need to log in before you can comment on or make changes to this bug.