This file contains hidden or 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 | |
| set ipxe-ip 10.X.Y.Z | |
| set base-url http://${ipxe-ip} | |
| set preseed http://${ipxe-ip} | |
| set http-proxy http://${ipxe-ip}:3142 | |
| set nic eth2 | |
| set use-cached 1 | |
| dhcp net1 | |
| echo mac...............: ${net1/mac} | |
| echo ip................: ${ip} |
This file contains hidden or 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
| <?php | |
| echo "#!ipxe\n"; | |
| $install = true; | |
| $server_ip = "192.168.1.1"; | |
| $proxy = "http_proxy=http://192.168.1.1:8080"; | |
| $kickstart = "ubuntu-12.04-LTS.ks" | |
| if ($install) { | |
| //default to ubuntu live system | |
| ?> |
NewerOlder