Bug 88714
Summary: | PXE installer apparently does not setup network interface | ||
---|---|---|---|
Product: | [Retired] Red Hat Linux | Reporter: | Mark Himsley <redhat.com> |
Component: | installer | Assignee: | Jeremy Katz <katzj> |
Status: | CLOSED RAWHIDE | QA Contact: | Brock Organ <borgan> |
Severity: | medium | Docs Contact: | |
Priority: | medium | ||
Version: | 9 | CC: | wtogami |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | i386 | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2006-04-24 18:44:25 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
Mark Himsley
2003-04-12 12:40:01 UTC
What is your kernel command line? I can't see the exact kernel command line as it wizzes past too quickly but the pxelinux.cfg file I am using includes the following, I hope this includes enough info for you. --------------------------------------------------------------------------- default text prompt 1 timeout 600 label text kernel /rh9.0/vmlinuz append initrd=/rh9.0/initrd.img lang= text devfs=nomount ramdisk_size=8192 nofb --------------------------------------------------------------------------- Sorry about the line break in the 'append' line above - the nofb *is* in the same line as the append command. Looking at the output here, it looks like the command line includes an ip= that's incorrect. Could you try adding 'ip=dhcp' to your append line? Excuse my stupidity; of cause I should have used the scroll back buffer. Anyway, I added ip=dhcp to the append line, making the complete line (excuse any line wrapping): ------------------------------------------------------- append initrd=/rh9.0/initrd.img lang= text devfs=nomount ramdisk_size=8192 nofb ip=dhcp ------------------------------------------------------- and that made the Kernel command line (excuse any line wrapping): ------------------------------------------------------- initrd=/rh9.0/initrd.img lang= text devfs=nomount ramdisk_size=8192 nofb ip=dhcp BOOT_IMAGE=/rh9.0/vmlinuz ip=192.168.0.55:192.168.0.1:192.168.0.254:255.255.255.0 ------------------------------------------------------- The installer still appears to not configure the network adapter because I continue to get "That directory could not be mounted from the serverâ after entering values in the 'NFS setup' dialog and I continue to get the same errors in virtual terminal 4. Following an email from Richard Au (below) a solution to this bug has been found. -------------------------------------------------------------------------------- Hi, I recently ran into the exact same problem as Mark Himsley doing a PXE/Kickstart installation of RedHat 9.0 (Bug 88714). I took particular note of Jeremy Katz's comment about the kernel command line incorrectly including an "ip=" entry. I found out that PXELINUX supports an entry in the pxelinux.cfg file: IPAPPEND. If you set IPAPPEND 1, pxelinux will automatically append a ip=<client-ip>:<boot-server-ip>:<gw-ip>:<netmask> entry onto the kernel command line. It seemed to me that this was exactly what was happening to my and Mark Himsley's systems. So, I explicitly specified IPAPPEND 0, and added ip=dhcp to the 'append' line. It worked!! Here is my pxelinux.cfg file: default linux label linux kernel vmlinuz append initrd=initrd.img lang=text ip=dhcp devfs=nomount ramdisk_size=8192 ipappend 0 This bug had been driving me nuts for a several days, and the combined comments of Mark and Jeremy allowed me to figure it out much faster than I ever could on my own. Thanks! Sincerely, Richard Au PANTA Systems -------------------------------------------------------------------------------- My pxelinux.cfg file did include an ipappend 1 command and after altering its value to 0 I can confirm that the installation of RedHat 9 did work. I would like to point out that including ipappend 1 in a pxelinux.cfg file had no detrimental effect to PXE instals of RedHat 7.x. Thanks to Richard and Jeremy for their combined help in resolving this issue. Yes, having ipappend set in the pxelinux.cfg file will try to pass the ip to the installer. I've added some code to try to keep this from causing problems. Mass-closing lots of old bugs which are in MODIFIED (and thus presumed to be fixed). If any of these are still a problem, please reopen or file a new bug against the release which they're occurring in so they can be properly tracked. |