176 lines
5.9 KiB
HTML
176 lines
5.9 KiB
HTML
|
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 4.0//EN">
|
|||
|
<html>
|
|||
|
<head>
|
|||
|
<meta name="Copyright" content="Copyright (c) 2004 by IBM Corporation">
|
|||
|
<!-- All rights reserved. Licensed Materials Property of IBM -->
|
|||
|
<!-- US Government Users Restricted Rights -->
|
|||
|
<!-- Use, duplication or disclosure restricted by -->
|
|||
|
<!-- GSA ADP Schedule Contract with IBM Corp. -->
|
|||
|
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
|
|||
|
<title>Windows Server installation advisor--Boot device</title>
|
|||
|
|
|||
|
<script language="Javascript" type="text/javascript" src="rzahqadvcommon.js"></script>
|
|||
|
<script type="text/javascript" language="Javascript">
|
|||
|
<!-- // Hide script from older browsers
|
|||
|
|
|||
|
var errMess = "Enter bus between 0 and 255.";
|
|||
|
var errMess1 = "Enter a device between 0 and 31.";
|
|||
|
var errMess2 = "Enter a function between 0 and 7.";
|
|||
|
|
|||
|
//START NON-TRANSLATABLE
|
|||
|
|
|||
|
//Obtain name of HTML file in parent frame.
|
|||
|
var parentDir = parent.window.location.href.substring(0,location.href.lastIndexOf('/')+1);
|
|||
|
var parentUrl = parent.window.location.href.substring(parentDir.length,parent.window.location.href.length+1);
|
|||
|
if (parentUrl.indexOf("#") >= 0) { parentUrl = parentUrl.substring(0,parentUrl.indexOf("#"));}
|
|||
|
|
|||
|
function checkFrame() {
|
|||
|
//Is the hidden frame already loaded with the correct html?
|
|||
|
if (parentUrl != "rzahqadvisor1.htm") {
|
|||
|
window.location = "rzahqadvisor1.htm"; //load advisor frameset
|
|||
|
return;
|
|||
|
} else {
|
|||
|
//Obtain name of HTML file in hidden frame.
|
|||
|
var hiddenDir = parent.hidden.window.location.href.substring(0,location.href.lastIndexOf('/')+1);
|
|||
|
var hiddenUrl = parent.hidden.window.location.href.substring(hiddenDir.length,parent.hidden.window.location.href.length+1);
|
|||
|
if (hiddenUrl.indexOf("#") >= 0) { hiddenUrl = hiddenUrl.substring(0,hiddenUrl.indexOf("#"));}
|
|||
|
if (hiddenUrl != "rzahqadvhidden.htm") {
|
|||
|
//Correct HTML not loaded, load it
|
|||
|
parent.hidden.window.location = "rzahqadvhidden.htm";
|
|||
|
} else { //already loaded
|
|||
|
getData();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function getData() {
|
|||
|
if (!isEmpty(parent.hidden.v1[125])) {
|
|||
|
if (parseInt(parent.hidden.v1[125],10) == 0) {
|
|||
|
document.form1.rad[0].checked = true;
|
|||
|
}
|
|||
|
if (parseInt(parent.hidden.v1[125],10) == 1) {
|
|||
|
document.form1.rad[1].checked = true;
|
|||
|
if (!isEmpty(parent.hidden.v1[126])) {
|
|||
|
document.form1.bus.value = parent.hidden.v1[126];
|
|||
|
}
|
|||
|
if (!isEmpty(parent.hidden.v1[127])) {
|
|||
|
document.form1.device.value = parent.hidden.v1[127];
|
|||
|
}
|
|||
|
if (!isEmpty(parent.hidden.v1[128])) {
|
|||
|
document.form1.func.value = parent.hidden.v1[128];
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function onNext() {
|
|||
|
|
|||
|
if (document.form1.rad[0].checked == true) {
|
|||
|
parent.hidden.v1[125] = 0;
|
|||
|
parent.hidden.v1[126] = "";
|
|||
|
parent.hidden.v1[127] = "";
|
|||
|
parent.hidden.v1[128] = "";
|
|||
|
} else {
|
|||
|
parent.hidden.v1[125] = 1;
|
|||
|
if (isEmpty(document.form1.bus.value) || isNaN(document.form1.bus.value)) {
|
|||
|
alert(errMess);
|
|||
|
return;
|
|||
|
} else {
|
|||
|
if (parseInt(document.form1.bus.value,10) < 0 || parseInt(document.form1.bus.value,10) > 255) {
|
|||
|
alert(errMess);
|
|||
|
return;
|
|||
|
} else {
|
|||
|
parent.hidden.v1[126] = document.form1.bus.value;
|
|||
|
}
|
|||
|
}
|
|||
|
if (isEmpty(document.form1.device.value) || isNaN(document.form1.device.value)) {
|
|||
|
alert(errMess1);
|
|||
|
return;
|
|||
|
} else {
|
|||
|
if (parseInt(document.form1.device.value,10) < 0 || parseInt(document.form1.device.value,10) > 31) {
|
|||
|
alert(errMess1);
|
|||
|
return;
|
|||
|
} else {
|
|||
|
parent.hidden.v1[127] = document.form1.device.value;
|
|||
|
}
|
|||
|
}
|
|||
|
if (isEmpty(document.form1.func.value) || isNaN(document.form1.func.value)) {
|
|||
|
alert(errMess2);
|
|||
|
return;
|
|||
|
} else {
|
|||
|
if (parseInt(document.form1.func.value,10) < 0 || parseInt(document.form1.func.value,10) > 7) {
|
|||
|
alert(errMess2);
|
|||
|
return;
|
|||
|
} else {
|
|||
|
parent.hidden.v1[128] = document.form1.func.value;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
//Next page
|
|||
|
window.location = "rzahqadvisor3m.htm";
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
function onBack() {
|
|||
|
window.location = "rzahqadvisor3j.htm";
|
|||
|
}
|
|||
|
|
|||
|
//END NON-TRANSLATABLE
|
|||
|
////////// -->
|
|||
|
</script>
|
|||
|
|
|||
|
<LINK rel="stylesheet" type="text/css" href="../rzahg/ic.css">
|
|||
|
</head>
|
|||
|
|
|||
|
<body onLoad="checkFrame()">
|
|||
|
|
|||
|
<h2>Windows Server installation advisor</h2>
|
|||
|
<strong>Boot device</strong>
|
|||
|
|
|||
|
<p>The server will boot using a single iSCSI host bus adapter (iSCSI HBA).
|
|||
|
If more than one iSCSI HBA is present in the remote xSeries system or BladeCenter
|
|||
|
blade, then you must identify which iSCSI HBA is used to boot the server. The boot device information can
|
|||
|
be accessed using the BIOS utilities (System BIOS or Adapter BIOS - CTRL-Q).</p>
|
|||
|
|
|||
|
<p>How many iSCSI HBAs are in your remote system?</p>
|
|||
|
|
|||
|
<form name="form1">
|
|||
|
<blockquote>
|
|||
|
<input type="radio" checked name="rad" value="uno" id="uno">
|
|||
|
<label for="uno">One iSCSI interface</label>
|
|||
|
<br><br>
|
|||
|
<input type="radio" name="rad" value="many" id="many">
|
|||
|
<label for="many">More than one iSCSI interface</label>
|
|||
|
|
|||
|
<blockquote>
|
|||
|
Specify boot device ID:
|
|||
|
<table>
|
|||
|
<tr>
|
|||
|
<td><label for="bus">Bus:</label></td>
|
|||
|
<td><input type="text" name="bus" id="bus" maxlength="3" size="5" onFocus="selectRadio(1)"> 0-255</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><label for="device">Device:</label></td>
|
|||
|
<td><input type="text" name="device" id="device" maxlength="2" size="5" onFocus="selectRadio(1)"> 0-31</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><label for="func">Function:</label></td>
|
|||
|
<td><input type="text" name="func" id="func" maxlength="1" size="5" onFocus="selectRadio(1)"> 0-7</td>
|
|||
|
</tr>
|
|||
|
|
|||
|
</table>
|
|||
|
</blockquote>
|
|||
|
|
|||
|
</blockquote>
|
|||
|
<br><br><br>
|
|||
|
|
|||
|
|
|||
|
<center>
|
|||
|
<input type="button" value="<< Back" onClick="onBack()">
|
|||
|
<input type="button" value="Next >>" onClick="onNext()">
|
|||
|
</center>
|
|||
|
|
|||
|
</form>
|
|||
|
</body>
|
|||
|
</html>
|