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

#5581
General Support / Re: Java Console - Reports
January 09, 2012, 12:23:16 PM
Hi!

Yes, report_generator.jar is report generation engine. But problem is that you have to create (design) report first, and we don't have any generic reports for NetXMS yet.

Best regards,
Victor
#5582
General Support / Re: Message Text
January 09, 2012, 12:19:24 PM
Yes, it will be solved. I already entered issue in our internal bug tracker.

Best regards,
Victor
#5583
General Support / Re: ctalyst driver
January 09, 2012, 12:18:37 PM
Server uses switch forwarding database to find end node connection. Could you please execute Tools -> Info -> Switch forwarding database tool on your switch and check that node's MAC address is on the list?

Best regards,
Victor
#5584
General Support / Re: v1.1.8 - java console
January 09, 2012, 12:11:53 PM
Hi!

Yes, there are updated packages on web site.

Best regards,
Victor
#5585
Ispravil. Na saite teper' lezit obnovlennij source arhiv. Takze v attache ispravlennij fail src/server/core/node.cpp - v nem oshibka bila.
#5586
A kakoj eto distributiv? I sobirali NetXMS na etoj ze mashine? Sejchas poprobuju u sebja povtorit'.

Viktor
#5587
General Support / Re: v1.1.8 - java console
January 08, 2012, 09:25:49 PM
Yes, this was packaging error. Uploading new packages now...

Best regards,
Victor
#5588
General Support / Re: Message Text
January 08, 2012, 09:24:34 PM
Sorry, I forgot about that :( I didn't add an issue immediately, and then it was forgotten. I have added issue now.

Best regards,
Victor
#5589
General Support / Re: Java Console - Reports
January 08, 2012, 09:18:04 PM
You have to create them. There are still no reports out of the box. I'll ask Alex to create some demo reports.

Best regards,
Victor
#5590
General Support / Re: ctalyst driver
January 08, 2012, 09:16:57 PM
Hi!

You should be able to find switch ports for end nodes as well. Try to select some node connected directly to the switch and run "Find switch port". It should display correct switch port. If it will not, this situation requires further investigation, because it is supposed to find correct port.

Best regards,
Victor
#5591
General Support / Re: Agent Package
January 08, 2012, 09:14:29 PM
Hi!

Yes, thsi is a bug. I'll add it to roadmap for next release.

Best regards,
Victor
#5592
General Support / Re: 1.1.7 Release - sub agnets
January 08, 2012, 02:01:41 AM
Hi!

To run subagent under different user account, you have to do the following (I will use WMI subagent as an example):

1. Add ExternalSubagent option to nxagentd.conf:

ExternalSubagent = name:user

in my case it would be

ExternalSubagent = WMI:*

First part defines connection point name, and second part defines allowed user account. You can use asterisk or omit second part at all to allow access from any user account.

2. Run agent
3. Create second configuration file for external subagent (For this example I will take C:\NetXMS\etc\wmi.conf):

ExternalMasterAgent = WMI
SubAgent = wmi.nsm

First option switches agent to external subagent mode. You should specify connection point name defined in first step as a value of ExternalMasterAgent. Otherwise it's a normal agent's config - you can load subagents with SubAgent options, define sections for subagent configuration as necessary, etc.

4. Run external subagent under different account:

nxagentd.exe -c C:\NetXMS\etc\wmi.conf

Now you should have two nxagentd processes running, with WMI parameters available via master agent.

You can also create another Windows service:

nxagentd.exe -I -c C:\NetXMS\etc\wmi.conf -n nxagentd_wmi -N "NetXMS Agent - WMI"

Hope this helps!

Best regards,
Victor
#5593
Announcements / NetXMS 1.1.8 released
January 08, 2012, 01:47:19 AM
Hi all!

NetXMS version 1.1.8 is out. Changes since previous release:

- New node properties: "disable topology polling" and "disable discovery polling"
- Changes and improvements in Java console:
   - Implemented embedded web page element type in dashboards
   - Implemented alarm viewer element type in dashboards
   - Dashboard cloning
   - Syslog monitor
   - Event monitor
   - Implemented status calculation/propagation object property page
   - Execution of "local command" type tools improved
   - Dial charts improved
   - Fixed object selection bug in network maps
   - Implemented agent package management and deployment
- Added common driver for Cisco Catalyst switches with CISCO-STACK-MIB support
- Implemented event identification by name in sendEvent API
- RADIUS authentication now supports passwords up to 128 characters long (was up to 16)
- Fixed server crash on Windows 2008 R2
- New MIBs added: CISCO-STACK-MIB, FDDI-SMT73-MIB


Additionally, below is list of issues closed in version 1.1.8 from our internal issue tracking system:

Bug
[NX-28] - Invalid message in "SQL Query failed" alarm
[NX-34] - Fix selection bug in network maps
[NX-47] - Node "down" state is not preserved across server restart
[NX-58] - Long passwords not accepted by RADIUS server
[NX-60] - Character encoding problem in RADIUS log messages
Improvement
[NX-19] - Alarm list as dashboard element
[NX-30] - Remove "NAT adapter" interfaces
[NX-36] - Improve dial charts (actually requires writing our own implementation)
[NX-37] - Show threshold violations in "Last Values" view/widget
[NX-41] - Improve "local command" object tool implementation in Java console
[NX-44] - Do mass idata updates in one transaction
New Feature
[NX-27] - Add option "disable discovery polling" for node
[NX-31] - Driver for Cisco Catalyst switches
[NX-32] - Implement agent package deployment in Java console
[NX-39] - Implement dashboard copy (clone)
[NX-42] - Add "custom port" field to SNMP DCIs (like in old console)

Best regards,
Victor
#5594
Hi!

You have to install development packages in order to compile NetXMS from sources. I don't know exact package names for CentOS. You will need gcc and g++ (they may come in one package or in separate packages).

Best regards,
Victor
#5595
General Support / Re: AIX Installation
January 06, 2012, 10:43:31 AM
Hi!

It is precompiled binaries for AIX. I got them by running

./configure --prefix=/opt/netxms --with-server --with-sqlite
make
make install

for sources in netxms-1.1.7.tar.gz. It is common source package for all platforms, you don't need separate sources for each platform. I have found some bugs in AIX build, they are fixed in upcoming 1.1.8 release. Binaries I have provided are patched already.

Best regards,
Victor