ibm-information-center/dist/eclipse/plugins/i5OS.ic.rzahq_5.4.0.1/rzahqadvisor3j.htm

155 lines
5.6 KiB
HTML
Raw Normal View History

2024-04-02 14:02:31 +00:00
<!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 parameter delivery method</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 a valid vendor ID or choose to manually configure the boot parameters on the remote system. The characters must be letters (A-Z) or digits (0-9).";
var errMess1 = "Enter a valid alternate client ID or choose to manually configure the boot parameters on the remote system. The characters must be letters (A-Z) or digits (0-9).";
//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[122])) {
if (parseInt(parent.hidden.v1[122],10) == 1) {
document.form1.rad[1].checked = true;
}
if (parseInt(parent.hidden.v1[122],10) == 0) {
document.form1.rad[0].checked = true;
if (!isEmpty(parent.hidden.v1[123])) {
document.form1.vendor.value = parent.hidden.v1[123];
}
if (!isEmpty(parent.hidden.v1[124])) {
document.form1.client.value = parent.hidden.v1[124];
}
}
}
}
function onNext() {
if (document.form1.rad[1].checked == true) { //manual
parent.hidden.v1[122] = 1;
parent.hidden.v1[123] = "";
parent.hidden.v1[124] = "";
} else { //dynamically
parent.hidden.v1[122] = 0;
if (isEmpty(document.form1.vendor.value) || !isAlphanumeric(document.form1.vendor.value)) {
alert(errMess);
return;
} else {
parent.hidden.v1[123] = document.form1.vendor.value;
}
if (isEmpty(document.form1.client.value) || !isAlphanumeric(document.form1.client.value)) {
alert(errMess1);
return;
} else {
parent.hidden.v1[124] = document.form1.client.value;
}
}
//Next page
if (document.form1.rad[1].checked == true) { //manual, skip boot device panel
window.location = "rzahqadvisor3m.htm";
} else {
window.location = "rzahqadvisor3k.htm";
}
}
function onBack() {
window.location = "rzahqadvisor3h.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 parameter delivery method</strong>
<p>Boot parameters are needed in order to boot the remote system.</p>
<p>You can choose to have i5/OS deliver the boot parameters to the remote system when
the server starts. With this option an internal i5/OS DHCP server is used to deliver
the boot parameters to the remote system. <strong>Note:</strong> You should use the default vendor ID
and alternate client ID shown below unless you have previously determined that these
values will not work in your networking environment.</p>
<p>You can also choose to manually configure the boot parameters on the remote system.</p>
<p>How do you want to deliver the boot parameters to the remote system?</p>
<form name="form1">
<blockquote>
<input type="radio" name="rad" checked value="dynamic" id="dynamic">
<label for="dynamic">Dynamically deliver the boot parameters to the remote system using DHCP</label>
<blockquote>
Advanced DHCP boot options:
<table>
<tr>
<td><label for="vendor">Vendor ID:</label></td>
<td><input type="text" name="vendor" id="vendor" maxlength="8" onFocus="selectRadio(0)" value="Default"></td>
</tr>
<tr>
<td><label for="client">Alternate client ID:</label></td>
<td><input type="text" name="client" id="client" maxlength="8" onFocus="selectRadio(0)" value="Adapter"></td>
</tr>
</table>
</blockquote>
<input type="radio" name="rad" value="manual" id="manual">
<label for="manual">Manually configure the boot parameters on the remote system</label>
</blockquote>
<br><br><br>
<center>
<input type="button" value="&lt;&lt; Back" onClick="onBack()">
<input type="button" value="Next &gt;&gt;" onClick="onNext()">
</center>
</form>
</body>
</html>