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

#6001
A pochemu internal? Eto ved' parametr agenta, t.e. dolzen bit' origin "agent".
#6002
A configuration poll delasli posle dobavlenija subagenta?
#6003
Skoree vsego nado postavit' esche postgresql-devel-8.4.4-2PGDG.el5. amaja bol'shaja zagadka dlja menja - kak eto vse moglo ran'she sobiratsja. libpq nuzen vsegda - eto POstgreSQL client, trebovanie eto ne menjalos', configure po chasti detecta postgresa - toze.
#6004
General Support / Re: Downgrade database
May 20, 2011, 10:10:13 AM
No ready to use script. I have to create one. Could you please try my posted patch first, and if it will not help, I'll create downgrade script.

Best regards,
Victor
#6005
General Support / Re: NetXMS sever 1.1.1 crash
May 20, 2011, 10:08:39 AM
Looks like I've found this leak (at least one of them, if there are many). Could you please replace file src/server/code/node.cpp with attached one and recompile the server?

Best regards,
Victor
#6006
Hi!

If you choose to download config from server, agent sends request for configuration file to server when it starts. Each config stored on server has filtering script associated with it. Server runs those filtering scripts one by one until one of them returns true, then associated config is sent back to agent. Filtering script receives the following information for evaluation:

$1 - agent's IP address
$2 - platform name (like "windows-i386")
$3 - agent's major version number
$4 - agent's minor version number
$5 - agent's release number

For example, filtering script for all Windows agents with version >= 1.1.0 will looks like following:

return ($2 like "windows-*") && ($3 >= 1) && ($4 >= 1);

Best regards,
Victor
#6007
General Support / Re: Export/Import
May 19, 2011, 11:23:46 PM
Unfortunately events, templates, and traps are only exportable entities so far.

Best regards,
Victor
#6008
General Support / Re: Object Tools
May 19, 2011, 11:22:45 PM
Actually there are only 3 variables:

%OBJECT_IP_ADDR% - object's IP address;
%OBJECT_NAME% - object's name
%OBJECT_ID% - object's unique ID

Best regards,
Victor
#6009
General Support / Re: Cisco Stackport
May 19, 2011, 11:20:41 PM
Hi!

Can you please send me output of command

nxsnmpwalk -c snmp_community  switch_ip_address .1.3.6.1.2.1.2

Best regards,
Victor
#6010
General Support / Re: NetXMS sever 1.1.1 crash
May 19, 2011, 11:18:11 PM
I can reproduce this issue on my server. Looks like file handle leak in the server. I'll try to fix this till Monday.

Best regards,
Victor
#6011
Hi!

Can you please switch server to debug level 5, do topology poll, and send me debug log? In version 1.1.1, you can do this without stopping server:

1. In management console, connect to server's system console - select Tools->Server Console
2. Enter "debug 5" command
3. Do forced topology poll on the switch in question
4. Turn off debug by typing "debug off" in server's system console

You can either post log here or send it to [email protected].

Best regards,
Victor
#6012
A gde v sisteme nahoditsja libpq.so?
#6013
General Support / Re: Filter Script
May 17, 2011, 03:32:25 PM
Hi!

Correct script will be

sub main()
{
  return AddrInSubnet($1->ipAddr,"xxx.xxx.xxx.xxx","255.255.255.0") ||
     AddrInSubnet($1->ipAddr,"xxx.xxx.xxx.xxx","255.255.255.0");
}

or simply

return AddrInSubnet($1->ipAddr,"xxx.xxx.xxx.xxx","255.255.255.0") ||
    AddrInSubnet($1->ipAddr,"xxx.xxx.xxx.xxx","255.255.255.0");

You have to enter full name of the script, like Filter::xxx.

Best regards,
Victor
#6014
Prishlite pozalujsta config.log, mozno na [email protected].
#6015
General Support / Re: Filter Script
May 17, 2011, 11:50:56 AM
Can you post your script?

Best regards,
Victor