Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
appnotes:authmenus [2011/04/19 18:04]
genec [vesamenu.c32 current] part 3
appnotes:authmenus [2013/03/04 15:34] (current)
genec Fix cmd.c32 -> gpxecmd.c32
Line 13: Line 13:
     SSLRequireSSL     SSLRequireSSL
  
 +You must choose between being able to load vesamenu.c32 directly and loading the current version of vesamenu.c32.
 ==== vesamenu.c32 current ==== ==== vesamenu.c32 current ====
 The current version of vesamenu.c32 can not be loaded directly from gPXE and requires PXELINUX as an intermediate layer. ​ You will need two PHP files, a boot.php containing The current version of vesamenu.c32 can not be loaded directly from gPXE and requires PXELINUX as an intermediate layer. ​ You will need two PHP files, a boot.php containing
  
-    ​<?php +  ​<?php 
-     +   
-    header ( "​Content-type:​ text/​plain"​ ); +  header ( "​Content-type:​ text/​plain"​ ); 
-     +  echo "#​!gpxe\n";​ 
-    echo "#​!gpxe\n";​ +   
-    echo "​imgfree\n";​ +  $proto = "​https";​ 
-    echo "​login\n";​ +  // Comment out/remove the following if strictly using HTTPS 
-    echo "set 209:string bootcfg.php";​ +  if (!isset($_SERVER["​HTTPS"​])) 
-    echo "set 210:string ". +    ​$proto = "​http";​ 
-          "https://​\${username:​uristring}:​\${password:​uristring}@"​. +   
-          $_SERVER["​SERVER_NAME"​]. +  // This assigns the host that gPXE should use using the most logical variables 
-          dirname ( $_SERVER["​REQUEST_URI"​] ). +  if ( $_SERVER["​HTTP_HOST"​] != ""​ ) { 
-          ​"/\n"; +    ​$host=$_SERVER["​HTTP_HOST"​];​ 
-    echo "chain ${210:​string}pxelinux.0";​ +  } else { 
-    ?>+    if ( $_SERVER["​SERVER_NAME"​] != 0) { 
 +  $host=$_SERVER["​SERVER_NAME"​];​ 
 +    } else { 
 +  $host=$_SERVER["​SERVER_ADDR"​];​ 
 +    } 
 +  } 
 +   
 +  // Comment out/remove the following if you are running on a standard port 
 +  if (!((! isset($_SERVER["​HTTPS"​]) ) && ($_SERVER["​SERVER_PORT"​] == 80)) 
 +    && !(isset($_SERVER["​HTTPS"​]) && ($_SERVER["​SERVER_PORT"​] == 443)) ){ 
 +      if (strrpos($host,​ ":"​) == FALSE) 
 +        $host=$host.":"​.$_SERVER["​SERVER_PORT"​];​ 
 +  } 
 +   
 +  $uri=$_SERVER["​REQUEST_URI"​];​ 
 +  $dir=substr ( $uri, 0, strrpos ($uri, "/"​) + 1); 
 +   
 +  ​echo "#​!gpxe\n";​ 
 +  echo "​imgfree\n";​ 
 +  echo "​login\n";​ 
 +  echo "set 209:string bootcfg.php\n"; 
 +  echo "set 210:string ". 
 +       $proto."://​\${username:​uristring}:​\${password:​uristring}@"​. 
 +       ​$host.$dir."​\n";​ 
 +  echo "​chain ​\${210:​string}pxelinux.0\n"; 
 +  ?>
  
 and a bootcfg.php containing and a bootcfg.php containing
  
-    ​<?php +  ​<?php 
-     +   
-    header ( "​Content-type:​ text/​plain"​ ); +  header ( "​Content-type:​ text/​plain"​ ); 
-     +   
-    echo "UI runmenu\n\n";​ +  echo "UI runmenu\n\n";​ 
-    echo "LABEL runmenu\n";​ +  echo "LABEL runmenu\n";​ 
-    echo "COM32 vesamenu.c32\n";​ +  echo "COM32 vesamenu.c32\n";​ 
-    echo "​APPEND menu.php\n";​ +  echo "​APPEND menu.php\n";​ 
-    ?>+  ?>
  
 +Selecting this method will require that you use gpxecmd.c32 to execute gPXE commands and scripts.
 ==== vesamenu.c32 directly ==== ==== vesamenu.c32 directly ====
 You will need a file "​boot.php"​ containing You will need a file "​boot.php"​ containing
  
