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

#4291
В LinkUp/LinkDown трапах должен быть параметр - индекс интерфейса. По индексу можно найти обьект интерфейса. Соответственно фильтр скрипт в правиле может быть таким:


iface = GetInterfaceObject($node, $2);
return iface != null;


Такой фильтр будет срабатывать только в том случае, если найден обьект интерфейса.

Альтернативный вариант - не удалять интерфейсы, а делать их unmanaged. Тогда скрипт может быть таким (для игнорирования unmanaged интерфейсов):


iface = GetInterfaceObject($node, $2);
return (iface != null) && (iface->status != 6);


По интерфейсам информации довольно много: http://wiki.netxms.org/wiki/NXSL:Interface, так что фильтры можно делать сложные.
#4292
General Support / Re: Agent action
September 17, 2013, 04:44:57 PM
Hi!

1. init problem is very interesting. I repeat same problem on Debian 6. Strange enough, giving full path to init binary solved it:

Action= test.pwd:/sbin/init 6

works fine.

2. Actions with output still not implemented.

Best regards,
Victor
#4293
Hi!

Actually, we didn't test alarm viewer app since 1.0.x versions. It is there only for historical reasons. I'll try to check what's happening, but not sure if I will be able to fix it. Did you think to switch to Java or web console for alarm display (if I understand correctly you have some kind of on-wall screen)?

Best regards,
Victor
#4294
Hi!

You are right, there was memory leak in NXCGetDCIDataEx. I've fixed it (SVN rev. 7673). This fix will be part of 1.2.9 release.

Best regards,
Victor
#4295
General Support / Re: I can not see my new mibs
September 13, 2013, 05:23:43 PM
Check if resulting compiled MIB file (netxms.mib) is in correct location. It should be in /usr/share/netxms/mibs. By default nxmibc places it in current directory.

Best regards,
Victor
#4296
General Support / Re: I can not see my new mibs
September 13, 2013, 04:56:54 PM
How did you compile MIBs? Was there any errors?

Best regards,
Victor
#4297
General Support / Re: Upgrade to 1.2.8 Version
September 13, 2013, 04:56:06 PM
You shouldn't use both methods ion same machine. Most likely you now have two incompatible set of binaries - one under /user and seconds under /usr/local (or other place if you specify --prefix at configure stage). Try to identify wrong binaries and delete them.

Best regards,
Victor
#4298
Quote from: Sergey on September 11, 2013, 01:31:27 PM
Замена иконок

Возможно загружать свои иконки для оборудования и пр. очень радует. Возможно ли заменить иконку по умолчанию, наприме для свитча?

Нет, нельзя. Я добавлю в feature requests :)

Quote from: Sergey on September 11, 2013, 01:31:27 PM
Доступ к web-интерфейсу

Как сделать доступ к веб-интрефейсу без запроса пароля? п.с. Идея состоит в следующем: Нужно просто предоставить доступ к картам через вэб , что бы мониторить состояние объектов на них.

Можно создать пользователя с read-only правами и использовать URL для логина как описано здесь: http://wiki.netxms.org/wiki/Autologin_for_Management_Console
#4299
General Support / Re: I can not see my new mibs
September 13, 2013, 03:52:57 PM
Hi!

Did you restart console after your compile new MIBs? Console synchronize MIB file with server only at login.

Best regards,
Victor
#4300
General Support / Re: Cannot delete nodes
September 13, 2013, 03:52:05 PM
Hi!

Can you please take SNMP walk snapshot from these devices? It could be done with nxsnmpwalk like this:

nxsnmpwalk -v 2c -c your_community 10.10.10.8 .1.3.6 > snmpwalk.txt

(change 2c to 1 if device only supports SNMP version 1).

and send these dumps to [email protected]?

Best regards,
Victor
#4301
General Support / Re: Upgrade to 1.2.8 Version
September 13, 2013, 03:48:37 PM
Hi!

On what platform you are installing? How do you install server - from sources, from binary package?

Best regards,
Victor
#4302
Hi!

You can download older client versions here: https://www.netxms.org/download/archive/nxmc/

Best regards,
Victor
#4303
Hi!

Yes, this feature is definitely useful. As for UI one of the simplest options could be add two items to log viewer's menu - to save current filter and to load saved filter. Loading saved filters could be also implemented similar to bookmarks or history tab in browsers - open additional list/tree on side by pressing some hot key or selecting menu item.

Another useful addition could be new items in object's context menu to show event log for specific object - it will open event viewer with filter preset.

Best regards,
Victor
#4304
General / Re: Radio Interfaces And Wireless Stations
September 12, 2013, 11:54:27 AM
Hi!

To show radio interfaces there should be a driver for wireless controller. Currently we have driver for Motorola/Symbol controllers, and upcoming 1.2.9 release will include driver for Nortel/Trapeze controllers.

Best regards,
Victor
#4305
General Support / Re: netxms hangs every 7-8 days
September 11, 2013, 07:24:51 PM
Deadlock is already fixed, so if you don't have performance issues with sqlite, you can keep running server on it.

Best regards,
Victor