* $ssh->capture() aka. directly executing a command via ssh <device> <command> does not seem to work on NXOS7, maybe also others * changed this module to use Expect, successfully tested on NXOS6 - NXOS9
89 lines
2.1 KiB
Perl
89 lines
2.1 KiB
Perl
package App::Netdisco::SSHCollector::Platform::NXOS;
|
|
|
|
=head1 NAME
|
|
|
|
App::Netdisco::SSHCollector::Platform::NXOS
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
Collect ARP entries from Cisco NXOS devices.
|
|
|
|
=cut
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use Dancer ':script';
|
|
use Moo;
|
|
use Expect;
|
|
|
|
=head1 PUBLIC METHODS
|
|
|
|
=over 4
|
|
|
|
=item B<arpnip($host, $ssh)>
|
|
|
|
Retrieve ARP entries from device. C<$host> is the hostname or IP address
|
|
of the device. C<$ssh> is a Net::OpenSSH connection to the device.
|
|
|
|
Returns a list of hashrefs in the format C<< { mac => MACADDR, ip => IPADDR } >>.
|
|
|
|
=back
|
|
|
|
=cut
|
|
|
|
sub arpnip {
|
|
my ($self, $hostlabel, $ssh, $args) = @_;
|
|
|
|
debug "$hostlabel $$ arpnip()";
|
|
|
|
my ($pty, $pid) = $ssh->open2pty;
|
|
unless ($pty) {
|
|
warn "unable to run remote command [$hostlabel] " . $ssh->error;
|
|
return ();
|
|
}
|
|
|
|
#$Expect::Debug = 1;
|
|
#$Expect::Exp_Internal = 1;
|
|
|
|
my $expect = Expect->init($pty);
|
|
$expect->raw_pty(1);
|
|
|
|
my ($pos, $error, $match, $before, $after);
|
|
my $prompt = qr/# +$/;
|
|
my $timeout = 10;
|
|
|
|
($pos, $error, $match, $before, $after) = $expect->expect($timeout, -re, $prompt);
|
|
|
|
$expect->send("terminal length 0\n");
|
|
($pos, $error, $match, $before, $after) = $expect->expect($timeout, -re, $prompt);
|
|
|
|
# we filter on the : in Age as the output header of the command may contain prompt chars, e.g.
|
|
# Flags: # - Adjacencies Throttled for Glean
|
|
$expect->send("show ip arp vrf all | inc :\n");
|
|
($pos, $error, $match, $before, $after) = $expect->expect($timeout, -re, $prompt);
|
|
|
|
my @arpentries;
|
|
my @data = split(/\R/, $before);
|
|
|
|
#IP ARP Table for all contexts
|
|
#Total number of entries: 5
|
|
#Address Age MAC Address Interface
|
|
#192.168.228.1 00:00:43 0000.abcd.1111 mgmt0
|
|
#192.168.228.9 00:05:24 cccc.7777.1b1b mgmt0
|
|
|
|
foreach (@data) {
|
|
my ($ip, $age, $mac, $iface) = split(/\s+/);
|
|
|
|
if ($ip && $ip =~ m/(\d{1,3}\.){3}\d{1,3}/
|
|
&& $mac =~ m/([0-9a-f]{4}\.){2}[0-9a-f]{4}/i) {
|
|
push(@arpentries, { ip => $ip, mac => $mac });
|
|
}
|
|
}
|
|
|
|
return @arpentries;
|
|
}
|
|
|
|
1;
|
|
|