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

#3151
Announcements / Re: NetXMS 2.0-M3 released
April 13, 2015, 09:14:15 PM
Quote from: djex81 on April 13, 2015, 06:57:32 PM
Quote from: djex81 on April 11, 2015, 02:20:22 AM
Hi Victor, in this new update you fixed the broken SNMP in agents and that works great but now I am unable to use SNMP from the server netxms is installed on. It was working in version 2.0-M2. What happens is this:

1. I do a configuration poll on the netxms server node. SNMP is connected to and values read.
2. I try to do a SNMP walk from netxms on the local netxms server node and it fails or gives no results back.
3. If I then do another configuration poll on the netxms server node SNMP fails and isn't found.

I know SNMP works as I can SNMP walk with a separate program without any issues. I tried deleting the netxms server node and having it recreate it self but that did not help. Could it be something to do with the new IPv6 interfaces in this new version?

Basically, SNMP is working for all other nodes except the node netxms server is installed on.

To add to my previous post quoted above when I do a status poll on the netxms server node SNMP errors with:

[13.04.2015 11:50:24] Checking SNMP agent connectivity
[13.04.2015 11:50:32] SNMP agent unreachable

The SNMP agent is local so I'm not sure why it's unreachable. I can sometimes get it to connect to SNMP but most of the time it will not. I find if I am able to connect and I try to do a SNMP walk from netxms it will loose SNMP connection and return no results. I have had it return results successfully but only a few times. What debug level should I use so I can check the logs? I tried debug 7 but I couldn't see much in the way of SNMP errors.

What address you have set as primary host name for management server node? Can you do nxsnmpwall on that address?

Best regards,
Victor
#3152
Hi,

seems that I have to fix upgrade procedure for MS SQL. I'll try to reproduce it later today and make a fix for database manager.

Best regards,
Victor
#3153
Hi!

NetXMS server can support 10k nodes (and even more). Server process itself will consume significant amount of memory (can be few gigabytes) but should not put high load on CPU. It can generate lot of network traffic, but you can control it by choosing longer polling intervals for less important information. Most load will be on database - there will be tenths of thousands of tables (NetXMS creates 4 database tables for each monitored node) with lot of inserts. You should be able to fine tune database of your choice.
From the practical experience, I personally do not know installations of 10k nodes, but one of our customers (which we provide with technical support) runs system that monitors about 3k nodes, and it runs on single Linux server (with secondary server on cold standby with database synchronized) with 8GB RAM and quad core CPU and PostgreSQL as backend database (located on same server).

Best regards,
Victor
#3154
А что он там показывает? Пустоту? Можно скриншоты в UP и v DOWN для одного и того-же интерфейса?
#3155
Hi,

do you have portcheck subagent loaded on agent running on management server? Can you please share your nxagentd.conf from your management server?

Best regards,
Victor
#3156
Hi,

can you please show me your agent config and content of registry entries under HKEY_USERS\.DEFAULT\Software\NetXMS\LogParserLibrary (assuming you run agent under Local System account - otherwise check same registry path under appropriate user)?

Best regards,
Victor
#3157
General Support / Re: Windows Event Log parser
April 13, 2015, 09:51:17 AM
Hi,

would be nice if you registered it as feature request - then it will not be forgotten again :) I will schedule it for next release.

Best regards,
Victor
#3158
Announcements / Re: NetXMS 2.0-M3 released
April 12, 2015, 08:45:34 PM
Hi,

I fixed ping subagent. You can try to replace ping.cpp and ping.h in src/agent/subagents/ping with attached ones and recompile agent. As side effect, it should also work correctly with IPv6 targets (IPv6 addresses in config should be enclosed in square brackets).

Best regards,
Victor
#3159
Hi,

your request should be

intranet.website.com:/testDB.php

(without http:// prefix). Also, there is a typo in response regexp, likely it should be

^HTTP/1\.[01] 200.*OK.*

(note the dot before second asterisk) - otherwise it will match anything with just letter O.

Best regards,
Victor
#3160
General Support / Re: Website monitoring issue
April 10, 2015, 04:15:50 PM
Hi,

try to increase value for server configuration parameter AgentCommandTimeout (it defines how long server will wait for response from agent, in milliseconds).

Best regards,
Victor
#3161
Добавил изменение в драйвере и Object Tools в текущий development branch.
#3162
Announcements / Re: NetXMS 2.0-M3 released
April 10, 2015, 03:14:43 PM
I've fixed broken WoL. If you are building from sources you can replace line 993 in file src/server/core/interface.cpp from


         UINT32 destAddr = htonl(addr.getAddressV4() | ~(0xFFFFFFFF << addr.getMaskBits()));


to


         UINT32 destAddr = htonl(addr.getAddressV4() | ~(0xFFFFFFFF << (32 - addr.getMaskBits())));


and recompile server.

Best regards,
Victor
#3163
Announcements / Re: NetXMS 2.0-M3 released
April 10, 2015, 02:18:44 PM
Hi,

seems that all of those related to changes in IP address handling. Are you using IP addresses or DNS names in PING subagent?

Best regards,
Victor
#3164
Test OID must be readable with GET (nxsnmpget should return value), so 1.3.6.1.2.1 will not work. Try to specify .1.3.6.1.2.1.1.3.0 (don't forget leading dot).

Best regards,
Victor
#3165
Announcements / Re: NetXMS 2.0-M3 released
April 09, 2015, 11:41:58 AM
Yes, there was a bug in installer. I just uploaded updated installer to the web site.

Best regards,
Victor