linux_wiki:os_install_pxe_boot

This is an old revision of the document!


OS Install: PXE Boot

General Information

In order to install an OS via PXE boot, a TFTP and DHCP server are required.
Using PXE allows for clients to begin a network installation without any net-install ISO.

Checklist

  • Distro: Enterprise Linux 7
  • Installation Server Created (NFS/HTTP/FTP) that is hosting the install DVD and kickstart file

TFTP Server

  • Install the required packages
    yum install tftp-server xinetd
  • Allow TFTP access (set disable = no)
    vim /etc/xinetd.d/tftp
    service tftp
    {
      ....some other variables...
      disable = no
      ....some other variables...
    }
  • Start and Enable xinetd
    systemctl start xinetd
    systemctl enable xinetd
  • Allow through firewall (if enabled)
    firewall-cmd --permanent --add-service=tftp
    firewall-cmd --reload

  • linux_wiki/os_install_pxe_boot.1454470489.txt.gz
  • Last modified: 2019/05/25 23:50
  • (external edit)