In response to your suggestion, if the kickstart file is configured to use DHCP, do I still have to configure a tftp server?
I added the the files from host node1 onwards. Still does not work. My impression was that I could do it without using a tftp server.
Parminder
ddns-update-style interim;
ignore client-updates;
subnet 192.168.160.0 netmask 255.255.252.0 {
# --- default gateway
# option routers 192.168.0.1;
option subnet-mask 255.255.252.0;
option nis-domain "foo.bar.edu";
option domain-name "foo.bar.edu";
# option domain-name-servers 192.168.1.1;
option time-offset -18000; # Eastern Standard Time
# option ntp-servers 192.168.1.1;
# option netbios-name-servers 192.168.1.1;
# --- Selects point-to-point node (default is hybrid). Don't change this unless
# -- you understand Netbios very well
# option netbios-node-type 2;
range dynamic-bootp 192.168.160.128 192.168.160.192;
default-lease-time 21600;
max-lease-time 43200;
filename "/mnt/server_ks/ks.cfg";
# we want the nameserver to appear at a fixed address
host orbit1 {
next-server orbit1.foo.bar.edu;
hardware ethernet 00:0B
B:97
6:4E;
fixed-address 192.168.160.101;
}
host node1 {
hardware ethernet 00:01:C0:00:74:15;
if substring (option vendor-class-identifier, 0, 9) = "Etherboot" {
filename "/mnt/server_ks/ks.cfg";
next-server orbit1;
}
}
}