使用Cobbler批量安装操作系统(5)

重新启动和同步Cobbler 服务。

# 重新启动服务 [root@localhost ~]#systemctl restart cobblerd [root@localhost ~]#cobbler sync ........#中间省略很多输出 #查看DHCP的配置文件 [root@localhost ~]#cat /etc/dhcp/dhcpd.conf  # ****************************************************************** # Cobbler managed dhcpd.conf file # generated from cobbler dhcp.conf template (Wed Sep 20 01:36:15 2017) # Do NOT make changes to /etc/dhcpd.conf. Instead, make your changes # in /etc/cobbler/dhcp.template, as /etc/dhcpd.conf will be # overwritten. # ****************************************************************** ddns-update-style interim; allow booting; allow bootp; ignore client-updates;set vendorclass = option vendor-class-identifier; option pxe-system-type code 93 = unsigned integer 16; subnet 172.18.2.0 netmask 255.255.255.0 {      option subnet-mask         255.255.255.0;      range dynamic-bootp        172.18.2.100 172.18.2.254;      default-lease-time         21600;      max-lease-time             43200;      next-server                172.18.2.77;      class "pxeclients" {           match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";                    if option pxe-system-type = 00:02 {                   filename "ia64/elilo.efi";                            } else if option pxe-system-type = 00:06 {                   filename "grub/grub-x86.efi";                            } else if option pxe-system-type = 00:07 {                   filename "grub/grub-x86_64.efi";                            } else {                   filename "pxelinux.0";                            }      }}            # group for Cobbler DHCP tag: default      group {      } 制作 yum 源

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/13384.html