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 1879597 - "dracut-initqueue[XXX]: RTNETLINK answers: Network is unreachable" when booting with static IP address
Summary: "dracut-initqueue[XXX]: RTNETLINK answers: Network is unreachable" when booti...
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 8
Classification: Red Hat
Component: dracut
Version: 8.2
Hardware: All
OS: Linux
low
low
Target Milestone: rc
: 8.0
Assignee: Lukáš Nykrýn
QA Contact: Petr Matyáš
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2020-09-16 15:23 UTC by Renaud Métrich
Modified: 2023-12-15 19:22 UTC (History)
5 users (show)

Fixed In Version: dracut-049-151.git20210719.el8
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed: 2021-11-09 19:38:39 UTC
Type: Bug
Target Upstream Version:
Embargoed:
pm-rhel: mirror+


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Github dracutdevs dracut pull 1080 0 None closed 35network-legacy: discard pointless RTNETLINK message 2021-02-17 17:04:03 UTC
Red Hat Knowledge Base (Solution) 5410551 0 None None None 2020-09-16 15:32:19 UTC
Red Hat Product Errata RHBA-2021:4394 0 None None None 2021-11-09 19:38:58 UTC

Description Renaud Métrich 2020-09-16 15:23:43 UTC
Description of problem:

When booting with a static IP address configured on kernel command line, the following message is seen:

dracut-initqueue[XXX]: RTNETLINK answers: Network is unreachable

This is due to having the following code snippet in network-legacy dracut module:
-------- 8< ---------------- 8< ---------------- 8< ---------------- 8< --------
 98 do_static() {
 :
104     elif ! linkup "$netif"; then
 :
109     ip route get "$ip" | {
110         read a rest
111         if [ "$a" = "local" ]; then
112             warn "Not assigning $ip to interface $netif, cause it is already assigned!"
113             return 1
114         fi
115         return 0
116     } || return 1
 :
-------- 8< ---------------- 8< ---------------- 8< ---------------- 8< --------

On line 104, a "linkup" is made, but no IP address assigned (that's expected).
Then on line 109 a "ip route get <ip>" is made to check if the <ip> is already assigned.
Due to not having an IP address yet (which is expected), the "RTNETLINK answers: Network is unreachable" message is printed to stderr, while it should be hidden from the user.


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

dracut RH7 and RH8


How reproducible:

Always

Steps to Reproduce:
1. Boot with a static IP address on kernel command line

  ip=192.168.122.86::192.168.122.1:24:test:enp1s0:none

2. Check the console or journal

  # journalctl -b | grep RTNET

Actual results:

Sep 16 17:17:51 vm-rhel8 dracut-initqueue[472]: RTNETLINK answers: Network is unreachable

Expected results:

Nothing printed

Additional info:

Suggested fix:

109     ip route get "$ip" 2>/dev/null | {

Comment 4 Petr Matyáš 2021-08-11 08:24:48 UTC
Verified on dracut-049-188.git20210802.el8.x86_64

Comment 6 errata-xmlrpc 2021-11-09 19:38:39 UTC
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory (dracut bug fix and enhancement update), and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

https://access.redhat.com/errata/RHBA-2021:4394


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