151 lines
5.9 KiB
HTML
151 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--Remote system configuration</title>
|
|
<script language="Javascript" type="text/javascript" src="rzahqadvcommon.js"></script>
|
|
<script type="text/javascript" language="Javascript">
|
|
<!-- // Hide script from older browsers
|
|
|
|
var errMess = "You must enter a new remote system configuration name. The characters must be letters (A-Z) or digits (0-9).";
|
|
var errMess1 = "You must enter an existing remote system configuration name. 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[117])) {
|
|
if (parseInt(parent.hidden.v1[117]) == 0) { //new
|
|
document.form1.rad[0].checked = true;
|
|
if (!isEmpty(parent.hidden.v1[118])) { //value saved for name
|
|
document.form1.newname.value = parent.hidden.v1[118];
|
|
} else {
|
|
setDefaultNewName();
|
|
}
|
|
} else { //not new
|
|
if (parseInt(parent.hidden.v1[117]) == 1) { //existing
|
|
document.form1.rad[1].checked = true;
|
|
if (!isEmpty(parent.hidden.v1[118])) { //value saved for name
|
|
document.form1.oldname.value = parent.hidden.v1[118];
|
|
} else {
|
|
document.form1.oldname.value = "";
|
|
}
|
|
}
|
|
}
|
|
} else { //no value saved for radio button, set the new name to default to nwsd name plus sp
|
|
setDefaultNewName();
|
|
}
|
|
}
|
|
|
|
function setDefaultNewName() {
|
|
var rscname = parent.hidden.v1[1];
|
|
rscname += "RM";
|
|
rscname = rscname.toUpperCase();
|
|
document.form1.newname.value = rscname;
|
|
}
|
|
|
|
|
|
function onNext() {
|
|
//Save data
|
|
if (document.form1.rad[0].checked == true) {
|
|
parent.hidden.v1[117] = 0; // new rsc
|
|
if (!isEmpty(document.form1.newname.value) && isAlphanumeric(document.form1.newname.value) == false) {
|
|
alert(errMess);
|
|
return;
|
|
} else {
|
|
//Save data
|
|
parent.hidden.v1[118] = document.form1.newname.value;
|
|
window.location = "rzahqadvisor3h.htm"; //next page
|
|
}
|
|
} else {
|
|
parent.hidden.v1[117] = 1; // existing rsc
|
|
if (!isEmpty(document.form1.oldname.value) && isAlphanumeric(document.form1.oldname.value) == false) {
|
|
alert(errMess1);
|
|
return;
|
|
} else {
|
|
//Save data
|
|
parent.hidden.v1[118] = document.form1.oldname.value;
|
|
window.location = "rzahqadvisor5.htm"; //head to installation type
|
|
}
|
|
}
|
|
}
|
|
|
|
function onBack() {
|
|
if (parseInt(parent.hidden.v1[103],10) == 1) { //existing spc
|
|
if (parseInt(parent.hidden.v1[113],10) == 0) { //no sp security
|
|
window.location = "rzahqadvisor3e.htm";
|
|
} else {
|
|
window.location = "rzahqadvisor3f.htm";
|
|
}
|
|
} else { //new spc
|
|
if (parseInt(parent.hidden.v1[110],10) == 0) { //no sp security
|
|
window.location = "rzahqadvisor3d.htm";
|
|
} else {
|
|
window.location = "rzahqadvisor3f.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>Remote system configuration</strong>
|
|
|
|
<p>The remote system network server configuration defines attributes of the xSeries or
|
|
BladeCenter server hardware, server boot options and iSCSI network connections.</p>
|
|
|
|
<p><strong>Note:</strong> It may be necessary or preferable to create the remote system configuration prior to running the INSWNTSVR command.
|
|
See <a href="rzahqcreateanspandrmtsysconf.htm" target="new_win">Create a service processor configuration and a remote system configuration</a> for details.</p>
|
|
|
|
<form name="form1">
|
|
<p>What remote system configuration do you want to use?</p>
|
|
<blockquote>
|
|
<input type="radio" name="rad" checked value="new" id="new"> <label for="new">Create a new remote system configuration with name: </label><INPUT type="text" maxlength="10" name="newname" id="new" onFocus="selectRadio(0)">
|
|
<br><br>
|
|
<input type="radio" name="rad" value="exist" id="exist"> <label for="exist">Use an existing remote system configuration with name: </label><INPUT type="text" maxlength="10" name="oldname" id="exist" onFocus="selectRadio(1)">
|
|
|
|
</blockquote>
|
|
|
|
<br><br>
|
|
<center>
|
|
<input type="button" value="<< Back" onClick="onBack()">
|
|
<input type="button" value="Next >>" onClick="onNext()">
|
|
</center>
|
|
</form>
|
|
</body>
|
|
</html>
|