105 lines
3.6 KiB
HTML
105 lines
3.6 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--Storage path</title>
|
|
|
|
<script language="Javascript" type="text/javascript" src="rzahqadvcommon.js"></script>
|
|
<script type="text/javascript" language="Javascript">
|
|
<!-- // Hide script from older browsers
|
|
|
|
var errMess1 = "Enter a valid network server host adapter. The NWSH name must contain only 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[144])) {
|
|
document.form1.nwsh.value = parent.hidden.v1[144];
|
|
}
|
|
}
|
|
|
|
function onNext() {
|
|
if (isEmpty(document.form1.nwsh.value) || !isAlphanumeric(document.form1.nwsh.value)) {
|
|
alert(errMess1);
|
|
return;
|
|
} else {
|
|
//Save data
|
|
parent.hidden.v1[144] = document.form1.nwsh.value;
|
|
|
|
//Next page
|
|
window.location = "rzahqadvisor13b.htm";
|
|
}
|
|
}
|
|
|
|
|
|
function onBack() {
|
|
window.location = "rzahqadvisor13.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>Storage path</strong>
|
|
|
|
<p>A network server host adapter (NWSH) defines the attributes of an i5/OS target iSCSI host bus adapter (iSCSI HBA).
|
|
An NWSH is also used to define a storage path, which identifies which i5/OS target iSCSI HBA is used for the server's
|
|
SCSI storage operations (e.g. disk I/O).</p>
|
|
|
|
<p><strong>Note:</strong> Just one default storage path can be defined during the server installation process. However, additional
|
|
storage paths can optionally be defined after the server has been installed.</p>
|
|
|
|
<p>What NWSH do you want to use for the server's default storage path?</p>
|
|
<form name="form1">
|
|
|
|
<blockquote>
|
|
<label for="nwsh">NWSH name:</label>
|
|
<input type="text" name="nwsh" id="nwsh" maxlength="10">
|
|
</blockquote>
|
|
<br><br><br>
|
|
|
|
|
|
<center>
|
|
<input type="button" value="<< Back" onClick="onBack()">
|
|
<input type="button" value="Next >>" onClick="onNext()">
|
|
</center>
|
|
|
|
</form>
|
|
</body>
|
|
</html>
|