Difference between revisions of "Set up PXE boot VM"

From HallCWiki
Jump to navigationJump to search
(Created page with "= PXE boot VM = * The ROCs and VTPs are booted using PXEboot. The PXEboot is hosted in a virtual machine located at the Hall ESX clusters. The VM name is "cdaqpxe.jlab.org" =...")
 
Line 3: Line 3:
  
 
== Set up the PXE boot ==
 
== Set up the PXE boot ==
* Install TFTP server: yum install tftp-server
+
* Install required packages: yum install nfs-utils tftp-server syslinux-tftpboot syslinux
 +
* Enable nfs-server and tftp as root:
 +
<pre>
 +
systemctl enable nfs-server.service
 +
systemctl start nfs-server.service
 +
systemctl enable tftp
 +
systemctl start tftp
 +
</pre>

Revision as of 09:22, 26 June 2024

PXE boot VM

  • The ROCs and VTPs are booted using PXEboot. The PXEboot is hosted in a virtual machine located at the Hall ESX clusters. The VM name is "cdaqpxe.jlab.org"

Set up the PXE boot

  • Install required packages: yum install nfs-utils tftp-server syslinux-tftpboot syslinux
  • Enable nfs-server and tftp as root:
systemctl enable nfs-server.service
systemctl start nfs-server.service
systemctl enable tftp
systemctl start tftp