/etc/dhcpd.conf
ddns-update-style interim;
ignore client-updates;
subnet 192.168.100.0 netmask 255.255.255.0 {
option routers 192.168.100.1;
option subnet-mask 255.255.255.0; option nis-domain "domain.org";
option domain-name "domain.org";
option domain-name-servers 192.168.100.20;
range dynamic-bootp 192.168.100.200 192.168.100.239;
default-lease-time 21600;
max-lease-time 43200;
filename "pxelinux.0";
next-server 192.168.100.13;
}
service tftp
{
disable = no
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /tftpboot
per_source = 11
cps = 100 2
flags = IPv4
}
В каталоге /tftpboot есть каталог /Centos4.8
в нем initrd.img vmlinuz
сат /tftpboot/pxelinux.cfg/default
default 0
prompt 5
timeout 30
MENU TITLE PXE Menu
label Centos4.8
kernel vmlinuz=Centos4.8/vmlinuz
append initrd=Centos4.8/initrd.img ramdisk_size=9216 noapic acpi=off
закрузка не идет, пытаюсь рукми набрать и получаю
boot:Centos4.8
Could not find kernel image: Centos4.8/vmlinuz
Я понимаю, что не находится имидж ядра, но вот как правильно прописать путь к имиджу не могу понять. Помогите кто знает.