/dhcpd.conf Secret
Created
December 17, 2014 15:55
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
host somename { | |
hardware ethernet a0:36:9f:33:73:20; | |
fixed-address 10.0.0.3; | |
if exists user-class and option user-class = "iPXE" { | |
filename "http://10.0.0.4/ipxe.txt"; | |
} else { | |
filename "undionly.kpxe"; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!ipxe | |
dhcp | |
kernel http://10.0.0.4/agent-image/kernel.vmlinuz console=ttyS4,115200n8 coreos.autologin=ttyS4 | |
initrd http://10.0.0.4/agent-image/ramdisk.cpio.gz | |
boot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment