summaryrefslogtreecommitdiffstats
path: root/server/ipxe
diff options
context:
space:
mode:
authorJannik Schönartz2018-07-02 21:52:25 +0200
committerJannik Schönartz2018-07-02 21:52:25 +0200
commitaa4e552a03657a63922f5cd085431257c183f458 (patch)
treefc8cd63129bb54b06326c11847a9731fe70f1b33 /server/ipxe
downloadbas-aa4e552a03657a63922f5cd085431257c183f458.tar.gz
bas-aa4e552a03657a63922f5cd085431257c183f458.tar.xz
bas-aa4e552a03657a63922f5cd085431257c183f458.zip
[server] Initial commit to add the node server stuff.
Diffstat (limited to 'server/ipxe')
-rw-r--r--server/ipxe/main.ipxe27
1 files changed, 27 insertions, 0 deletions
diff --git a/server/ipxe/main.ipxe b/server/ipxe/main.ipxe
new file mode 100644
index 0000000..f6f3c00
--- /dev/null
+++ b/server/ipxe/main.ipxe
@@ -0,0 +1,27 @@
+#!ipxe
+dhcp
+
+# Wallpaper
+set img http://christophermckinney.net/wp-content/uploads/2017/08/Wallpaper.png
+console --picture ${img} --x 800 --y 600
+
+:start
+menu Please choose a webserver to load the ipxe menu:
+item js Jannik
+item uw Udo
+item ch Chris
+item sh [Shell]
+choose target && goto ${target}
+
+:js
+chain http://10.4.9.123/boot.php
+goto start
+:uw
+chain http://10.4.9.115/boot.php
+goto start
+:ch
+chain http://10.4.9.122/boot.php
+goto start
+:sh
+shell
+goto start