-    ​<?php +  ​<?php 
-     +   
-    header ( "​Content-type:​ text/​plain"​ ); +  header ( "​Content-type:​ text/​plain"​ ); 
-     +   
-    echo "#​!gpxe\n";​ +  ​$uri=$_SERVER["​REQUEST_URI"​];​ 
-    echo "​imgfree\n";​ +  $dir=substr ( $uri, 0, strrpos ($uri, "/"​) + 1); 
-    echo "​login\n";​ +   
-    echo "chain ". +  ​echo "#​!gpxe\n";​ 
-          "​https://​\${username:​uristring}:​\${password:​uristring}@"​. +  echo "​imgfree\n";​ 
-          $_SERVER["​SERVER_NAME"]. +  echo "​login\n";​ 
-          dirname ( $_SERVER["​REQUEST_URI"​] )+  echo "chain ". 
-          "/vesamenu.c32 menu.php\n";​ +       ​"​https://​\${username:​uristring}:​\${password:​uristring}@"​. 
-    ?>+       ​$_SERVER["​HTTP_HOST"].$dir
 +       ​"​vesamenu.c32 menu.php\n";​ 
 +  ?>
  
 In order to use vesamenu.c32 directly from gPXE, you must use Syslinux-3.86 from [[http://​www.kernel.org/​pub/​linux/​utils/​boot/​syslinux/​3.xx/​]] and not the latest version. In order to use vesamenu.c32 directly from gPXE, you must use Syslinux-3.86 from [[http://​www.kernel.org/​pub/​linux/​utils/​boot/​syslinux/​3.xx/​]] and not the latest version.
Line 69: Line 97:
     filename "​https://​my.web.server/​boot/​boot.php";​     filename "​https://​my.web.server/​boot/​boot.php";​
  
-Download the latest //​syslinux//​ tarball from [[http://​www.kernel.org/​pub/​linux/​utils/​boot/​syslinux/​]] and extract it.  Copy the files //​com32/​menu/​vesamenu.c32//​ and //​com32/​modules/​cmd.c32// into the "​boot"​ directory on the web server.+Download the latest //​syslinux//​ tarball from [[http://​www.kernel.org/​pub/​linux/​utils/​boot/​syslinux/​]] and extract it.  Copy the files //​com32/​menu/​vesamenu.c32//​ and //​com32/​modules/​gpxecmd.c32// into the "​boot"​ directory on the web server.
  
 ===== Setup (interesting part) ===== ===== Setup (interesting part) =====
Line 106: Line 134:
     function sanboot ( $label, $root_path ) {     function sanboot ( $label, $root_path ) {
       label ( $label );       label ( $label );
-      echo " ​ kernel ​cmd.c32\n";​+      echo " ​ kernel ​gpxecmd.c32\n";​
       echo " ​ append sanboot "​.$root_path."​\n";​       echo " ​ append sanboot "​.$root_path."​\n";​
       echo "​\n";​       echo "​\n";​
Line 207: Line 235:
     label item1     label item1
       menu label ^1 MS-DOS 6.22       menu label ^1 MS-DOS 6.22
-      kernel ​cmd.c32+      kernel ​gpxecmd.c32
       append sanboot iscsi:​chipmunk.tuntap::::​iqn.2007-07.chipmunk:​msdos622       append sanboot iscsi:​chipmunk.tuntap::::​iqn.2007-07.chipmunk:​msdos622
     ​     ​
     label item2     label item2
       menu label ^2 Windows 2k3       menu label ^2 Windows 2k3
-      kernel ​cmd.c32+      kernel ​gpxecmd.c32
       append sanboot iscsi:​chipmunk.tuntap::::​iqn.2007-07.chipmunk:​win2k3       append sanboot iscsi:​chipmunk.tuntap::::​iqn.2007-07.chipmunk:​win2k3
     ​     ​
Line 242: Line 270:
  
 Note that Windows imposes a minimum password length of 12 characters, and a maximum of 16 characters, for iSCSI authentication;​ this scheme will silently break unless your password policy enforces an appropriate min/max password length of 12<​-->​16 characters. Note that Windows imposes a minimum password length of 12 characters, and a maximum of 16 characters, for iSCSI authentication;​ this scheme will silently break unless your password policy enforces an appropriate min/max password length of 12<​-->​16 characters.
- 
- 

Navigation

* [[:start|Home]] * [[:about|About our Project]] * [[:download|Download]] * [[:screenshots|Screenshots]] * Documentation * [[:howtos|HowTo Guides]] * [[:appnotes|Application Notes]] * [[:faq:|FAQs]] * [[:doc|General Doc]] * [[:talks|Videos, Talks, and Papers]] * [[:hardwareissues|Hardware Issues]] * [[:mailinglists|Mailing lists]] * [[http://support.etherboot.org/|Bugtracker]] * [[:contributing|Contributing]] * [[:editing_permission|Wiki Edit Permission]] * [[:wiki:syntax|Wiki Syntax]] * [[:contact|Contact]] * [[:relatedlinks|Related Links]] * [[:commerciallinks|Commercial Links]] * [[:acknowledgements|Acknowledgements]] * [[:logos|Logo Art]]

QR Code
QR Code appnotes:authmenus (generated for current page)