Menu

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.

Show posts Menu

Messages - Victor Kirhenshtein

#2281
Hi,

are those nodes related somehow (proxy, source node for DCI, same zone)?

Best regards,
Victor
#2282
Hi,

currently agent send traps only to servers listen as master servers - which is probably wrong. I cannot remember what was behind this decision. I can change it in next release.

Best regards,
Victor
#2283
Hi,

server supposed to handle deletion correctly and do not leave unparented objects. This is a known bug and it will be fixed eventually. There is also a registered issue for improving database check (https://dev.raden.solutions/issues/1335) - will be fixed during 2.1 development. You can leave it as is for now - references to non-existent objects are not read from database so the only consequence are errors being reported on server startup.

Best regards,
Victor
#2284
Hi,

just add appropriate error checking:


snmp = CreateSNMPTransport($node);
if (snmp == null)
   return false; // node does not support SNMP or transport cannot be created
ifName = SNMPGetValue(snmp, ".1.3.6.1.2.1.2.2.1.2." . $1);
if (ifName == null)
   return false; // cannot read from node
ifXName = SNMPGetValue(snmp, ".1.3.6.1.2.1.31.1.1.1.18." . $1);
if (ifXName != null)
{
   ifName .= " " . ifXName;
}
if (ifName ~= "Loopback.*") {
return %(false, $1, ifName);
} else {
return %(true, $1, ifName);
}


Best regards,
Victor
#2285
General Support / Re: Multiple DCIs Missing
November 28, 2016, 12:55:29 PM
Hi,

what NetXMS version you are running? Are those DCIs collected from agents? If yes, are you using cache mode on agents?

Best regards,
Victor
#2286
Announcements / NetXMS 2.0.7 released
November 28, 2016, 12:50:44 PM
Hi all,

NetXMS version 2.0.7 is released. It is another patch release for stable 2.0 branch, and likely last release for this branch. Changes since release 2.0.6 are following:

- Number of polls can be set for "diff" type thresholds
- New method "enableDiscoveryPolling" in NXSL class "Node"
- New NXSL functions: AgentExecuteAction, GetAllNodes
- NXSL functions GetNodeInterfaces, GetNodeTemplates, GetNodeParents, GetObjectChildren returns correct object classes
- Instance discovery scripts can return instances as map instance/instance name
- SMS driver for Nexmo service
- SMS driver for SMSEagle gateway
- SMS driver for MyMobile service
- H3C driver correctly reads IPv6 addresses on interfaces
- Added support for CHAP, MS-CHAPv1, and MS-CHAPv2 in RADIUS authentication
- Fixed FreeBSD 11 compatibility issues
- Fixed excessive memory consumption by web UI in some situations
- Fixed server crash when changing scheduled tasks
- Fixed various minor UI glitches
- Fixed issues: #1090

Best regards,
Victor

#2287
Hi,

there was a bug in text2reach driver build, so reference to libcurl was not added to driver's binary. It was fixed in version 2.1-M1 and upcoming 2.0.7. As workaround you can pre-load libcurl before starting netxmsd.

Best regards,
Victor
#2288
Hi,

check if libcurl is installed and what version.

Best regards,
Victor
#2289
Hi,

there are also driver for text2reach (http://www.text2reach.com/?language=en).

Best regards,
Victor
#2290
General Support / Re: v2.1-M1 upgrade problem
November 17, 2016, 09:53:32 AM
Hi,

please run nxdbmgr upgrade with -t option and post output.

Best regards,
Victor
#2291
General / Re: Asking for french translation
November 10, 2016, 10:20:10 AM
Hi,

for menus and buttons & character precedes letter that will be used as keyboard shortcut. So for example text

Show &object details

will be displayed as

Show object details

and letter "o" will be keyboard shortcut (and depending on the system will be underlined).

It is better to use existing shortcuts when possible as they are non-overlapping - but if not possible you can choose different shortcuts - it can be fixed later.

Best regards,
Victor
#2292
General Support / Re: Find MAC/IP - where does it search?
November 10, 2016, 10:14:24 AM
Hi,

search for MAC address works only using FDB on switches - so if you don't have your switches in the system it won't find anything. If you do have switches managed by NetXMS, than it is probably a bug. In that case, could you please show FDB for the switch where this node actually connected?

Best regards,
Victor
#2293
Hi,

1) currently no;

2) it is known issue that should be solved in 2.1 (and possibly in 2.0.7).

Best regards,
Victor
#2294
General Support / Re: same threshold on multiple dci
November 10, 2016, 09:45:19 AM
Hi,

in second PostEvent you pass DCI name as tag, not as first event parameter. You have to insert null there (as in first PostEvent call).

Best regards,
Victor
#2295
Это баг. Исправили репозиторий.