搭建RHEL6网络安装服务器(PXEBOOT+DHCP)

搭建RHEL6网络安装服务器(PXEBOOT+DHCP)


 

PXEBoot:

yum install tftp-server syslinux -y

cp /mnt/images/pxeboot/{initrd.img,vmlinuz} /var/lib/tftpboot/

cp /usr/share/syslinux/{vesamenu.c32,pxelinux.0} /var/lib/tftpboot/

vim /var/lib/tftpboot/pxelinux.cfg/default

default vesamenu.c32

timeout 600

menu title Welcome to Global Learning Services Setup!

 

label local

        menu label Boot from ^local drive

        menu default

        localboot 0xffff

label ws

        menu label Install GLS ^workstation

        kernel vmlinuz

        append ksdevice=eth0 load_ramdisk=1 initrd=initrd.img network ks=http://172.24.254.254/w

orkstation.cfg noipv6

label rescue

        menu label ^Rescue installed system

        kernel vmlinuz

        append initrd=initrd.img rescue

 

DHCP:

yum install dhcp -y

vim /etc/dhcp/dhcpd.conf

ddns-update-style none;

option space PXE;

subnet 192.168.0.0 netmask 255.255.255.0 {

        option routers 192.168.0.2;

        option subnet-mask 255.255.255.0;

        option domain-name "example.com";

        option domain-name-servers 192.168.0.2;

        next-server 192.168.0.2;

        default-lease-time 21600;

        max-lease-time 43200;

 

        class "PXE" {

                match if substring(option vendor-class-identifier, 0, 9) = "PXEClient";

                option vendor-encapsulated-options 01:04:00:00:00:00:ff;

                option boot-size 0x1;

                filename "pxelinux.0";

                option tftp-server-name "192.168.0.2";

                option vendor-class-identifier "PXEClient";

                vendor-option-space PXE;

        }

 

        pool{

                allow members of "PXE";

                default-lease-time120;

                max-lease-time 180;

                range 192.168.0.71 192.168.0.100;

        }

}

 

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值