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 - vias79

Pages: [1]
1
Discovery / Re: Customizing the "Discover Now" button
« on: February 19, 2019, 03:59:51 pm »
Necroing an old thread, after todays update to 1.9 we had this problem again. I now fixed it via:

Row 78 in nedi/html/System-NeDi.php: $cmd .= " -F $arg";

2
Discovery / Customizing the "Discover Now" button
« on: June 09, 2017, 12:46:47 pm »
Wanted to share my quick fix to be able to customize the Discover Now button inside a device:

Our problem is that we use dots in our hostnames, vil1.ds1 would become a new unit named vil1when issuing a discover now to check if the defgen worked fine.

Adding -F omitts this problem in the cronjob, but how to edit this button? Nowhere in the GUI does this seem possible.

Luckily we can fix this with some easy editing:

On row 55 in the file 'nedi/html/System-NeDi.php' add your options:

Example:

Change:
 }elseif($mde == "d"){
         $arg = '';

To:
 }elseif($mde == "d"){
         $arg = 'F';


Hopefully we can get this editable via GUI in a future release?

Pages: [1]