| Cisco-Management documentation | view source | Contained in the Cisco-Management distribution. |
Cisco::Management - Interface for Cisco Management
use Cisco::Management;
Cisco::Management is a class implementing several management functions for Cisco devices - mostly via SNMP. Cisco::Management uses the Net::SNMP module to do the SNMP calls.
my $cm = new Cisco::Management([OPTIONS]);
or
my $cm = Cisco::Management->new([OPTIONS]);
Create a new Cisco::Management object with OPTIONS as optional parameters. Valid options are:
Option Description Default ------ ----------- ------- -hostname Remote device to connect to localhost -port Port to connect to 161 -community SNMP read/write community string private -timeout Timeout to wait for request in seconds 10
$session = $cm->session;
Return the Net::SNMP session object created by the Cisco::Management new() method. This is useful to call Net::SNMP methods directly without having to create a new Net::SNMP object. For example:
my $cm = new Cisco::Management(
-host => 'router1',
-community => 'snmpRW'
);
my $session = $cm->session();
# get_request() is a Net::SNMP method
$session->get_request('1.3.6.1.2.1.1.4.0');
In this case, the get_request call is a method provided by the
Net::SNMP module that can be accessed directly via the $session
object returned by the $cm->session() method.
$cm->close;
Close the Cisco::Management session.
printf "Error: %s\n", Cisco::Management->error;
Return last error.
The following methods are for configuration file management. These
methods implement the CISCO-CONFIG-COPY-MIB for configuration file
management. If these operations fail, the older method in
OLD-CISCO-SYS-MIB is tried. All Catalyst OS operations are
performed against the CISCO-STACK-MIB.
my $cc = $cm->config_copy([OPTIONS]);
Manage configuration files. Options allow for TFTP upload or download of running-config or startup-config and a copy running-config to startup-config or vice versa. Valid options are:
Option Description Default
------ ----------- -------
-tftp TFTP server address localhost
-source 'startup-config', 'running-config' 'running-config'
or filename on TFTP server
-dest 'startup-config', 'running-config' 'startup-config'
or filename for TFTP server
-catos Catalyst OS boolean flag. Enable if 0
device runs Catalyst OS.
The default behavior with no options is copy running-config
startup-config.
NOTE: Use care when performing TFTP upload to startup-config. This MUST be a FULL configuration file as the config file is NOT merged, but instead OVERWRITES the startup-config.
Allows the following methods to be called.
$cc->config_copy_starttime();
Return the start time of the configuration copy operation relative to system uptime.
$cc->config_copy_endtime();
Return the end time of the configuration copy operation relative to system uptime.
The following methods are for CPU utilization. These methods
implement the CISCO-PROCESS-MIB and OLD-CISCO-SYS-MIB.
my $cpuinfo = $cm->cpu_info();
Populate a data structure with CPU information. If successful, returns pointer to an array containing CPU information.
$cpuinfo->[0]->{'Name', '5sec', '1min', ...}
$cpuinfo->[1]->{'Name', '5sec', '1min', ...}
...
$cpuinfo->[n]->{'Name', '5sec', '1min', ...}
The following methods are for interface management. These methods
implement the IF-MIB.
my $line = $cm->interface_getbyindex([OPTIONS]);
Resolve an ifIndex to the full interface name. Called with one argument, interpreted as the interface ifIndex to resolve.
Option Description Default ------ ----------- ------- -index The ifIndex to resolve -REQUIRED-
Returns the full interface name string.
my $name = $cm->interface_getbyname([OPTIONS]);
Get the full interface name or ifIndex number by the Cisco 'shortcut' name. For example, 'gig0/1' or 's0/1' resolves to 'GigabitEthernet0/1' and 'Serial0/1' respectively. Called with one argument, interpreted as the interface string to resolve.
Option Description Default ------ ----------- ------- -interface String to resolve -REQUIRED- -index Return ifIndex instead (boolean) 0
Returns a string with the full interface name or ifIndex - if -index
boolean flag is set.
my $ifs = $cm->interface_info([OPTIONS]);
Populate a data structure with interface information. Called with no arguments, populates data structure for all interfaces. Called with one argument, interpreted as the interface(s) to retrieve information for.
Option Description Default ------ ----------- ------- -interface ifIndex or range of ifIndex (, and -) (all)
Interface information consists of the following MIB entries (exludes counter-type interface metrics):
Index Description Type MTU Speed Duplex * PhysAddress AdminStatus OperStatus LastChange
NOTE: Duplex is found in the EtherLike-MIB and thus will not
be populated for non-Ethernet interface types.
If successful, returns a pointer to a hash containing interface information.
$ifs->{1}->{'Index', 'Description', ...}
$ifs->{2}->{'Index', 'Description', ...}
...
$ifs->{n}->{'Index', 'Description', ...}
my $ips = $cm->interface_ip([1]);
Populate a data structure with the IP information per interface. If successful, returns a pointer to a hash containing interface IP information. For /xx instead of dotted-octet format for mask, use the optional boolean argument.
$ips->{1}->[0]->{'IPAddress', 'IPMask'}
[1]->{'IPAddress', 'IPMask'}
...
...
$ips->{n}->[0]->{'IPAddress', 'IPMask'}
First hash value is the interface ifIndex, next array is the list of current IP information per the interface ifIndex.
my $ifs = $cm->interface_metrics([OPTIONS]);
Populate a data structure with interface metrics.
NOTE: This method only provides the counter values - do NOT confuse this with utilization. This is the raw number of "metric" types seen since the counter was last reset.
Called with no arguments, populates data structure for all interfaces. Called with one argument, interpreted as the interface(s) to retrieve metrics for.
Option Description Default
------ ----------- -------
-interface ifIndex or range of ifIndex (, and -) (all)
-metrics Metric or array of metrics to return (all)
eg: -metrics => 'octets'
eg: -metrics => [octets, ...]
(or) -metrics => \@mets
Interface metrics consist of the following MIB entries:
Multicasts (count of packets in/out) Broadcasts (count of packets in/out) Octets (count of octets in/out) Unicasts (count of packets in/out) Discards (count of packets in/out) Errors (count of packets in/out) Unknowns * (count of packets in)
NOTE: Providing an above value for -metrics returns the In
and Out counter for the metric; except for Unknowns, which does
not have an Out counter.
If successful, returns a pointer to a hash containing interface metrics.
$ifs->{1}->{'InMulticasts', 'OutMulticasts', 'InOctets', ...}
$ifs->{2}->{'InMulticasts', 'OutMulticasts', 'InOctets', ...}
...
$ifs->{n}->{'InMulticasts', 'OutMulticasts', 'InOctets', ...}
my $ifs = $cm->interface_utilization([OPTIONS]);
or
my ($ifs, $recur);
($ifs, $recur) = $cm->interface_utilization(
[OPTIONS]
-recursive => $recur
);
Populate a data structure with interface utilizations.
NOTE: This method processes the counter values described in the
interface_metrics method and returns utilizations in packets or
octets per second. This is done by retrieving the metrics, waiting
for a 'polling interval' of time, retrieving the metrics again and
finally processing the utilizations, populating and returning the
data structure.
Called with no arguments, populates data structure for all interfaces. Called with one argument, interpreted as the interface(s) to retrieve metrics for.
Option Description Default
------ ----------- -------
-interface ifIndex or range of ifIndex (, and -) (all)
-metrics Metric or array of metrics to return (all)
eg: -metrics => 'octets'
eg: -metrics => [octets, ...]
(or) -metrics => \@mets
-polling The polling interval in seconds 10
-recursive Variable with previous results -none-
Interface utilizations consist of the following MIB entries:
Multicasts (packets/second in/out) Broadcasts (packets/second in/out) Octets (bits/second in/out) Unicasts (packets/second in/out) Discards (packets/second in/out) Errors (packets/second in/out) Unknowns * (packets/second in)
NOTE: Providing an above value for -metrics returns the In
and Out utilization for the metric; except for Unknowns, which
does not have an Out counter.
If successful, returns a pointer to a hash containing interface utilizations.
$ifs->{1}->{'InMulticasts', 'OutMulticasts', 'InOctets', ...}
$ifs->{2}->{'InMulticasts', 'OutMulticasts', 'InOctets', ...}
...
$ifs->{n}->{'InMulticasts', 'OutMulticasts', 'InOctets', ...}
As previously mentioned, interface utilization is computed by retrieving interface metrics, waiting for a 'polling interval' of time, retrieving interface metrics again and calculating the difference (and other math in the case of octets). To accomplish this, the following is executed:
User calls 'interface_utilization'
'interface_utilization' method calls 'interface_metrics' method
'interface_utilization' method waits for 'polling' seconds
'interface_utilization' method calls 'interface_metrics' method
'interface_utilization' method performs calculations and returns
User program continues
This works well to get the interface utilization over a single polling interval. However, if the user program were to repeatedly obtain interface utilization statistics (for example, using a while() loop), this method can be improved.
Consider for example:
my ($ifs, $recur);
while (1) {
($ifs, $recur) = $cm->interface_utilization(
-recursive => $recur
);
printf "%i\n", $ifs->{'1'}->{InOctets}
}
The -recursive option along with an array return value ($ifs, $recur)
allows the user to specify 2 return values: the first is the interface
utilization statistics, the second is the interface metrics retrieved
in the interface_utilization method's second call to the
interface_metrics method. Upon first execution, this value is empty
and the interface_utilization method calls interface_metrics twice.
However, on subsequent calls to the interface_utilization method, it
skips the first call to the interface_metrics method and just uses
the previously obtained metrics found in $recur. This streamlines the
utilization calculations by saving time, bandwidth and processing power
on both the device running this script and the device under test.
To illustrate, assume we poll a device at 'T' polling intervals. We retrieve the metrics (M) at each interval and calculate the utilization (U) for each interval.
|---- T ---|---- T ---|---- T ---| M1 M2 M3 M4 Utilization 1 = M2 - M1 Utilization 2 = M3 - M2 Utilization 3 = M4 - M3
WITHOUT the -recursive option, the following less efficient (but
still effective) operation occurs:
|---- T ---||---- T ---||---- T ---| M1 M2M3 M4M5 M6 Utilization 1 = M2 - M1 Utilization 2 = M4 - M3 Utilization 3 = M6 - M5
my $line = $cm->interface_updown([OPTIONS]);
Admin up or down the interface. Called with no arguments, admin up all interfaces. Called with one argument, interpreted as the interface(s) to admin up.
Option Description Default ------ ----------- ------- -operation 'up' or 'down' 'up' -interface ifIndex or range of ifIndex (, and -) (all)
To specify individual interfaces, provide their number:
my $line = $cm->interface_updown(2);
Admin up ifIndex 2. To specify a range of interfaces, provide a range:
my $line = $cm->interface_updown(
-operation => 'down',
-interface => '2-4,6,9-11'
);
Admin down ifIndex 2 3 4 6 9 10 11.
If successful, returns a pointer to an array containing the interfaces admin up/down.
The following methods are for line management. Lines on Cisco devices
refer to console, auxillary and terminal lines for user interaction.
These methods implement the OLD-CISCO-TS-MIB which is not available
on some newer forms of IOS.
my $line = $cm->line_clear([OPTIONS]);
Clear the line (disconnect interactive session). Called with no arguments, clear all lines. Called with one argument, interpreted as the lines to clear.
Option Description Default ------ ----------- ------- -lines Line or range of lines (, and -) (all)
To specify individual lines, provide their number:
my $line = $cm->line_clear(2);
Clear line 2. To specify a range of lines, provide a range:
my $line = $cm->line_clear('2-4,6,9-11');
Clear lines 2 3 4 6 9 10 11.
If successful, returns a pointer to an array containing the lines cleared.
my $line = $cm->line_info();
Populate a data structure with line information. If successful, returns a pointer to a hash containing line information.
$line->{0}->{'Number', 'TimeActive', ...}
$line->{1}->{'Number', 'TimeActive', ...}
...
$line->{n}->{'Number', 'TimeActive', ...}
my $session = $cm->line_sessions();
Populate a data structure with the session information per line. If successful, returns a pointer to a hash containing session information.
$sessions->{1}->[0]->{'Session', 'Type', 'Dir' ...}
[1]->{'Session', 'Type', 'Dir' ...}
...
...
$sessions->{n}->[0]->{'Session', 'Type', 'Dir' ...}
First hash value is the line number, next array is the list of current sessions per the line number.
my $line = $cm->line_message([OPTIONS]);
Send a message to the line. With no arguments, a "Test Message" is sent to all lines. If 1 argument is provided, interpreted as the message to send to all lines. Valid options are:
Option Description Default ------ ----------- ------- -lines Line or range of lines (, and -) (all) -message Double-quote delimited string "Test Message"
If successful, returns a pointer to an array containing the lines messaged.
my $line = $cm->line_numberof();
If successful, returns the number of lines on the device.
The following methods are for memory utilization. These methods
implement the CISCO-MEMORY-POOL-MIB.
my $meminfo = $cm->memory_info();
Populate a data structure with memory information. If successful, returns a pointer to an array containing memory information.
$meminfo->[0]->{'Name', 'Used', 'Free', ...}
$meminfo->[1]->{'Name', 'Used', 'Free', ...}
...
$meminfo->[n]->{'Name', 'Used', 'Free', ...}
The following methods are for proxy ping. These methods implement the
CISCO-PING-MIB.
my $ping = $cm->proxy_ping([OPTIONS]);
Send proxy ping from the object defined in $cm to the provided
destination. Called with no options, sends the proxy ping to the
localhost. Called with one argument, interpreted as the destination
to proxy ping. Valid options are:
Option Description Default ------ ----------- ------- -host Destination to send proxy ping to (localhost) -count Number of pings to send 1 -size Size of the ping packets in bytes 64 -wait Time to wait for replies in seconds 1 -vrf VRF name to source pings from [none]
Allows the following methods to be called.
$ping->config_copy_sent();
Return the number of pings sent in the current proxy ping execution.
$ping->config_copy_received();
Return the number of pings received in the current proxy ping execution.
$ping->config_copy_minimum();
Return the minimum round trip time in milliseconds of pings sent and received in the current proxy ping execution.
$ping->config_copy_average();
Return the average round trip time in milliseconds of pings sent and received in the current proxy ping execution.
$ping->config_copy_maximum();
Return the maximum round trip time in milliseconds of pings sent and received in the current proxy ping execution.
The following methods implement the System MIB defined in SNMPv2-MIB.
my $sysinfo = $cm->system_info();
Retrieve the system MIB information from the object defined in $cm.
Allows the following methods to be called.
$sysinfo->system_info_description();
Return the system description from the system info data structure.
$sysinfo->system_info_objectID();
Return the system object ID from the system info data structure.
$sysinfo->system_info_uptime();
Return the system uptime from the system info data structure.
$sysinfo->system_info_contact();
Return the system contact from the system info data structure.
$sysinfo->system_info_name();
Return the system name from the system info data structure.
$sysinfo->system_info_location();
Return the system location from the system info data structure.
$sysinfo->system_info_services([1]);
Return a pointer to an array containing the names of the system services from the system info data structure. For the raw number, use the optional boolean argument.
$sysinfo->system_info_osversion();
Return the system OS version as parsed from the sysDescr OID.
Password subroutines are for decrypting and encrypting Cisco type 7 passwords. The algorithm is freely available on the Internet on several sites; thus, I can/will NOT take credit or ANY liability for its use.
my $passwd = Cisco::Management->password_decrypt('00071A150754');
Where 00071A150754 is the encrypted Cisco password in this example.
my $passwd = Cisco::Management->password_encrypt('cleartext'[,# | *]);
print "$_\n" for (@{$passwd});
Where cleartext is the clear text string to encrypt. The second
optional argument is a number in the range of 0 - 52 inclusive or
random text.
Returns a pointer to an array constructed based on the second argument
to password_encrypt.
Option Description Action
------ ----------- -------
No argument provided Return all 53 possible encryptions.
# Number 0-52 inclusive Return password encrypted with # index.
(other) Random text Return a random password.
NOTE: Cisco routers by default only seem to use the first 16 indexes (0 - 15) to encrypt passwords. You notice this by looking at the first two characters of any type 7 encrypted password in a Cisco router configuration. However, testing on IOS 12.x and later shows that manually entering a password encrypted with a higher index (generated from this script) to a Cisco configuration will not only be allowed, but will function normally for authentication. This may be a form of "security through obscurity" given that some older Cisco password decrypters don't use the entire translation index and limit 'valid' passwords to those starting with the fist 16 indexes (0 - 15). Using passwords with an encryption index of 16 - 52 inclusive may render older Cisco password decrypters useless.
Additionally, the Cisco router command prompt seems to be limited to 254
characters, making the largest password 250 characters (254 - 4
characters for the pas (followed by space) command to enter the
password).
None by default.
This distribution comes with several scripts (installed to the default
bin install directory) that not only demonstrate example uses but also
provide functional execution.
This software is released under the same terms as Perl itself. If you don't know what that means visit http://perl.com/.
| Cisco-Management documentation | view source | Contained in the Cisco-Management distribution. |