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

#5716
General Support / Re: alarm actions
November 10, 2011, 04:14:39 PM
Hi!

Acknowledged alarm will remain in list of active alarms, but in "acknowledged" state. Terminated alarm will be removed from active alarm list. Main idea behind this is to provide mechanism for operators to inform each other that problem do exist, but somebody already aware of it and working on it.

Best regards,
Victor
#5717
General Support / Re: Agent Configuration
November 09, 2011, 05:40:01 PM
Filtering script always should have a body. If you don't need filtering, just use


return true;


Best regards,
Victor
#5718
General Support / Re: Agent Configuration
November 09, 2011, 03:45:28 PM
It is ok to have comments this way in the script. The problem is probably due to either bug in NXSL interpreter, or some typo (or maybe non-printable character) in filtering script. You can also try to copy script into file and try to execute it with nxscript.

Best regards,
Victor
#5719
General Support / Re: NetXMS cannot read first interface
November 09, 2011, 03:38:53 PM
Hi!

The problem is that your device reports loopback address 127.0.0.1 on physical port. NetXMS ignores loopback interfaces when read interface list. I'll made a fix for that in next release.

Best regards,
Victor
#5720
General Support / Re: Agent Configuration
November 09, 2011, 03:37:15 PM
Hi!

It's error in filtering script, not a config itself. How your filtering script for config looks like?

Best regards,
Victor
#5721
Hi all!

Attached is a configuration with data collection template and SNMP trap mapping for Nortel (now Avaya) Wireless Security Switches.

Best regards,
Victor
#5722
Announcements / NetXMS 1.1.6 released
November 09, 2011, 02:00:21 PM
Hi all!

NetXMS version 1.1.6 is out. Changes from previous release:

- Added possibility to run different subagents under different user accounts (currently supported only under Windows)
- Improved work with 802.1x capable switches
- New MIBs added: EF-6000-MIB, ES-1000-MIB, IBM-6611-APPN-MIB, IBM-MIB, IBMCPU-MIB
- Fixed interoperability problems with IBM AS/400 SNMP agent
- AIX support improved
- Fixed serious memory leaks in server
- Many small improvements in management console

Best regards,
Victor
#5723
Hi!

Agent is modular, and platform-specific parameters are provided by subagents. When agent starts, it automatically loads so-called "platform subagent", which provides these parameters. For example, on Windows agent will load "winnt.nsm", and on Linux it will load "libnsm_linux.so". After subagent loading, parameters provided it added to m_ParamList in core agent. You may take a look inside subagent.cpp if you are interested how subagents are loaded.

Best regards,
Victor
#5724
Spasibo za patch dlja OpenBSD, ja vkljuchu ego v trunk.
Chto kasaetsja 1.1.x, to v celom eta vetka uze dostatochno stabil'na. Ja rasschitivaju k koncu goda sdelat' oficial'nij stable release 1.2.0 i okonchatel'no zakrit' 1.0.x. Chto kasaetsja 1.1.5, to ja rekomenduju podozdat' neskol'ko dnej do vihoda 1.1.6.
#5725
Hi!

Can you post at least one example of your DCI configuration? And don't forget that any SNMP OID has "instance" - so, for example, system description OID shown in MIB tree as ".1.3.6.1.2.1.1.1", should be configured in DCI as ".1.3.6.1.2.1.1.1.0". You can check what instances are available by using "walk" option in MIB explorer.

Best regards,
Victor
#5726
General Support / Re: NetXMS cannot read first interface
November 07, 2011, 12:02:00 PM
Hi!

Sorry, I was unable to find the reason immediately, and then I forgot about that. Could you please send me results of the following walk:

nxsnmpwalk -c your_community switch_ip .1.3.6.1.2.1.4.20

Best regards,
Victor
#5727
Hi!

Most likely agent returns an error in response for those parameters. You can check it with nxget command line tool. Also, please note that physical disk parameters are working only for some devices.

Best regards,
Victor
#5728
General Support / Re: logwatch parser dci
November 03, 2011, 04:26:32 PM
By default it will be file name (exactly as written in <file> tag), and you will be able to change it by adding name attribute to <parser> tag. For example,
for parser

<parser>
  <file>*System</file>
  ...
</parser>

instance name will be *System, and for


<parser name="SystemLog">
  <file>*System</file>
  ...
</parser>

instance name will be SystemLog.

Best regards,
Victor
#5729
General Support / Re: logwatch parser dci
November 03, 2011, 03:46:43 PM
Done it. Next release will have these parameters implemented.

Best regards,
Victor
#5730
General Support / Re: Java Console - Graphs
November 01, 2011, 10:01:06 AM
Hi!

It is because Java and legacy console threats invalid numbers differently. Legacy console tries to parse value as a number, and if it starts with a number, uses that part, so 13gb becomes 13. Java console threats all incorrect numbers as zeros, so 13gb becomes 0.

Best regards,
Victor