EasyManuals Logo

HP P2000 Reference Guide

HP P2000
448 pages
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Page #16 background imageLoading...
Page #16 background image
16 Using the CLI
Using CLI interactively
By default the CLI is an interactive application. When you are logged into the CLI, the CLI waits for a
command to be entered and then responds to it.
The following example shows interactively starting a Telnet session, logging into the CLI, executing a
command to show free (available) disks, and exiting the CLI:
$: telnet 172.22.5.55
172.22.5.55 login: monitor
Password: ********
product
System Name: Test
System Location: Lab
Version: version
# show disks free
Location Serial Number Vendor Rev How Used Type Size
Rate*(Gb/s) SP Health Health Reason
-------------------------------------------------------------------------------
1.2 SN vendor rev AVAIL SAS 146.8GB
3.0 OK
-------------------------------------------------------------------------------
Info: * Rates may vary. This is normal behavior.
# exit
Using a script to access the CLI
The following example shows how to construct a Perl script to communicate with the CLI via Telnet. cLogin
is called at the start of the script to log a user into the CLI. The script uses the command-line parameters
specified as the IP address, username, and password. After the user has been logged in, other commands
can be sent to the CLI.
use Net::Telnet;
sub cLogin {
$telnet->open($_[0]);
$telnet->waitfor(/(login|username)[: ]*$/i);
$telnet->print("$_[1]");
$telnet->waitfor(/password[: ]*$/i);
$telnet->print("$_[2]");
# either got a login or a prompt
@ok = $telnet->waitfor(/(#|login:*) /i);
if ($debug_commands == 1) { print "-"; print @ok; print "-\n"; }
if ($ok[1] =~ m/login/gi)
{
return 0;
}
else
{
return 1;
}
}
$ipAddr = $ARGV[0];
$username = $ARGV[1];
$password = $ARGV[2];
$telnet = new Net::Telnet ( Timeout=>10,
Errmode=>'die',
Prompt => '/\# $/i');
if ( !cLogin($ipAddr, $username, $password) == 1 )

Table of Contents

Other manuals for HP P2000

Questions and Answers:

Question and Answer IconNeed help?

Do you have a question about the HP P2000 and is the answer not in the manual?

HP P2000 Specifications

General IconGeneral
Drive SupportSAS
ControllerDual Controller options available
Host Interface6Gb SAS, 8Gb FC, 1Gb iSCSI
RAID LevelsRAID 0, 1, 5, 6, 10
Storage TypeSSD
Hot-swappable ComponentsDrives, controllers, power supplies, fans
Dimensions8.9 x 44.8 x 63.5 cm (3.5 x 17.6 x 25 inches)
Drive BaysUp to 12 LFF or 24 SFF drive bays per enclosure

Related product manuals