Dhcp server configuration – Dell Emulex Family of Adapters User Manual
Page 1724

Boot Version 10.2 for NIC, iSCSI, FCoE, and RoCE Protocols User Manual
P010097-01B Rev. A
Appendix B. Example for Installing and Configuring Linux or Citrix for PXE Boot and UEFI Boot
Linux and Citrix PXE Server Remote Installation Procedure
1724
flags = IPv4
}
[root@bglinux156 ~]# /sbin/chkconfig --level 345 xinetd on
[root@bglinux156 ~]# /sbin/chkconfig --level 345 tftp on
[root@bglinux156 ~]# service xinetd restart
DHCP Server Configuration
1. Install the following RPMs in the server if not installed:
[root@bglinux156 ~]# rpm -qa | grep dhcp
dhcpv6-client-1.0.10-18.el5
dhcp-devel-3.0.5-23.el5
dhcp-3.0.5-23.el5
2. Make the following entry in /etc/dhcpd.conf file:
#
# DHCP Server Configuration file.
# see /usr/share/doc/dhcp*/dhcpd.conf.sample
#
ddns-update-style interim;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.50 192.168.1.90;
default-lease-time 3600;
max-lease-time 4800;
option subnet-mask 255.255.255.0;
option domain-name “pxe_text”;
option time-offset -8;
}
host bglinux45{
next-server 192.168.1.1;
hardware ethernet 00:00:C9:5B:75:A8;
fixed-address 192.168.1.60;
option host-name “linux-test”;
filename “pxelinux.0”;
}
###This sets up a DNS server that will assign IP Address 192.168.1.60
###to the client machine that has MAC Address “00:00:C9:5B:75:A8”
###assigned to a PXE capable NIC
###The only thing that needs to be changed in the above, is the MAC
###Address to match that of the NIC in the client box
###The IP address that follows the next-server option should be the IP
###address of the tftp server
[root@bglinux156 ~]# service dhcpd restart
Shutting down dhcpd: [ OK ]