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

#3136
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
#3137
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
#3138
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
#3139
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
#3140
Добавил изменение в драйвере и Object Tools в текущий development branch.
#3141
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
#3142
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
#3143
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
#3144
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
#3145
Hi,

we add more MIBs to standard distribution so maybe it just grows too large. Check that you are running MIB compiler with -z option (to produce compressed MIB file). Also, you can remove unneeded MIBs - good candidates are vendor MIBs that can be easily identified by name prefix:

A3COM-HUAWEI-* - Huawei/H3C switches
BAY-STACK-* - Nortel/Avaya BayStack switches
CISCO-* - Cisco switches and routers
DES*, DGS* - DLink switches
FOUNDRY-* - Foundry Networks switches
H3C-*, HH3C-* - HP A-series and H3C switches
NETSCREEN-* - Netscreen firewalls
NTWS-* - Nortel wireless
SYMBOL-*, WS-* - Symbol/Motorola wireless
VMWARE-* - VMWare

Best regards,
Victor
#3146
Hi

so the problem is that device do not respond to standard OIDs .1.3.6.1.2.1.1.1.0 and .1.3.6.1.2.1.1.2.0 which NetXMS server uses to detect SNMP agent. Try to set custom attribute named snmp.testoid on this node to .1.3.6.1.2.1.1.3.0 (or any other working OID) and re-run configuration poll.

Best regards,
Victor
#3147
Announcements / NetXMS 2.0-M3 released
April 09, 2015, 12:52:15 AM
Hi all!

NetXMS version 2.0-M3 is out. This release contains significant internal changes mostly related to IPv6 support. Full change log is following:

- IPv6 support: communications, address information, topology
- New NXSL functions: gethostbyaddr, gethostbyname, md5, sha1, AgentReadList
- Added posibility to wakeup unmanaged node
- Instance discovery separated from configuration polls
- Instance discovery type "SNMP Walk - OIDs" sets instance name to OID value by default
- GPIO.PinState parameter in Raspberry Pi subagent
- Server housekeeping process runs once per day at fixed configurable time
- Server housekeeping process performance optimization
- Added driver for Qtech OLT switches
- New agent parameter FileSystem.Type(*)
- New agent parameters Net.Resolver.AddressByName(*) and Net.Resolver.NameByAddress(*)
- Fixed broken SNMP proxy functionality in agent
- Management console:
   - Fixed broken popup menu actions on "Interfaces" tab
   - Macro %USERNAME% can be used in object tools
   - VLAN highlight on port selection in VLAN view
   - "Use multipliers" option in DCI summary tables
   - "Zoom to fit" action in network maps
   - "Always fit layout to screen" option in network maps
   - Last selected zoom level preserved on network map close
   - Invisible dashboards and charts do not refresh itself automatically
   - "Current" column in extended line chart legend
   - Option to clone network maps
- Android console:
    - Implemented feature #776 (WoL)
- Fixed issues: #690, #693, #702, #722, #725, #745, #750, #752, #755, #756, #757, #758, #759, #760, #763, #764, #765, #766, #767, #768, #769, #770, #771, #776, #778, #779, #782, #785, #787, #788, #789, #790, #792, #793

Best regards,
Victor
#3148
General Support / Re: Not storing incoming syslogs
April 09, 2015, 12:23:39 AM
Hi,

do you have syslog server enabled on NetXMS server? if yes, check that netxmsd listen on port 514. Try to enable debug level 6 and check netxmsd log records with word "syslog" in them.

Best regards,
Victor
#3149
General Support / Re: Select all while in map
April 09, 2015, 12:16:05 AM
Hi,

it's not possible. I'll add "Select all" function in next release.

Best regards,
Victor
#3150
General Support / Re: last month presets
April 09, 2015, 12:15:27 AM
Hi,

seems to be a database performance problem. Do you have anything logged in MySQL slow query log? Check CPU usage and I/O on MySQL server when you request month graph.

Best regards,
Victor