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

#2626
Hi,

actually NetXMS server should handle VRRP MACs differently, as they will not be unique. Zoning will not help because you may have multiple VRRP interfaces within same zone. As for the topology - usually routers also provide information about real interfaces with unique MACs and VRRP MAC address should be shown only for VRRP interface, so router could be placed into correct network using it's physical interfaces. If VRRP MACs will be excluded routers should be placed correctly in L2 topology.
I've registered issue for that: https://dev.raden.solutions/issues/1196

Best regards,
Victor
#2627
General Support / Re: How to save map?
March 30, 2016, 06:44:07 PM
Hi,

map changes should be saved automatically as soon as you made them.

Best regards,
Victor
#2628
Announcements / NetXMS 2.0.3 released
March 30, 2016, 06:43:10 PM
Hi all!

NetXMS version 2.0.3 is out. This release mostly aimed at increasing system stability and bug fixing. Full change log is following:

- Additional parameters in Oracle subagent for redo logs and ASM monitoring
- NXSL: variable $errormsg holding error description set in catch block
- New NXSL function SplitString
- NXSL: new methods setExpectedState and setExcludeFromTopology in Interface class
- Default interface expected state can be configured
- GPS subagent (provides location data from NMEA compatible GPS receivers)
- Server can update node location using GPS subagent
- Fixed error while event alarm linking multiple times
- Fixed server hang on shutdown
- NetXMS processes uses LC_CTYPE from environment for terminal I/O
- Fixed bug in saving service checks
- Fixed server crash caused by heap corruption in MS SQL and DB/2 database drivers
- Fixed server deadlock caused by simultaneous use of instance discovery and transformation scripts
- Agent parameters for monitoring System V message queues
- New action User.ChangePassword in WINNT subagent
- Text2reach SMS driver improved
- Port check subagent can be configured to return negative value as response time in case of error
- Management console:
        - Fixed grid issues in network maps
        - Fixed object selection issues in network maps
        - Added "hide links" option on network maps
        - Added support for MAC addresses in format xxx.xxx.xxx.xxx
- Fixed issues: #950, #962, #988, #1048, #1102, #1124, #1131, #1135, #1147, #1149, #1154, #1163, #1166, #1170, #1174

Best regards,
Victor
#2629
Hi,

currently it's not implemented. For 2.0.3 I've added new method for interface object - setExcludeFromTopology.

Best regards,
Victor
#2630
Hi,

can you share screenshot of "Interfaces" tab for the switch shown under 10.7 subnet?

Best regards,
Victor
#2631
General Support / Re: Http timeout
March 21, 2016, 07:49:49 PM
I mean that I just added it :) You have to wait for 2.0.3 release or build agent from git repository.

Best regards,
Victor
#2632
Hi,

dot (.) is a string concatenation operation, so line

data=cfunctions.getToken(data);

concatenates value of variable cfunctions (likely null) with returned array, which resulted in a null converted to string concatenated with array converted to string.

Best regards,
Victor
#2633
General Support / Re: Http timeout
March 21, 2016, 06:34:57 PM
Hi,

I've added configuration parameter NegativeResponseTimeOnError for portcheck subagent to return negative value instead of data collection error in case of service communication error. Config example:


MasterServers = 127.0.0.1, ::1, 10.5.0.0/24
LogFile = /opt/netxms/log/nxagentd.log
SubAgent = portcheck.nsm

[PORTCHECK]
NegativeResponseTimeOnError = true


Best regards,
Victor
#2634
General Support / Re: Sending Multiple Emails
March 21, 2016, 04:04:44 PM
Hi,

if you are running server scripts (NXSL), you can use PostEvent function: https://wiki.netxms.org/wiki/NXSL:PostEvent

Another possible option is to set node's custom attribute in reaction for SYS_NODE_DOWN and create status poll hook script, which will check if node is down for certain amount of time and use PostEvent function to generate another event.

Best regards,
Victor
#2635
Hi,

did you install NetXMS server from deb packages or from sources? For package based installation correct MIB file location is /var/lib/netxms/netxms.mib, and for source install (assuming prefix was left to default /usr/local) is /usr/local/var/lib/netxms/netxms.mib.

Best regards,
Victor
#2636
Hi,

click/drag problem is fixed in upcoming 2.0.3 release. I'll made transparency configurable for small labels.

Best regards,
Victor
#2637
General Support / Re: Maximum open cursors exceeded
March 09, 2016, 11:26:21 PM
Hi,

please try to replace existing libnxcore.so.2.0.0 with this one: https://cloud.netxms.org/index.php/s/XzmBjTnJ0E0zlDV

Best regards,
Victor
#2638
General Support / Re: New Discovered Node - Alert
March 09, 2016, 10:51:41 PM
System generates event SYS_NODE_ADDED whenever new node is added to the system. If node added by discovery process, event will have first parameter set to 1, so you can create rule which will match event SYS_NODE_ADDED and with this matching script:

return $event->parameters[1] == 1;

In action part you can generate alarm or send notifications as usual.

Best regards,
Victor
#2639
General Support / Re: libc segfault crash
March 09, 2016, 12:40:14 PM
Did you build binaries, or you are using deb packages?

Best regards,
Victor
#2640
General Support / Re: Maximum open cursors exceeded
March 09, 2016, 12:39:03 PM
Hi,

I plan to make 2.0.3 release this Friday. I'll try to build patched binary later today.

Best regards,
Victor