User Tools

Site Tools


ipxe

This is an old revision of the document!


Table of Contents

iPXE

Get Source

Get ipxe source

git clone git://git.ipxe.org/ipxe.git

Next step create custom script

Custom ipxe

:!: Simple http server will do serving the ipxe.txt and kickstarts, but no HTTPS.

#!ipxe
echo Welcome to iPXE!
 
:retry_dhcp
  dhcp || goto retry_dhcp
 
:bootup
echo #
echo ip ...................... : ${ip}
echo #
echo Booting from http://plainhttp.k2patel,in/ipxe/ipxe.txt
read test
chain http://plainhttp.k2patel.in/ipxe/ipxe.txt
 
prompt
 
shell
ipxe.1592623334.txt.gz · Last modified: 2020/08/10 02:30 (external edit)