Archive for August 18, 2008

Red Hat Kickstart without DHCP

Red Hat Kickstart is the right way to install RHEL, but Red Hat’s Linux documentation assumes the host can boot via DHCP. If DHCP (or bootp) isn’t available, there are some obscure options to provide the network configuration on the linux command line (at the boot: prompt). These options are ip, netmask, gateway, and dns, as in:

linux ks=http://10.10.10.100/kickstart.cfg ip=10.10.10.101 netmask=255.255.255.0 gateway=10.10.10.1 dns=10.10.10.100

I found several pages of kickstart docs which are missing these options, but they are listed on http://www.redhat.com/docs/manuals/enterprise/RHEL-5-manual/Installation_Guide-en-US/s1-kickstart2-startinginstall.html.

Comments