Send netdisco-users mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/netdisco-users
or, via email, send a message with subject or body 'help' to
[email protected]
You can reach the person managing the list at
[email protected]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of netdisco-users digest..."
Today's Topics:
1. Re: PaloAlto ssh collector (Oliver Gorwits)
2. Change VLAN HP Switch (Robert Lewis)
3. Re: Discover multiple device - subnet (Deshong, Ken)
--- Begin Message ---
Hi Davide
I don't have a PaloAlto box so cannot test this myself. I've just
released an updated module in Netdisco 2.038005 (see my other email) - I
hope this helps?
regards,
oliver.
On 2017-11-17 15:21, Davide Garofalo wrote:
PaloAlto sshcollector module doesn't work.
I modified it as follow and now it works fine, but i don't know it is
following the best practies
File:
/home/netdisco/perl5/lib/perl5/App/Netdisco/SSHCollector/Platform
Function:
sub arpnip{
my ($self, $hostlabel, $ssh, $args) = @_;
debug "$hostlabel $$ arpnip()";
my ($pty, $pid) = $ssh->open2pty or die "unable to run remote
command";
my $expect = Expect->init($pty);
my ($pos, $error, $match, $before, $after);
my $prompt = qr/> r?$/;
# ($pos, $error, $match, $before, $after) = $expect->expect(20,
-re, $prompt);
# $expect->send("set cli pager offn");
# ($pos, $error, $match, $before, $after) = $expect->expect(10,
-re, $prompt);
# $expect->send("show arp alln");
# ($pos, $error, $match, $before, $after) = $expect->expect(20,
-re, $prompt);
# my @arpentries;
# for (split(/rn/, $before)){
# next unless $_ =~ m/(d{1,3}.){3}d{1,3}/;
# my ($tmp, $ip, $mac) = split(/s+/);
# if ($ip =~ m/(d{1,3}.){3}d{1,3}/ && $mac =~
m/([0-9a-f]{2}:){5}[0-9a-f]{2}/i) {
# push(@arpentries, { ip => $ip, mac => $mac });
# }
# }
($pos, $error, $match, $before, $after) = $expect->expect(20,
-re, $prompt);
$expect->send("set cli pager offn show arp alln");
($pos, $error, $match, $before, $after) = $expect->expect(10,
-re, $prompt);
my @arpentries = ();
for (split(/rn/, $after)){
next unless $_ =~ m/(d{1,3}.){3}d{1,3}/;
my ($tmp, $ip, $mac) = split(/s+/);
if ($ip =~ m/(d{1,3}.){3}d{1,3}/ && $mac =~
m/([0-9a-f]{2}:){5}[0-9a-f]{2}/i) {
push(@arpentries, { ip => $ip, mac => $mac });
}
}
$expect->send("exitn");
$expect->soft_close();
return @arpentries;
}
--
DAVIDE GAROFALO
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Netdisco mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/netdisco-users
--- End Message ---
--- Begin Message ---
Hello,
I have recently set up Netdisco and am running into a problem with changing
the vlan on HP Procurve switches. I'm not sure if this should work or if HP
procurve switches are not supported for changing vlans on ports.
I am running version 2.38.0 . I have tried multiple switches with
different versions of the Procurve software. What steps can I take to
further troubleshoot this error?
Here is the output of the netdisco-do command.
[netdisco@netdisco bin]$ netdisco-do vlan -d 172.39.12.1 -p 2 -e 690 -DIISQ
SELECT me.version, me.installed
FROM dbix_class_schema_versions me
WHERE 1 = 0
SELECT me.version
FROM dbix_class_schema_versions me
ORDER BY installed DESC
LIMIT '1'
SELECT me.ip, me.alias, me.subnet, me.port, me.dns, me.creation
FROM device_ip me
WHERE me.alias = '172.39.12.1' AND me.ip = '172.39.12.1'
SELECT me.ip, me.creation, me.dns, me.description, me.uptime, me.contact,
me.name, me.location, me.layers, me.ports, me.mac, me.serial, me.model,
me.ps1_type, me.ps2_type, me.ps1_status, me.ps2_status, me.fan, me.slots,
me.vendor, me.os, me.os_ver, me.log, me.snmp_ver, me.snmp_comm,
me.snmp_class, me.vtp_domain, me.last_discover, me.last_macsuck,
me.last_arpnip, to_char( last_arpnip, 'YYYY-MM-DD HH24:MI' ), to_char(
last_discover, 'YYYY-MM-DD HH24:MI' ), to_char( last_macsuck, 'YYYY-MM-DD
HH24:MI' ), extract( epoch
FROM age( now( ), last_arpnip ) ), extract( epoch
FROM age( now( ), last_discover ) ), extract( epoch
FROM age( now( ), last_macsuck ) ), replace( age( timestamp 'epoch'
+ uptime / 100 * interval '1 second', timestamp '1970-01-01 00:00:00-00' )
::text, 'mon', 'month' )
FROM device me
WHERE me.ip = '172.39.12.1'
[28663] 2018-01-05 20:47:35 info vlan: [172.39.12.1] started at Fri Jan 5
15:47:35 2018
[28663] 2018-01-05 20:47:35 info vlan: finished at Fri Jan 5 15:47:35 2018
[28663] 2018-01-05 20:47:35 info vlan: status error: error running job:
Global symbol "$job" requires explicit package name at
/home/netdisco/perl5/lib/perl5/App/Netdisco/Worker/Plugin/Vlan/Core.pm line
26.
Global symbol "$job" requires explicit package name at
/home/netdisco/perl5/lib/perl5/App/Netdisco/Worker/Plugin/Vlan/Core.pm line
27.
syntax error at
/home/netdisco/perl5/lib/perl5/App/Netdisco/Worker/Plugin/Vlan/Core.pm line
30, near "sub _action "
Global symbol "$job" requires explicit package name at
/home/netdisco/perl5/lib/perl5/App/Netdisco/Worker/Plugin/Vlan/Core.pm line
32.
syntax error at
/home/netdisco/perl5/lib/perl5/App/Netdisco/Worker/Plugin/Vlan/Core.pm line
59, near "}"
Compilation failed in require at
/home/netdisco/perl5/lib/perl5/Module/Load.pm line 77.
Can't locate App/Netdisco/Worker/Plugin/Vlan/Core in @INC (@INC contains:
/home/netdisco/perl5/lib/perl5/auto/share/dist/App-Netdisco/lib
/home/netdisco/perl5/lib /home/netdisco/perl5/bin/lib
/home/netdisco/perl5/lib/perl5/x86_64-linux-thread-multi
/home/netdisco/perl5/lib/perl5 /usr/local/lib64/perl5
/usr/local/share/perl5 /usr/lib64/perl5/vendor_perl
/usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at
/home/netdisco/perl5/lib/perl5/Module/Load.pm line 77.
Thank you,
--
Robert Lewis
--- End Message ---
--- Begin Message ---
I updated and re-ran the discovery as requested. The switch I'm running the
discovery on 105.40 has a lot of downstream L2 neighbors. Just fyi, the device
10.10.101.252 and 253 are upstream L3 neighbors if that matters.
I also ran a separate discovery on another subnet (without L3 neighbors
directly connected) and it also stopped once it discovered itself but without
any other errors.
/Ken
-----Original Message-----
From: Oliver Gorwits [mailto:[email protected]]
Sent: Friday, January 5, 2018 12:49 PM
To: [email protected]
Subject: Re: [Netdisco] Discover multiple device - subnet
Hi Ken
On 2018-01-04 21:43, Deshong, Ken wrote:
> Yes, the switches can see their neighbors. I've provided an
> attachment with my discovery inside. Possibly you can tell what's
> happening by that.
Many thanks for that and for the log, it's a great help in looking into this.
While I agree with Jeroen that the log does suggest the neighbors are being
rejected incorrectly, I cannot at first glance of the code see why this would
be (and Jeroen's own issue is something else).
So I have updated Netdisco today to version 2.038004 (on CPAN soon) which has
improved logging when queueing neighbors. If you could upgrade and run the same
command again and send the log output, it would be appreciated.
Many thanks indeed,
Oliver.
> Thanks for the tip regarding the subnet scan. I'll try that next time
>
> /Ken
>
>
> -----Original Message-----
> From: Oliver Gorwits [mailto:[email protected]]
> Sent: Thursday, January 4, 2018 3:57 PM
> To: [email protected]
> Subject: Re: [Netdisco] Discover multiple device - subnet
>
> Hi Ken
>
> On 2018-01-03 16:43, Deshong, Ken wrote:
>> In the older versions, I could discover one device and automatically
>> it would discover all neighbor devices as well within a site. The
>> newest version doesn't seem to do this. Am I doing something wrong?
>
> Are you running neighbor protocols on the switches such as LLDP? This
> is needed by Netdisco. Are the switches able to show their neighbors
> at the command line? (show lldp neigh)
>
> Alternatively you could run a discover for 10.119.1.0/24 by entering
> that at the Netdisco web homepage.
>
> regards,
> oliver.
>
>> Let's say I have a small site with 30 switches wanted to discover all
>> 30 devices (all within 10.119.1.0/24). Per the directions to discover
>> one device: netdisco-do -D discover -d 10.119.1.1. After this single
>> device is complete, it stops.
>>
>> Ken DeShong
>>
>> Network Engineer
>> University of South Florida
>>
>> Desk: 813-396-9472
>>
>> Fax: 813-974-5198
>>
>>
>> ---------------------------------------------------------------------
>> -
>> -------- Check out the vibrant tech community on one of the world's
>> most engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>>
>> _______________________________________________
>> Netdisco mailing list
>> [email protected]
>> https://lists.sourceforge.net/lists/listinfo/netdisco-users
>
> ----------------------------------------------------------------------
> -------- Check out the vibrant tech community on one of the world's
> most engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> _______________________________________________
> Netdisco mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/netdisco-users
>
> ----------------------------------------------------------------------
> -------- Check out the vibrant tech community on one of the world's
> most engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>
> _______________________________________________
> Netdisco mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/netdisco-users
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most engaging tech
sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Netdisco mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/netdisco-users
[netdisco@netdisco2 ~]$ ~/bin/netdisco-do -D discover -d 10.10.105.40
[7857] 2018-01-05 20:37:41 info discover: [10.10.105.40] started at Fri Jan 5
15:37:41 2018
[7857] 2018-01-05 20:37:42 debug => running workers for phase: check
[7857] 2018-01-05 20:37:42 debug -> run worker check/_base_/0
[7857] 2018-01-05 20:37:42 debug Discover is able to run.
[7857] 2018-01-05 20:37:42 debug => running workers for phase: early
[7857] 2018-01-05 20:37:42 debug -> run worker early/properties/100
[7857] 2018-01-05 20:37:42 debug snmp reader cache warm: [10.10.105.40]
[7857] 2018-01-05 20:37:42 debug [10.10.105.40] try_connect with ver: 2, class:
SNMP::Info::Layer3::C6500, comm: <hidden>
[7857] 2018-01-05 20:37:42 debug [10.10.105.40] device - aliased as
10.10.105.40
[7857] 2018-01-05 20:37:42 debug [10.10.105.40] device - aliased as
10.10.110.254
[7857] 2018-01-05 20:37:42 debug [10.10.105.40] device - aliased as
10.10.102.254
[7857] 2018-01-05 20:37:42 debug [10.10.105.40] device - aliased as
10.10.101.254
[7857] 2018-01-05 20:37:42 debug [10.10.105.40] device - aliased as
131.247.71.190
[7857] 2018-01-05 20:37:42 debug [10.10.105.40] device - aliased as
10.10.117.62
[7857] 2018-01-05 20:37:42 debug [10.10.105.40] device - aliased as
10.10.103.254
[7857] 2018-01-05 20:37:42 debug [10.10.105.40] device - aliased as
10.10.111.254
[7857] 2018-01-05 20:37:42 debug [10.10.105.40] device - aliased as
10.10.107.254
[7857] 2018-01-05 20:37:42 debug [10.10.105.40] device - aliased as
10.10.112.254
[7857] 2018-01-05 20:37:42 debug [10.10.105.40] device - aliased as
172.19.119.17
[7857] 2018-01-05 20:37:42 debug resolving 11 aliases with max 50 outstanding
requests
[7857] 2018-01-05 20:37:42 debug [10.10.105.40] device - removed 11 aliases
[7857] 2018-01-05 20:37:42 debug [10.10.105.40] device - added 11 new aliases
[7857] 2018-01-05 20:37:42 debug -> run worker early/properties/100
[7857] 2018-01-05 20:37:46 debug [10.10.105.40] interfaces - ignoring 5179
(StackPort1) (config:ignore_interfaces)
[7857] 2018-01-05 20:37:46 debug [10.10.105.40] interfaces - ignoring 5183
(StackSub-St2-1) (config:ignore_interfaces)
[7857] 2018-01-05 20:37:46 debug [10.10.105.40] interfaces - ignoring 5181
(StackSub-St1-2) (config:ignore_interfaces)
[7857] 2018-01-05 20:37:46 debug [10.10.105.40] interfaces - ignoring 5180
(StackSub-St1-1) (config:ignore_interfaces)
[7857] 2018-01-05 20:37:46 debug [10.10.105.40] interfaces - ignoring 5184
(StackSub-St2-2) (config:ignore_interfaces)
[7857] 2018-01-05 20:37:46 debug [10.10.105.40] interfaces - ignoring 5182
(StackPort2) (config:ignore_interfaces)
[7857] 2018-01-05 20:37:46 debug [10.10.105.40] interfaces - removed 158
interfaces
[7857] 2018-01-05 20:37:46 debug [10.10.105.40] interfaces - added 158 new
interfaces
[7857] 2018-01-05 20:37:46 debug => running workers for phase: main
[7857] 2018-01-05 20:37:46 debug -> run worker main/canonicalip/100
[7857] 2018-01-05 20:37:52 debug -> run worker main/entities/100
[7857] 2018-01-05 20:37:53 debug [10.10.105.40] modules - removed 120 chassis
modules
[7857] 2018-01-05 20:37:53 debug [10.10.105.40] modules - added 120 new
chassis modules
[7857] 2018-01-05 20:37:53 debug -> run worker main/neighbors/100
[7857] 2018-01-05 20:37:53 debug [10.10.105.40] neigh - setting manual
topology links
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.2, ID [CML-214-HGSW2.netdisco.test], on GigabitEthernet1/0/1 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.7, ID [CML-214-HFSW3.netdisco.test], on GigabitEthernet1/0/7 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.8, ID [CML-214-HFSW4.netdisco.test], on GigabitEthernet1/0/8 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.9, ID [CML-214-HFSW5.netdisco.test], on GigabitEthernet1/0/9 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.10, ID [CML-214-HFSW6.netdisco.test], on GigabitEthernet1/0/10 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.11, ID [CML-214-HFSW7.netdisco.test], on GigabitEthernet1/0/11 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.12, ID [CML-214-HFSW8.netdisco.test], on GigabitEthernet1/0/12 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.13, ID [CML-214-HFSW9.netdisco.test], on GigabitEthernet1/0/13 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.14, ID [CML-214-HFSW10.netdisco.test], on GigabitEthernet1/0/14 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.5, ID [CML-214-HFSW1.netdisco.test], on GigabitEthernet1/0/15 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.6, ID [CML-214-HFSW2.netdisco.test], on GigabitEthernet1/0/16 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.29, ID [CML-354B-HGSW1.netdisco.test], on GigabitEthernet1/0/33 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.101.252, ID [cml-3850.netdisco.test], on GigabitEthernet1/0/34 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.23, ID [CML-214-HGSW7.netdisco.test], on GigabitEthernet1/0/36 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.26, ID [CML-214-HFSW19.netdisco.test], on GigabitEthernet1/0/37 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.17, ID [CML-214-HFSW13.netdisco.test], on GigabitEthernet1/0/38 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.22, ID [CML-214-HFSW18.netdisco.test], on GigabitEthernet1/0/39 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.28, ID [CML-214-HGSW6.netdisco.test], on GigabitEthernet1/0/41 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.27, ID [CML-214-HGSW5.netdisco.test], on GigabitEthernet1/0/42 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.21, ID [CML-214-HFSW17.netdisco.test], on GigabitEthernet1/0/43 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.20, ID [CML-214-HFSW16.netdisco.test], on GigabitEthernet1/0/44 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.19, ID [CML-214-HFSW15.netdisco.test], on GigabitEthernet1/0/45 to
discovery queue
[7857] 2018-01-05 20:37:57 debug [10.10.105.40] neigh - adding neighbor
10.10.105.18, ID [CML-214-HFSW14.netdisco.test], on GigabitEthernet1/0/46 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.16, ID [CML-214-HFSW12.netdisco.test], on GigabitEthernet1/0/47 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.15, ID [CML-214-HFSW11.netdisco.test], on GigabitEthernet1/0/48 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.2, ID [CML-214-HGSW2.netdisco.test], on GigabitEthernet2/0/1 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.7, ID [CML-214-HFSW3.netdisco.test], on GigabitEthernet2/0/7 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.8, ID [CML-214-HFSW4.netdisco.test], on GigabitEthernet2/0/8 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.9, ID [CML-214-HFSW5.netdisco.test], on GigabitEthernet2/0/9 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.10, ID [CML-214-HFSW6.netdisco.test], on GigabitEthernet2/0/10 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.11, ID [CML-214-HFSW7.netdisco.test], on GigabitEthernet2/0/11 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.12, ID [CML-214-HFSW8.netdisco.test], on GigabitEthernet2/0/12 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.13, ID [CML-214-HFSW9.netdisco.test], on GigabitEthernet2/0/13 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.14, ID [CML-214-HFSW10.netdisco.test], on GigabitEthernet2/0/14 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.5, ID [CML-214-HFSW1.netdisco.test], on GigabitEthernet2/0/15 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.6, ID [CML-214-HFSW2.netdisco.test], on GigabitEthernet2/0/16 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.29, ID [CML-354B-HGSW1.netdisco.test], on GigabitEthernet2/0/33 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.101.253, ID [cml-3850-2.netdisco.test], on GigabitEthernet2/0/34 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.23, ID [CML-214-HGSW7.netdisco.test], on GigabitEthernet2/0/36 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.26, ID [CML-214-HFSW19.netdisco.test], on GigabitEthernet2/0/37 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.17, ID [CML-214-HFSW13.netdisco.test], on GigabitEthernet2/0/38 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.22, ID [CML-214-HFSW18.netdisco.test], on GigabitEthernet2/0/39 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.28, ID [CML-214-HGSW6.netdisco.test], on GigabitEthernet2/0/41 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.27, ID [CML-214-HGSW5.netdisco.test], on GigabitEthernet2/0/42 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.21, ID [CML-214-HFSW17.netdisco.test], on GigabitEthernet2/0/43 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.20, ID [CML-214-HFSW16.netdisco.test], on GigabitEthernet2/0/44 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.19, ID [CML-214-HFSW15.netdisco.test], on GigabitEthernet2/0/45 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.18, ID [CML-214-HFSW14.netdisco.test], on GigabitEthernet2/0/46 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.16, ID [CML-214-HFSW12.netdisco.test], on GigabitEthernet2/0/47 to
discovery queue
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - adding neighbor
10.10.105.15, ID [CML-214-HFSW11.netdisco.test], on GigabitEthernet2/0/48 to
discovery queue
[7857] 2018-01-05 20:37:58 debug queue - queued device 10.10.101.252 (ID:
[cml-3850.netdisco.test])
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.2 with ID
[CML-214-HGSW2.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.7 with ID
[CML-214-HFSW3.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.8 with ID
[CML-214-HFSW4.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.9 with ID
[CML-214-HFSW5.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.10 with ID
[CML-214-HFSW6.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.11 with ID
[CML-214-HFSW7.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.12 with ID
[CML-214-HFSW8.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.13 with ID
[CML-214-HFSW9.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.14 with ID
[CML-214-HFSW10.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.5 with ID
[CML-214-HFSW1.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.6 with ID
[CML-214-HFSW2.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.29 with ID
[CML-354B-HGSW1.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - queued device 10.10.101.253 (ID:
[cml-3850-2.netdisco.test])
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.23 with ID
[CML-214-HGSW7.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.26 with ID
[CML-214-HFSW19.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.17 with ID
[CML-214-HFSW13.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.22 with ID
[CML-214-HFSW18.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.28 with ID
[CML-214-HGSW6.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.27 with ID
[CML-214-HGSW5.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.21 with ID
[CML-214-HFSW17.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.20 with ID
[CML-214-HFSW16.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.19 with ID
[CML-214-HFSW15.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.18 with ID
[CML-214-HFSW14.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.16 with ID
[CML-214-HFSW12.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug queue - skip: 10.10.105.15 with ID
[CML-214-HFSW11.netdisco.test] already queued from 10.10.105.40
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] neigh - processed 50 neighbors
[7857] 2018-01-05 20:37:58 debug -> run worker main/portpower/100
[7857] 2018-01-05 20:37:58 debug [10.10.105.40] power - 0 power modules
[7857] 2018-01-05 20:37:58 debug -> run worker main/vlans/100
[7857] 2018-01-05 20:38:00 debug [10.10.105.40] vlans - removed 20 device VLANs
[7857] 2018-01-05 20:38:00 debug [10.10.105.40] vlans - added 20 new device
VLANs
[7857] 2018-01-05 20:38:00 debug [10.10.105.40] vlans - removed 0 port VLANs
[7857] 2018-01-05 20:38:00 debug [10.10.105.40] vlans - added 2061 new port
VLANs
[7857] 2018-01-05 20:38:00 debug -> run worker main/wireless/100
[7857] 2018-01-05 20:38:00 debug -> run worker main/withnodes/0
[7857] 2018-01-05 20:38:00 info discover: finished at Fri Jan 5 15:38:00 2018
[7857] 2018-01-05 20:38:00 info discover: status done: Ended discover for
10.10.105.40
[netdisco@netdisco2 ~]$ ~/bin/netdisco-do -D discover -d 10.10.3.97
[8188] 2018-01-05 20:40:19 info discover: [10.10.3.97] started at Fri Jan 5
15:40:19 2018
[8188] 2018-01-05 20:40:19 debug => running workers for phase: check
[8188] 2018-01-05 20:40:19 debug -> run worker check/_base_/0
[8188] 2018-01-05 20:40:19 debug Discover is able to run.
[8188] 2018-01-05 20:40:19 debug => running workers for phase: early
[8188] 2018-01-05 20:40:19 debug -> run worker early/properties/100
[8188] 2018-01-05 20:40:19 debug snmp reader cache warm: [10.10.3.97]
[8188] 2018-01-05 20:40:19 debug [10.10.3.97] try_connect with ver: 2, class:
SNMP::Info::Layer3::C6500, comm: <hidden>
[8188] 2018-01-05 20:40:20 debug [10.10.3.97] device - aliased as 10.10.3.97
[8188] 2018-01-05 20:40:20 debug resolving 1 aliases with max 50 outstanding
requests
[8188] 2018-01-05 20:40:20 debug [10.10.3.97] device - removed 1 aliases
[8188] 2018-01-05 20:40:20 debug [10.10.3.97] device - added 1 new aliases
[8188] 2018-01-05 20:40:20 debug -> run worker early/properties/100
[8188] 2018-01-05 20:40:20 debug [10.10.3.97] interfaces - removed 15
interfaces
[8188] 2018-01-05 20:40:20 debug [10.10.3.97] interfaces - added 15 new
interfaces
[8188] 2018-01-05 20:40:20 debug => running workers for phase: main
[8188] 2018-01-05 20:40:20 debug -> run worker main/canonicalip/100
[8188] 2018-01-05 20:40:20 debug -> run worker main/entities/100
[8188] 2018-01-05 20:40:20 debug [10.10.3.97] modules - removed 16 chassis
modules
[8188] 2018-01-05 20:40:20 debug [10.10.3.97] modules - added 16 new chassis
modules
[8188] 2018-01-05 20:40:20 debug -> run worker main/neighbors/100
[8188] 2018-01-05 20:40:20 debug [10.10.3.97] neigh - setting manual topology
links
[8188] 2018-01-05 20:40:20 debug [10.10.3.97] neigh - adding neighbor
10.10.3.202, ID [MDF-2004-HFSW8.netdisco.test], on GigabitEthernet0/10 to
discovery queue
[8188] 2018-01-05 20:40:20 debug [10.10.3.97] neigh - processed 1 neighbors
[8188] 2018-01-05 20:40:20 debug -> run worker main/portpower/100
[8188] 2018-01-05 20:40:21 debug [10.10.3.97] power - removed 1 power modules
[8188] 2018-01-05 20:40:21 debug [10.10.3.97] power - added 1 new power modules
[8188] 2018-01-05 20:40:21 debug [10.10.3.97] power - removed 0 PoE capable
ports
[8188] 2018-01-05 20:40:21 debug [10.10.3.97] power - added 8 new PoE capable
ports
[8188] 2018-01-05 20:40:21 debug -> run worker main/vlans/100
[8188] 2018-01-05 20:40:21 debug [10.10.3.97] vlans - removed 13 device VLANs
[8188] 2018-01-05 20:40:21 debug [10.10.3.97] vlans - added 13 new device VLANs
[8188] 2018-01-05 20:40:21 debug [10.10.3.97] vlans - removed 0 port VLANs
[8188] 2018-01-05 20:40:21 debug [10.10.3.97] vlans - added 60 new port VLANs
[8188] 2018-01-05 20:40:21 debug -> run worker main/wireless/100
[8188] 2018-01-05 20:40:21 debug -> run worker main/withnodes/0
[8188] 2018-01-05 20:40:21 info discover: finished at Fri Jan 5 15:40:21 2018
[8188] 2018-01-05 20:40:21 info discover: status done: Ended discover for
10.10.3.97
--- End Message ---
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Netdisco mailing list - Digest Mode
[email protected]
https://lists.sourceforge.net/lists/listinfo/netdisco-users