This are my notes to boot from network with redboot. Use it at your own risk!
# dhcpd.conf
#
ddns-update-style interim;
subnet 192.168.0.0 netmask 255.255.255.0 {
# Das ist die Nummer vom TFTP Server
option routers 192.168.0.22;
next-server 192.168.0.22;
pool {
option domain-name-servers bogus.example.com;
max-lease-time 300;
range 192.168.0.200 192.168.0.253;
allow unknown-clients;
filename "bootp.bin";
}
}
I am using hpa-tftp because it is included in Slackware Linx.
# in.tftpd -a 192.168.0.22:10069 -l -v -s /var/tftpboot # dhcpd