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

#331
Announcements / NetXMS 4.1 patch release 4.1.420
July 25, 2022, 03:29:26 PM
Hi all!

We just published new patch release for version 4.1 - 4.1.420, with some fixes and improvements on top of release 4.1.404. Full change log is following:

- Optimized alarm resolve/terminate using regular expressions
- Improved topology detection on Juniper switches
- Fixed communication protocol compatibility issues in C++ client library and command line client tools
- Fixed issues:
        NX-627 (Gauge rendered incorrectly)
        NX-846 (Ability to copy to clipboard in Routing Table and FDB views)
        NX-1077 (Option to copy MAC address to clipboard in FDB view)
        NX-2283 (Show version in debug console)

Best regards,
Victor
#332
Похоже что Juniper использует индекс интерфейса вместо bridge port number в таблице lldpRemTable. Я добавил в драйвер Juniper индикатор для принудительного использования ifIndex - по идее должно помочь. Мы вскоре выпустим новый патч релиз для 4.1 - можно будет проверить.
#333
Hi,

most texts in UI are located in so called language files. For translation we create new language file which initially contains all texts in English, so they can be translated. We also add new language menu to UI.

Currently there are two issues:
1. Not all texts moved to language files, some are hard-coded as English.
2. We are in process of migrating to new UI, which will have different localization mechanism.

I can prepare and provide you language files for old UI, so you'll be able to translate most of the texts. However, it could be more effective to do new translation on new UI. I hope we will have localization mechanism in new UI ready with release 4.2.

Best regards,
Victor
#334
А какая версия сервера?

Пришлите пожалуйста результат SNMP walk по следующим веткам:
.1.0.8802.1.1.2.1.4.1.1
.1.0.8802.1.1.2.1.3
.1.3.6.1.2.1.17.1.4.1
.1.3.6.1.2.1.2.2.1.2
#335
So agent is built for older MySQL client library. What Linux distribution you are using? If it is Debian or Ubuntu, I highly recommend using deb packages for installation. For RedHat we also provide separate binary package. If none of the above, then you either have to install required libmysqlclient or build agent from sources.

Best regards,
Victor
#336
I was unable to reproduce this issue, neither with 4.1.333 nor with 4.1.404. Try to redeploy webapp, maybe also make sure that work directory is deleted.

Best regards,
Victor
#337
Looks like you are missing MySQL client library. Make sure it is installed. Also, how did you install agent?

Best regards,
Victor
#338
Например так:


bs = new ByteStream();
bs->writeByte(0xC0);
bs->writeByte(0xA8);
bs->writeByte(0x05);
bs->writeByte(0x5D);

snmp = $node->createSNMPTransport();
snmp->set(".1.3.6.1.4.1.171.14.14.1.2.1.6.1", bs);

#339
Definitely not an intended behavior. We will check if it can be reproduced on our test systems.

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

В текущей версии это можно делать из NXSL скрипта - при помощи ByteStream собрать нужную последовательность байтов и передать в SNMP SET.
#342
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
#343
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
#344
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
#345
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