News:

We really need your input in this questionnaire

Main Menu
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

#2296
General Support / Re: Server Configuration - restart
December 06, 2016, 11:31:26 AM
Hi,

it shows if you have to restart netxmsd to put changes in particular configuration parameter into effect.

Best regards,
Victor
#2297
Hi,

yes, if script returns false instance will be deleted. Currently there is no way to stop instance discovery by aborting filter script.

There is feature request for adding "grace period" for instances being deleted: https://dev.raden.solutions/issues/976. I think implementing it should solve your problem.

Best regards,
Victor
#2298
Hi,

currently vmgr subagent is available only for Linux. It is build using libvirt which is not properly ported to Windows (some older versions was, but not current version). We will work on Windows port as well, but currently you have to use Linux machine.

Best regards,
Victor
#2299
General Support / Re: no new network creation
December 06, 2016, 11:17:55 AM
Hi,

yes, for /32 subnets are not created. Those are nodes without agent or SNMP, right? Do you have some subnets that are close to addresses discovered? If yes, what subnets?

Best regards,
Victor
#2300
Hi,

do you have source node set for this DCI? Part of agent database that you show - is it from correct node or from node where this DCI should not be?

Best regards,
Victor
#2301
Hi,

what you mean by "cannot generate L2 map"? If you create new map with type "layer 2" and seed node set to your central router, what you will get on that map?

Best regards,
Victor
#2302
Hi,

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

Best regards,
Victor
#2303
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
#2304
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
#2305
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
#2306
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
#2307
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

#2308
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
#2309
Hi,

check if libcurl is installed and what version.

Best regards,
Victor
#2310
Hi,

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

Best regards,
Victor