Cobbler PXE 부팅

Cobbler PXE 부팅

내 설정:

VirtualBox
DHCP/Cobbler VM server (CentOS 7)
PXE VM Client

DHCP/Cobbler 서버(1개 장치를 NAT로 설정) '/etc/sysconfig/network-scripts/ifcfg-enp0s3'

TYPE=Ethernet
PROXY_METHOD=none
BROWSER_ONLY=no
BOOTPROTO=dhcp
NAME=enp0s3
UUID=1b9314dd-2ad7-4bf5-bada-9fb0ca727526
DEVICE=enp0s3
ONBOOT=yes
IPADDR=192.168.56.101
PREFIX=24

DHCP/Cobbler 서버 '/etc/dhcp/dhcpd.conf'

ddns-update-style interim;

allow booting;
allow bootp;

subnet 192.168.56.0 netmask 255.255.255.0 {
     option routers             192.168.1.5;
     option domain-name-servers 192.168.1.1;
     option subnet-mask         255.255.255.0;
     range dynamic-bootp        192.168.56.101 192.168.56.111;
     default-lease-time         21600;
     max-lease-time             43200;
     next-server                192.168.56.101;
     class "pxeclients" {
          } else {
                  filename "pxelinux.0";
          }
     }

}

DHCP/Cobbler 서버 '/etc/cobbler/settings'

next_server: 192.168.56.101
server: 192.168.56.101

코블러 체크

[root@dhcp ~]# cobbler check
No configuration problems found.  All systems go.

PXE용 .iso 마운트

[root@dhcp ~]# mount -o loop CentOS-7-x86_64-Minimal-1708.iso /mnt/
[root@dhcp ~]# cobbler import --path=/mnt/ --name=CentOS-7

PXE 클라이언트

PXE-E53: No boot filename received

PXE-M0F: Exiting Intel PXE ROM. 
FATAL: Could not read from the boot medium! System halted.

답변1

dhcpd.conf를 사용해 보세요

ddns-update-style interim;

allow booting; allow bootp;

subnet 192.168.56.0 netmask 255.255.255.0 {
     option routers             192.168.1.5;
     option domain-name-servers 192.168.1.1;
     option subnet-mask         255.255.255.0;
     range dynamic-bootp        192.168.56.101 192.168.56.111;
     default-lease-time         21600;
     max-lease-time             43200;
     class "pxeclients" {
        match if substring(option vendor-class-identifier, 0, 9) = "PXEClient";
        next-server 192.168.56.101;
        filename "pxelinux.0";
        }

}

모든 클라이언트가 BIOS 모드를 부팅하는 경우 작동합니다.

관련 정보