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

#3376
Ну вот я тоже так подумал, но если DisableIPv6 не помог, то дело не в этом. Это что за ОС?
#3377
Сервер ориентируется на известные ему сабнеты. Проверьте какие маски у объектов "subnet", удалите неправильные.
#3378
Попробуйте добавить в конфиг агента

DisableIPv6 = yes
#3379
Это уже после установки timezone update на джаву?
#3380
General Support / Re: NXSL node down status
November 05, 2014, 11:23:40 AM
Hi,

you can use runtimeFlags property of node object to get node down state. If UNREACHABLE (0x0004) flag is set, then NetXMS considers this node as down. You can check it as follows:


if (nodeObj->runtimeFlags & 0x0004) {
      return "OK but proxy unreachable";
  }


All runtime flags described here: http://wiki.netxms.org/wiki/NXSL:Node:runtimeFlags.

Best regards,
Victor
#3381
Да, можно сделать драйвер. Найдите по возможности мибы от этих устройств. Еще очень помог бы доступ на устройство по SNMP - иначе мы не сможе протестировать, и возможно будет много итераций прежде чем драйвер заработает.
#3382
А какая версия Java? Как я понимаю, у джавы своя таблица тайм зон, возможно последние изменения (вроде были ведь?) с летним/зимним временем в России туда не вошли. Вроде есть update tool: http://www.oracle.com/technetwork/java/javase/tzupdater-readme-136440.html (сам никогда не пробовал).
#3383
Проблема в том, что nxevent не выставляет code page, и внутренние функции вызывают iconv используя ASCII. Я добавлю возможность выставлять code page для утилит. Как workaround можно добавить в main() в nxevent строчку

SetDefaultCodepage("CP1251");
#3384
Так вроде во второй раз запустился? Или это теперь всегда так?
#3385
Feature Requests / Re: Action Forms
November 04, 2014, 09:44:18 PM
Hi,

I actually has this idea in my mid for some time already. Hopefully will be implemented next year. I plan to use Python as backend for those forms (as we already integrate it with client API in nxshell tool) so you'll be able to add complicated logic to such forms.

Best regards,
Victor
#3386
there is an error in your script:

for (i = $1->rowCount -1; i >= 0; i++)

you start with last row (let's say 10 or something like this) and likely want to go down to row 0. But you increment i instead of decrementing it, so it went all way up to 2147483648 (power 31 of 2) where it wraps to -1 due to integer overflow and only then loop stops. So you script done more than two billion iterations - quite a lot for scripting language even on modern hardware.

Best regards,
Victor
#3387
General Support / Re: error while upgrading to 1.2.17
November 04, 2014, 09:32:33 PM
Hi,

Windows XP and Server 2003 should still be supported. We didn't change anything in that regard. Can somebody provide me with remote access to test machine so I can try to do upgrade myself and see what happens?

Best regards,
Victor
#3388
Currently the only supported options are for auto-login and for automatic dashboard display (described here). Feel free to fill in feature requests for more options.

Best regards,
Victor
#3389
General Support / Re: Tutorials / movies
November 04, 2014, 09:26:51 PM
Hi,

there are few video tutorials here: http://www.youtube.com/user/alexkirhenshtein and here: http://www.youtube.com/user/TheNetXMS/videos. We plan to gradually add more.

Best regards,
Victor
#3390
General Support / Re: Topology issue with 1.2.17
November 04, 2014, 09:20:58 PM
Hi,

looks like a bug caused by recent changes in topology handling. I'll try to reproduce it in our test environment.

Best regards,
Victor