admin 管理员组

文章数量: 887019


2024年3月26日发(作者:php很难学吗)

uos系统PXE搭建原理和过程

1.1.1 dnsmasq 方式

1.1.1.1 安装dnsmasq

/# sudo apt-get install dnsmasq

1.1.1.2 修改配置文件

/# sudo vim /etc/

Listen-address=192.168.1.1

interface=enp5s0 // 要使用的网卡节点

bind-interfaces

dhcp-range=192.168.1.10,192.168.1.100,255.255.255.0,8h

dhcp-option=3,192.168.1.1

dhcp-option=6,192.168.1.1

dhcp-option=28,192.168.1.255

dhcp-option=42,0.0.0.0

enable-tftp

dhcp-match=set:Intel_x86PC,option:client-arch,0

dhcp-boot=tag:Intel_x86PC,x86_64-legacy/pxelinux.0

dhcp-match=set:EFI_BC,option:client-arch,7

dhcp-boot=tag:EFI_BC,x86_64-efi/

dhcp-match=set:EFI_x86_64,option:client-arch,9

dhcp-boot=tag:EFI_x86_64,x86_64-efi/

dhcp-match=set:EFI_Arm64,option:client-arch,11

dhcp-boot=tag:EFI_Arm64,arm64-efi/

dhcp-match=set:Mips,option:client-arch,12

tftp-root=/var/lib/tftpboot // -----提前建好目录

1.1.1.3 tftpd 中的文件放置


本文标签: 搭建 原理 节点 配置文件 目录