Category: network
Xen: How to define the boot order for HVM in vm.cfg
This is done by the boot paramer in vm.cfg. The switches are: * floppy (a) * hard disk (c) * Network (n) * CD-ROM (d) If you use boot = ‘n’ it will be stuck at PXE boot even if there is no dhcp lease and guest will not attempt boot from the Virtual Disk….
Read More “Xen: How to define the boot order for HVM in vm.cfg” »
PXE Boot Config Enterprise Linux
Configuring a PXE boot server Install required packages: # yum install bind dhcp system-config-netboot tftp-server Setup dhcpd: # vi /etc/dhcpd.confddns-update-style interim;ignore client-updates; subnet 10.10.10.0 netmask 255.255.255.0 { option routers 10.10.10.1; option subnet-mask 255.255.255.0; option domain-name-servers 10.10.10.1; option time-offset 7200; range dynamic-bootp 10.10.10.10 10.10.10.15; default-lease-time 21600; max-lease-time 43200; next-server 10.10.10.1; option subnet-mask 255.255.255.0; option broadcast-address 10.10.10.255;…