Send netdisco-users mailing list submissions to
        netdisco-users@lists.sourceforge.net

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
        netdisco-users-requ...@lists.sourceforge.net

You can reach the person managing the list at
        netdisco-users-ow...@lists.sourceforge.net

When replying, please edit your Subject line so it is more specific
than "Re: Contents of netdisco-users digest..."
Today's Topics:

   1. Re: Netdisco with Meraki (Oliver Gorwits)
   2. Re: Adding Aruba SDWAN/Silverpeak MIBS into netdisco (Muris)
--- Begin Message ---
Many thanks Jeremiah! This has been added to SNMP::Info for the next
release.

On Fri, 26 Apr 2024 at 15:32, Jeremiah Garmatter <j-garmat...@onu.edu>
wrote:

> Thanks for the input Michael, I saw some of your other posts while
> reviewing the netdisco-user archives. It's a shame Meraki hasn't corrected
> their issues after all this time.
>
> Sure thing Oliver, see below for my additions to Info.pm and the contents
> of Meraki.pm. I can get the MAC addresses from each port but I don't get
> VLANs, which would be nice to have.
>
>
> Info.pm:
> --Around line 1750--
>     my %l3sysoidmap = (
>         29671 => 'SNMP::Info::Layer3::Meraki',    <------ Right here,
> obtained from an archived netdisco-user email.
>         9     => 'SNMP::Info::Layer3::CiscoSwitch',
> --Around line 1900--
>         $objtype = 'SNMP::Info::Layer3::C3550' if $desc =~ /(C3550|C3560)/;
>         $objtype = 'SNMP::Info::Layer3::C4000' if $desc =~ /Catalyst
> 4[05]00/;
>         $objtype = 'SNMP::Info::Layer3::Foundry' if $desc =~ /foundry/i;
>         $objtype = 'SNMP::Info::Layer3::ERX' if $desc =~ /erx/i;
>
>         # Meraki MS3*  <-------- Right here, match the description with
> any of our Meraki devices (MS390 and 355).
>         $objtype = 'SNMP::Info::Layer3::Meraki'
>           if $desc =~ /^Meraki\sMS3/;
>
>         # Aironet - older non-IOS
>         $objtype = 'SNMP::Info::Layer3::Aironet'
>
> Created Meraki.pm:
> # I whipped this up from the suggestions in the included link and other pm
> files.
> # https://sourceforge.net/p/netdisco/mailman/message/37257000/
> # - custom addition 4/25/24
>
> package SNMP::Info::Layer3::Meraki;
>
> use strict;
> use warnings;
> use Exporter;
> use SNMP::Info::Layer3;
>
> @SNMP::Info::Layer3::Meraki::ISA       = qw/SNMP::Info::Layer3 Exporter/;
> @SNMP::Info::Layer3::Meraki::EXPORT_OK = qw//;
>
> our ($VERSION, %GLOBALS, %MIBS, %FUNCS, %MUNGE);
>
> $VERSION = '3.970001';
>
> %MIBS = (
>     %SNMP::Info::Layer2::MIBS, %SNMP::Info::Layer3::MIBS,
> );
>
> %GLOBALS = (
>     %SNMP::Info::Layer2::GLOBALS, %SNMP::Info::Layer3::GLOBALS,
> );
>
> %FUNCS = ( %SNMP::Info::Layer2::FUNCS, %SNMP::Info::Layer3::FUNCS, );
>
> %MUNGE = ( %SNMP::Info::Layer2::MUNGE, %SNMP::Info::Layer3::MUNGE, );
>
> sub layers {
>     return '00000110';
> }
>
>
>
> <https://www.google.com/url?q=https://onu.edu&source=gmail-html&ust=1674828335432000&usg=AOvVaw28_De1JtB-AXSBY3ffLqIg>
> <https://www.google.com/url?q=https://www.instagram.com/ohionorthern/?hl%3Den&source=gmail-html&ust=1674828335432000&usg=AOvVaw2T5Mr7Skb1malhmRz_e6L7>
> <https://www.google.com/url?q=https://www.facebook.com/OhioNorthern/&source=gmail-html&ust=1674828335432000&usg=AOvVaw3nAxUn3wIQnybVvpceEIDC>
> <https://www.google.com/url?q=https://twitter.com/ohionorthern?ref_src%3Dtwsrc%255Egoogle%257Ctwcamp%255Eserp%257Ctwgr%255Eauthor&source=gmail-html&ust=1674828335432000&usg=AOvVaw2gJCHRWcjlGtZi5ft71zQz>
> <https://www.google.com/url?q=https://www.youtube.com/channel/UCvdGjbOWVUkVJZVm0l-px7g&source=gmail-html&ust=1674828335432000&usg=AOvVaw1nIUlB6-a3l6ENfFlK-WfL>
> *Jeremiah Garmatter*
> Linux Systems Administrator
> Office of Information Technology
> IT Building 107
> 419-772-1074
> j-garmat...@onu.edu
>
>
> On Fri, Apr 26, 2024 at 5:36 AM Oliver Gorwits <oli...@cpan.org> wrote:
>
>> Hi Jeremiah!
>>
>> Many thanks for getting in touch. Are you able to share the modifications
>> to Info.pm and Meraki.pm that you made in order to get the macsuck and
>> arpnip working?
>>
>> Also did the macsuck and arpnip work enough so you are OK with the
>> results, or is more still missing?
>>
>> (honestly, as others have said, the Meraki support is difficult for SNMP,
>> so it might never be complete, and we could consider alternatives later
>> such as CLI scraping or APIs)
>>
>> Kind regards,
>> Oliver.
>>
>> On Thu, 25 Apr 2024 at 19:32, Jeremiah Garmatter <j-garmat...@onu.edu>
>> wrote:
>>
>>> Hello,
>>>
>>> We recently added a few Meraki MS switches to our network.
>>> After reviewing some archived emails regarding Meraki I have come to the
>>> conclusion that Meraki and SNMP-based monitoring tools are not very
>>> compatible. I have issues with both Netdisco and another tool, Cacti,
>>> regarding only the Meraki devices.
>>>
>>> That being said, I was able to perform a macsuck and arpnip after
>>> following the instructions within an archived email. I had to modify the
>>> ~netdisco/perl5/lib/perl5/SNMP/Info.pm file and create a
>>> ~netdisco/perl5/lib/perl5/SNMP/Info/Layer3/Meraki.pm file.
>>>
>>> I can't help but feel that I hacked the solution together from the
>>> emails and other Layer3 device files. I am not very confident in this
>>> approach since I don't know much about the inner workings of Netdisco or
>>> the Perl files.
>>>
>>> I am curious if anyone else has created their own "Meraki.pm" kind of
>>> file and if you would be willing to share it.
>>>
>>> <https://www.google.com/url?q=https://onu.edu&source=gmail-html&ust=1674828335432000&usg=AOvVaw28_De1JtB-AXSBY3ffLqIg>
>>> <https://www.google.com/url?q=https://www.instagram.com/ohionorthern/?hl%3Den&source=gmail-html&ust=1674828335432000&usg=AOvVaw2T5Mr7Skb1malhmRz_e6L7>
>>> <https://www.google.com/url?q=https://www.facebook.com/OhioNorthern/&source=gmail-html&ust=1674828335432000&usg=AOvVaw3nAxUn3wIQnybVvpceEIDC>
>>> <https://www.google.com/url?q=https://twitter.com/ohionorthern?ref_src%3Dtwsrc%255Egoogle%257Ctwcamp%255Eserp%257Ctwgr%255Eauthor&source=gmail-html&ust=1674828335432000&usg=AOvVaw2gJCHRWcjlGtZi5ft71zQz>
>>> <https://www.google.com/url?q=https://www.youtube.com/channel/UCvdGjbOWVUkVJZVm0l-px7g&source=gmail-html&ust=1674828335432000&usg=AOvVaw1nIUlB6-a3l6ENfFlK-WfL>
>>> *Jeremiah Garmatter*
>>> Linux Systems Administrator
>>> Office of Information Technology
>>> IT Building 107
>>> 419-772-1074
>>> j-garmat...@onu.edu
>>> _______________________________________________
>>> Netdisco mailing list
>>> netdisco-users@lists.sourceforge.net
>>> https://sourceforge.net/p/netdisco/mailman/netdisco-users/
>>
>> _______________________________________________
> Netdisco mailing list
> netdisco-users@lists.sourceforge.net
> https://sourceforge.net/p/netdisco/mailman/netdisco-users/

--- End Message ---
--- Begin Message ---
Thanks oliver, but to make those mibs work it really needs the silverpeak snmp
Info module will you release that also?

I want to update to latest netdisco but waiting when you update snmp info, otherwise i have to hack the files.


On 28 Aug 2024, at 16:24, Oliver Gorwits <oli...@cpan.org> wrote:


Hi Muris, thanks for your patience, I've added the updated MIBs to the repo (and will release soon, maybe today)

On Mon, 22 Jul 2024 at 17:35, Muris <alcat...@gmail.com> wrote:

Hey Oliver, I just wanted to let you know I got the integration working with Silverpeak and the code for it, its on the github page.

 

Are you able to integrate this in the next update of netdisco and with updated version 9.5 of the mibs?

 

https://github.com/user-attachments/files/16327192/mibs-9.5.zip

 

Many thanks

 

Muris

 

From: Muris <alcat...@gmail.com>
Date: Monday 22 July 2024 at 12:08
To: Oliver Gorwits <oli...@cpan.org>, <netdisco-users@lists.sourceforge.net>
Subject: Re: [Netdisco] Adding Aruba SDWAN/Silverpeak MIBS into netdisco

 

Hey, just to let you know I have been working on writing the SNMP info for silverpeak integration, but I feel im almost there but I feel I am missing something for netdisco to pick it up fully.

 

Ive put up my code and testing on https://github.com/netdisco/snmp-info/issues/524

 

I feel I am just missing a bit to get it working and picked up into netdisco, feel free to review the code.

 

Muris

 

From: Muris <alcat...@gmail.com>
Date: Wednesday 21 February 2024 at 17:32
To: Oliver Gorwits <oli...@cpan.org>, <netdisco-users@lists.sourceforge.net>
Subject: Re: [Netdisco] Adding Aruba SDWAN/Silverpeak MIBS into netdisco

 

Hey Oliver, I also just remembered about this one, I know you added the Aruba/Silverpeak Mibs for it, but it still says “unknown enterprises”

 

Example below screenshot – is there a way to troubleshoot this why it’s not using those additional Mibs?

 

Just would like these devices to be classified properly for vendor/model as it doesn’t seem to reference still anything from the Mibs. Im really keen to get it showing correctly like all other devices.

 

<image001.jpg>

 

From: Muris <alcat...@gmail.com>
Date: Tuesday, 29 August 2023 at 17:37
To: Oliver Gorwits <oli...@cpan.org>, <netdisco-users@lists.sourceforge.net>
Subject: Re: [Netdisco] Adding Aruba SDWAN/Silverpeak MIBS into netdisco

 

Hi Oliver, thanks for adding the MIBS support.

 

I updated to the latest netdisco with the mibs, but still it cant classify the silverpeak devices, it still comes up as “unknown enterprises” for many of them.

 

Is there some troubleshooting I can execute on command to see whats going on and if its mapping it to mibs or something?

 

Thanks

Muris

 

From: Oliver Gorwits <oli...@cpan.org>
Date: Tuesday, 27 June 2023 at 17:22
To: Muris <alcat...@gmail.com>, <netdisco-users@lists.sourceforge.net>
Subject: Re: [Netdisco] Adding Aruba SDWAN/Silverpeak MIBS into netdisco

 

Hi Muris, sure I will take a look at the ticket, many thanks,

Oliver.

 

On Thu, 22 Jun 2023 at 21:18, Muris <alcat...@gmail.com> wrote:

Hey oliver was also just going to ask would it please be possible if you could add these to the mibs dir when you have a moment ?

Have uploaded the zip a little while ago in that issues URL
 

Thanks in advance

 

On 17 May 2023, at 22:00, Muris <alcat...@gmail.com> wrote:



Hi Oliver, just wanted to ask if you would be able to integrate these Aruba/Silverpeak MIBS into netdisco, I have attached them a few months ago.

 

We have number of these devices and having these mibs working would be great, right now majority report as “unknown enterprises” etc

 

From: Muris <alcat...@gmail.com>
Date: Friday, 10 March 2023 at 22:00
To: Oliver Gorwits <oli...@cpan.org>
Cc: "netdisco-users@lists.sourceforge.net" <netdisco-users@lists.sourceforge.net>
Subject: Re: [Netdisco] Adding Aruba SDWAN/Silverpeak MIBS into netdisco

 

Thanks Oliver, have done and put it there

 

From: Oliver Gorwits <oli...@cpan.org>
Date: Friday, 10 March 2023 at 21:33
To: Muris <alcat...@gmail.com>
Cc: "netdisco-users@lists.sourceforge.net" <netdisco-users@lists.sourceforge.net>
Subject: Re: [Netdisco] Adding Aruba SDWAN/Silverpeak MIBS into netdisco

 

Hi Muris

 

Sure, please would you kindly open a ticket here on the netdisco-mibs repository: https://github.com/netdisco/netdisco-mibs/issues

 

Even better, if you can download the MIBs and attach them, please, because Netdisco devs do not have a contract with Aruba to do that.

 

Kind regards

Oliver.

 

On Fri, 10 Mar 2023 at 10:19, Muris <alcat...@gmail.com> wrote:

Hey guys, I was wondering if someone would be able to add the following Aruba SDWAN/Silverpeak mibs into the base netdisco?

 

https://www.arubanetworks.com/website/techdocs/sdwan-PDFs/mibs/mibs-9.2.zip

 

 

Originally from this link

https://www.arubanetworks.com/techdocs/sdwan/mibs/

 

Thanks

Muris

_______________________________________________
Netdisco mailing list
netdisco-users@lists.sourceforge.net
https://sourceforge.net/p/netdisco/mailman/netdisco-users/


--- End Message ---
_______________________________________________
Netdisco mailing list - Digest Mode
netdisco-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/netdisco-users

Reply via email to