- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- RHEL 6 DHCP - UEFI and Windows Deployment Server i...
Categories
Company
Local Language
Forums
Discussions
- Integrity Servers
- Server Clustering
- HPE NonStop Compute
- HPE Apollo Systems
- High Performance Computing
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp Software
Knowledge Base
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2016 09:57 AM
05-02-2016 09:57 AM
RHEL 6 DHCP - UEFI and Windows Deployment Server issue
I am running a DHCP service on Red Hat Enterprise Linux 6.6 and have Windows Deployment Server deployed on the Legacy BIOS PXE Menu. I am trying to deploy UEFI (booting into grub.cfg) but I am running into this issue:
My syntax where UEFI is not working but WDS is working in /etc/dhcp/dhcpd.conf -
#Windows WDS
option space PXE;
option PXE.mtftp-ip code 1 = ip-address;
option PXE.mtftp-cport code 2 = unsigned integer 16;
option PXE.mtftp-sport code 3 = unsigned integer 16;
option PXE.mtftp-tmout code 4 = unsigned integer 8;
option PXE.mtftp-delay code 5 = unsigned integer 8;
option PXE.discovery-control code 6 = unsigned integer 8;
option PXE.discovery-mcast-addr code 7 = ip-address;
>option arch code 93 = unsigned integer 16;>class "PXE" {
match if substring(option vendor-class-identifier, 0, 9) = "PXEClient";
vendor-option-space PXE;
option PXE.mtftp-ip 0.0.0.0;
next-server XX.X.X.X;
if option arch = 00:07 {
filename "pxelinux/BOOTX64.EFI";
} else {
filename "pxelinux.0";
}
option vendor-class-identifier "PXEClient";
My syntax to get UEFI working in /etc/dhcp/dhcpd.conf -
#Windows WDS
option space PXE;
option PXE.mtftp-ip code 1 = ip-address;
option PXE.mtftp-cport code 2 = unsigned integer 16;
option PXE.mtftp-sport code 3 = unsigned integer 16;
option PXE.mtftp-tmout code 4 = unsigned integer 8;
option PXE.mtftp-delay code 5 = unsigned integer 8;
option PXE.discovery-control code 6 = unsigned integer 8;
option PXE.discovery-mcast-addr code 7 = ip-address;
>option arch code 93 = unsigned integer 16;
>class "PXE" {
match if substring(option vendor-class-identifier, 0, 9) = "PXEClient";
vendor-option-space PXE;
option PXE.mtftp-ip 0.0.0.0;
next-server XX.X.X.X;
if option arch = 00:07 {
filename "pxelinux/BOOTX64.EFI";
} else {
filename "pxelinux.0";
}
#option vendor-class-identifier "PXEClient";
When I comment out the line "option vendor-class-identifier "PXEClient";", my Windows Deployment Server stops working but UEFI works. When I uncomment that line, Windows Deployment Server works but UEFI doesn't.
- Tags:
- EFI