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

#2251
Hi,

you can try to reset admin password first (with netxmsd stopped) using nxdbmgr resetadmin command, and then try to login with admin/netxms.

Best regards,
Victor
#2252
Registered as feature request: https://dev.raden.solutions/issues/1354
#2253
Feature Requests / Re: network discovery
December 06, 2016, 11:36:45 AM
Hi,

yes, it can be done. Could be fairly easy on node level - is just another poll, like status or configuration. On a subnet level will take a bit more work, although not much.

Best regards,
Victor
#2254
Hi,

it seems that agent is not responding to the server on that machine. Please check what IP addresses are listed as MasterServers in nxagentd.conf. If you have multiple interfaces on management server make sure you list them all. Also check what is set as "primary host name" in communication properties for that node.

Best regards,
Victor
#2255
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
#2256
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
#2257
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
#2258
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
#2259
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
#2260
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
#2261
Hi,

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

Best regards,
Victor
#2262
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
#2263
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
#2264
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
#2265
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