#!ipxe # Some menu defaults set menu-timeout 5000 set submenu-timeout ${menu-timeout} isset ${menu-default} || set menu-default exit # Figure out if client is 64-bit capable cpuid --ext 29 && set arch x64 || set arch x86 cpuid --ext 29 && set archl amd64 || set archl i386 ###################### MAIN MENU #################################### :start menu iPXE boot menu for ${initiator-iqn} item --gap -- ------------------------- Sistemas operativos ------------------------------ item --key f freedos Iniciar FreeDOS item --key o openbsd Boot OpenBSD installer item --key f freebsd Boot mfsbsd (freebsd installer) item --key l menu-live Live environments... item --gap -- ------------------------- Herramientas ---------------------------- item --key p sysr Iniciar SystemrescueCD item --key r netboot Iniciar Netboot item --key u ubuntu Iniciar Ubuntu Live (sirve mas de lo que pensarias) item --gap -- ------------------------- Opciones avanzadas ------------------------------- item --key c config Configure settings item shell shell de iPXE item reboot Reboot computer item item --key x exit Exit iPXE and continue BIOS boot choose --timeout ${menu-timeout} --default ${menu-default} selected || goto cancel set menu-timeout 0 goto ${selected} :cancel echo You cancelled the menu, dropping you to a shell :shell echo Type 'exit' to get the back to the menu shell set menu-timeout 0 set submenu-timeout 0 goto start :failed echo Booting failed, dropping to shell goto shell :reboot reboot :freedos sanboot http://192.168.1.207/bootdos.img :freebsd sanboot http://192.168.1.207/mfsbsd.img :openbsd sanboot http://192.168.1.207/install76.iso :sysr chain http://192.168.1.207/sysr.ipxe :netboot chain http://boot.netboot.xyz :ubuntu set mirror http://releases.ubuntu.com set base_dir ubuntu set codename jammy set version_number 22.04 set os_arch amd64 set mirrorcfg mirror/suite=${ubuntu_version} set dir http://releases.ubuntu.com/${version_number}/dists/${version}/main/installer-${arch}/current/images/netboot set ubuntu_iso_url set install_params autoinstall ip=dhcp ds=nocloud-net;s=http://my.autoinstall.com/ url=${ubuntu_iso_url} kernel ${dir}/linux ${install_params} ${mirrorcfg} -- quiet initrd=initrd.gz initrd ${dir}/initrd.gz boot :exit exit