Welcome, Guest. Please login or register.

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - mueller-dv

Pages: [1]
1
Installation / Re: Nedi writting aliases onto Extreme Switches
« on: November 03, 2022, 01:43:31 pm »
I got this working, perhaps if someone needs it i add my changes here..
As i am not a programmer, its quick and dirty...

2
GUI / CLI write
« on: October 13, 2022, 03:42:45 pm »
I am trying to use the CLI write (devwrite.pm)
to save the config on a switch.
Login and the command are working till the switch is asking me:

The configuration file primary.cfg already exists.
Do you want to save configuration to primary.cfg and overwrite it? (y/N)

How can i say "YES" in the cmd_file?

3
Installation / Nedi writting aliases onto Extreme Switches
« on: October 10, 2022, 07:39:23 am »
I am trying to get Nedi writting aliases in our extreme switches.

I have write and read snmp access working via snmpv3
I got the cfgwrt and cfgchg setup in the definition file, but they are strings with Dates.

Extreme times are in STRINGS:
https://extremeportal.force.com/ExtrArticleDetail?an=000084327

My String are looking like this:
STRING: "Fri Oct  7 10:24:55 2022
"
STRING: "Sat Oct  1 10:39:10 2022
"

I found the libmisc.pm:

elsif($v[0] eq "CfgChg")   {$sysobj{$so}{cc} = $v[1]}

v[0] is the setting in the def file = "CfgChg"
so v[1] is the "1.3.6.1.4.1.1916.1.42.1.2.1.2.1"
then {$sysobj{$so}{cc} will be:
something like:'
iso.3.6.1.4.1.1916.1.42.1.2.1.2.1 = STRING: "Tue Oct 11 13:50:09 2022
"
'

So my problem is more in libsnmp....

                                if( defined $r->{$misc::sysobj{$so}{cc}} ){
                                        if( $r->{$misc::sysobj{$so}{cc}} !~ /^\d+$/ ){
                                                misc::Prt("ERR :Config change1, $err\n","Sc");

Here my value is filtered out, as the String Date field is not compliant with what remo is doing...

Does someone has a hint for how i can add it into libsnmp?
Perhaps someone already did that?

4
Discovery / Extreme ISW LLDP
« on: April 08, 2022, 10:20:47 am »
Hi,
i tried to get a ISW_8-10100P_4-SFP running.

I am right now missing the lldp which is delivered.

when i do a discover, i get the following:

DisProtocol  ------------------------------------------------------------------  Fri Apr  8 09:59:55 2022
SNMP:Connect x.x.x.x user v3 Tout:7s MaxMS:4095 Retry:1 NB:0
ERR :LLDP Inventory The requested table is empty or does not exist
ERR :LLDP IP The requested table is empty or does not exist
DIPR:No IF with index 8 (try LLDPX or LLDPXN in .def)!

I checked for LLDPX and LLDPXN, but they do not deliver the lldp entry...
I checked with snmp and got the right answers only with lldp:

.1.0.8802.1.1.2.1.4.1.1.4.1208379.8.3: 4
.1.0.8802.1.1.2.1.4.1.1.5.1208379.8.3: "00-04-96-FD-6Z-Z3"
.1.0.8802.1.1.2.1.4.1.1.6.1208379.8.3: 5
.1.0.8802.1.1.2.1.4.1.1.7.1208379.8.3: "48"
.1.0.8802.1.1.2.1.4.1.1.8.1208379.8.3: "Uplink-Switch"
.1.0.8802.1.1.2.1.4.1.1.9.1208379.8.3: "Switch-1"
.1.0.8802.1.1.2.1.4.1.1.10.1208379.8.3: "ExtremeXOS (X440G2-48p-10G4) version 31.3.1.3 31.3.1.3-patch1-10 by release-manager on Sun Aug 29 15:25:49 EDT 2021"
.1.0.8802.1.1.2.1.4.1.1.11.1208379.8.3: "("
.1.0.8802.1.1.2.1.4.1.1.12.1208379.8.3: " "

Any hints?

5
Discovery / Backup ArubaOS-CX
« on: February 17, 2021, 09:12:28 am »
Hi Remo,

i tried to backup the config of our new ArubaOS-CX
It was not working.

So i changed in inc/libcli.pm

Old:
$cmd{'ArubaOS'}{'cfst'} = '^version';

New Working:
$cmd{'ArubaOS'}{'cfst'} = 'Version';

Perhaps it is not good for compatibility, but it works...

6
GUI / NeDi Monitoring Events
« on: November 22, 2018, 10:16:51 am »
Hi there,

i have a problem and i hope someone can help me..
I got some hp switches, when they restart (perhaps poweroutage or whatever...)
the start their time at 1/1/90.

Now there happens some warning issues and then the ntp time gets running and the time from the switch changes to the correct time.
In nedi i cannot find the error messages, i think because of the time.

Is there a possiblity to get events shown from today date and 1/1/90?

Pages: [1]