Bug 83010
| Summary: | [GinGin beta 3] - tg3 NICs fail to obtain DHCP IP during boot | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | Larry Troan <ltroan> |
| Component: | dhcp | Assignee: | Daniel Walsh <dwalsh> |
| Status: | CLOSED DUPLICATE | QA Contact: | |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 9 | CC: | ichute, jgarzik, tao |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2006-02-21 18:51:29 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Larry Troan
2003-01-29 15:09:11 UTC
Bugzilla 83011 also opened against dhclient per jeff garzik (operational code as compared to install code). Dell has reduced sevarity to 2 in latest issue tracker update. Reflecting this in Bugzilla. As the bug report says that the problem exists AFTER install, the culprit should be dhcpclient, not pump. dhcp package, not dhcpcd, produces dhclient binary rpm. This is not a problem with dhcp I believe. Basically they are getting an error
eth0 failed; no link present. Check cable?
This comes from the ifup script. The ifup script is calling the check_link_down
function in /etc/sysconfig/network-scripts/network-functions.
This code runs the following
if [ -x /sbin/mii-tool ]; then
LC_ALL=C ip link show $1 2>/dev/null| grep -q UP || ip link set $1 up
>/dev/null 2>&1
# wait for link to come up
sleep 5
/sbin/mii-tool $1 >/dev/null 2>&1 || return 1
...
/sbin/mii-tool is probably returning an error like
eth0: no link
So we need to know why the card is taking more than 5 seconds to get up or put
the script in a loop to check for more than 5 seconds.
Dan
Either way this bug should be reassigned to initscripts
*** Bug 83011 has been marked as a duplicate of this bug. *** *** This bug has been marked as a duplicate of 80322 *** *** This bug has been marked as a duplicate of 80322 *** Changed to 'CLOSED' state since 'RESOLVED' has been deprecated. |