Welcome, Guest. Please login or register.

Recent Posts

Pages: 1 2 [3] 4 5 ... 10
21
Database / Re: FortiGate backup
« Last post by rickli on August 09, 2024, 10:41:38 am »
Ugh 20Gig??? I'm afraid it's not designed to handle this...
22
Installation / Re: Problems with NeDi 2.3C and PHP 8.0 / 8.1
« Last post by rickli on August 09, 2024, 10:40:42 am »
At the beginning of a -v discovery, do you see this?

CLI :IO-Pty loaded
23
Installation / Re: Problems with NeDi 2.3C and PHP 8.0 / 8.1
« Last post by cmesser on August 06, 2024, 03:05:45 pm »
Hi,

I have a simmilar problem here.
I just setup a new host with Rocky Linux 8 and  with NeDi 2.3C
Running the discovery always comes up with CLI Port 23.
If I doing a:

/var/nedi/nedi.pl -vvvkK -B0 -SAFGgsjmvpadobewitu -a "hostname"

I get the following output in the CLI section:

Prepare (CLI)  ----------------------------------------------------------------  Tue Aug  6 14:47:19 2024
TEL :Connect NeDi_Service@10.11.79.1:23 Tout:2s OS:IOS EN:[\w+().-]+#\s?$
TEL :Connect dcnm@10.11.79.1:23 Tout:2s OS:IOS EN:[\w+().-]+#\s?$
EVNT:MOD=B/1 L=150 CL=cfge TGT=c02bhl08u32-rk01 MSG=Config backup error: can't start session

I already tried to set "usessh     always", but that didn't help.

Regards, Christoph
24
Database / FortiGate backup
« Last post by sjobergh on July 23, 2024, 01:08:25 am »
We have large configuration files on our fortigate VDOM firewalls.  Some of them are 20 Gb.   By changing some parameters in libmisc.pm, we have managed to backup them.  But when we search in "noodle" for example, it seems that "noodle" stops searching when it gets to the large backup files.. Does anyone have an idea how to solve it
26
GUI / images in topology floors or racks pages
« Last post by networkbo on July 06, 2024, 04:04:46 pm »
Hi all,
I use NEDI 2.1.071.
If I load images in html/topo folder, I can see them in building page. Is it possible to have images in floor or rack page?
27
Installation / Re: Problems with NeDi 2.3C and PHP 8.0 / 8.1
« Last post by ggessler on June 07, 2024, 11:45:55 am »
Hi Rickli,

sorry for the late reply, I was out on vacation.
Yes, I have tried this already several times. Also changed the CLI port in the database to 22 to ensure that SSH is used - but this did not change anything here.

Cheers, Gerhard
28
Discovery / Re: No ARP table data collected from PaloAlto firewalls
« Last post by ruehlb on June 03, 2024, 06:38:27 pm »
My alternatives for finding a solution for this were not working out so I circuled back to see if I could find a resolution on my own. I think I have figure out part of the problem, not sure if it is the fix for everything yet. In the file /var/nedi/inc/libcli.pm, starting at line 1285, it appears the columns are off by 1. This is what the file has:

Code: [Select]
}elsif( $main::dev{$na}{os} eq 'PANOS' ){                                       # Palo Alto FW
    $ix = 0;
    $mx = 1;
    $px = 2;
}

Looking at the output of the CLI on a Palo Alto, these identifiers are incorrect. They are 1 column off. The correct code should be:

Code: [Select]
}elsif( $main::dev{$na}{os} eq 'PANOS' ){                                       # Palo Alto FW
    $ix = 1;
    $mx = 2;
    $px = 3;
}

Once I changed these variables, when I run the "Discover Now", there is a full arp table discovered on the device. Being this is in a lab environment, I don't have further equipment discovered to see if this fixes everything. I am going to test with a couple more devices and see if this is the full fix.
29
Discovery / Re: No ARP table data collected from PaloAlto firewalls
« Last post by ruehlb on May 22, 2024, 02:30:52 pm »
I agree. I have seen these pauses as well, primarily with config collection. One change I have made to accommodate for that is up the SNMP timeout to 10 seconds which allows for the collection of data. This appears to be different. When using the "Discover Now" button on the device, there is a couple second pause only at the login section. The CLI commands flow by with no hesitation. It is almost like the output is not matching what is expected therefor resulting in a 0 count table. I have tried to decipher the language in inc/libcli.pm but since coding is not my strong point, I can't for sure determine if that is the issue. My thought was if the CLI output changed at some point and the table is displayed differently than what is expected.
30
Discovery / Re: No ARP table data collected from PaloAlto firewalls
« Last post by rickli on May 21, 2024, 10:30:09 am »
I noticed different behavior (like very long pauses) on some devices when NeDi connects with SSH. Strangely enough a user can connect manually without any issues...
Pages: 1 2 [3] 4 5 ... 10