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

#286
Hi,

looks like I forgot to update change log with this fix. However, it was fixed as part of this commit: https://github.com/netxms/netxms/commit/80c79d73d7e4b358769b35bd034cbe921f6b39a1 and included into 4.1.377.

Best regards,
Victor
#287
Сейчас nxsnmpset не поддерживает задание OCTET STRING в шестнадцатеричном виде. Я добавил feature request: https://track.radensolutions.com/issue/NX-2278.

В текущей версии это можно делать из NXSL скрипта - при помощи ByteStream собрать нужную последовательность байтов и передать в SNMP SET.
#288
Currently server just discards information obtained from CDP, LLDP, etc. if it cannot find matching node. I think we can store raw topology data for the nodes as well, and show it in separate view (indicating which of IP/MAC addresses are known nodes of course). I've added it as feature request: https://track.radensolutions.com/issue/NX-2277.

Best regards,
Victor
#289
Are other parameters related to MySQL working? If so, please set debug level on agent with mysql subagent to 7, try to request one of problematic parameters (or wait few minutes so server did it), and share agent log.

Best regards,
Victor
#290
General Support / Re: Packet Loss/Response Time
July 13, 2022, 06:43:20 PM
You should be able to use internal parameters ICMP.PacketLoss and ICMP.ResponseTime.Last. Usually you'll need variants without instance - they will return data for primary IP address. Variants with instance should be used when you have configured additional ping targets on a node and want to get information for those targets.

Best regards,
Victor
#291
I think that it could be good idea to ignore notPresent interfaces by default on the server level. We will discuss that internally and likely add as configurable option. But for now hook script is a way to go.

Best regards,
Victor
#292
Announcements / NetXMS 4.1 patch release 4.1.404
July 12, 2022, 10:42:50 PM
Hi all!

We just published new patch release of version 4.1 - 4.1.404. Changes since previous patch release:

- Fixed full screen dashboard display on startup in desktop client
- Improved database consistency checks for business services
- Added Oracle driver option to disable OCI statement caching
- Fixed slow appearance of discovered nodes
- Fixed bugs in database schema upgrade from pre-4.0 versions
- Fixed bug in map options property page
- Fixed incorrect string encoding during SNMP SET operation
- Fixed SQLite upgrade issues
- Fixed issues:
        NX-755 (Network discovery may not stop immediately)

Best regards,
Victor
#293
We plan it for this week.

Best regards,
Victor
#294
Just fixed it, next patch release will contain the fix.

Best regards,
Victor
#295
Feature Requests / Re: Adding new addons to NetXms
July 04, 2022, 08:11:02 PM
If you are interested in sponsoring development of new features, please contact me via PM and we can discuss work scope and price.

Best regards,
Victor
#296
Currently only via API - but it should be relatively easy nxshell script or Java app.

Best regards,
Victor
#297
General Support / Re: L2 Topology not updating
July 04, 2022, 08:08:16 PM
When interface is down, we have two contradicting requirements: one is to show what was connected to that interface before it went down, and other is to show actual connectivity. First requires to keep showing link between disconnected interfaces, second requires to delete that link immediately after interface goes down. As NetXMS server has no way of knowing if disconnect is permanent or temporary, and there are seems to be more requests to provide access to last known connection information, NetXMS server keeps that connection until it will know that topology was changed (for example, one of previously connected interfaces will go up and LLDP will report different peer).
One possible solution could be configurable topology expiration time - i.e. if interface is down for N days, remove any known topology information from it.
Currently as a workaround you can delete interface that is disconnected - configuration poll will find it and re-create, but peer information will be erased.

Best regards,
Victor
#298
General Support / Re: NetFlow ?
July 04, 2022, 07:59:32 PM
Collector is there, but we didn't get to actually processing flow data. I still want to add this functionality, it is question of available resources and priorities.

Best regards,
Victor
#299
From what you show it looks like mail relay successfully received mail from netxmsd, so if you didn;t receive it it was either not sent by relay, or rejected/dropped by receiving server. Do you have any logs from relay regarding forwarding of this mail?

Best regards,
Victor
#300
General Support / Re: HA setup with VRRPD
July 04, 2022, 07:53:29 PM
Hi,

do you mean database lock in the DB so server complains that database is locked by another instance? If yes, you should list peer IP address in netxmsd.conf on cluster nodes. For example, if you have cluster nodes with addresses 10.0.0.1 and 10.0.0.2 (with whatever VIP moving between them), on node 10.0.0.1 you should add

PeerNode = 10.0.0.2

to netxmsd.conf and on node 10.0.0.2 add

PeerNode = 10.0.0.1

That way server will read the lock, check if server is running on peer node (by attempting to connect to agent and check running processes and by connecting to port 4701), and remove stalled lock if netxmsd is not running on peer node.

Best regards,
Victor