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

#4711
General Support / Re: Alarm Details tool bugs
March 01, 2013, 09:07:28 PM
Hi!

Just fixed second and third bug, thanks for reporting! First one will take a bit more to fix.

Best regards,
Victor
#4712
General Support / Re: Configuration of Perspectives
March 01, 2013, 04:54:24 PM
Hi!

Both functions will require additional development. It is technically possible to create UI element filters in Eclipse RCP (underlying platform of client application) as additional plugins.

Best regards,
Victor
#4713
HP E-series supported already, driver's name is PROCURVE. If you have E-series switch for which generic driver is selected, please send me it's SNMP object id.

For creating driver for Shoretel switches, I need MIBs for them and result of SNMP walk of .1.3.6.1.4.1. Ideally also remote access to the device so I can test driver.

Best regards,
Victor
#4714
Hi!

There are few possible options. Option 1 is following:

1. Create additional event, ASA_SYSLOG_MESSAGE for example, and put varbind .1.3.6.1.4.1.9.9.41.1.2.3.1.5.0 into parameter #2, as you have done already with ASA_FAILOVER event.
2. Create script in script library, which will post ASA_FAILOVER event if it got ASA_SYSLOG_MESSAGE with "Switching to ACTIVE" text:


if ($event->parameters[2] match ".*Switching to ACTIVE.*")
{
   PostEvent($node, "ASA_FAILOVER", null, $event->parameters[2]);
}


3. Create new action of type "execute NXSL script", and specify name of the script you just craeted
4. Add rule to event processing policy, which will execute action created on step 3 for ASA_SYSLOG_MESSAGE event.

That's it - you will have ASA_FAILOVER events for each syslog message trap with "Switching to ACTIVE" text in it. Please note that in my script text will be passed to ASA_FAILOVER event as parameter #1.

If you don't want ASA_SYSLOG_MESSAGE events to clutter event log, you can uncheck "Write to log" option in event's configuration.


Alternative approach could be to not use SNMP traps for this, but feed syslog records from ASA directly to NetXMS server (using syslog protocol), and create a parser for incoming syslog records.

Best regards,
Victor
#4715
General Support / Re: webui
March 01, 2013, 11:17:49 AM
Hi!

Looks like application hangs or crashes at initialization. Can you check log files under web ui installation directory? Also, try to restart web ui service and access directly http://netxmsserver/nxmc, without accessing root.

Best regards,
Victor
#4716
Hi!

Driver for H3C (HP A series) switches is not ready yet. I have access to some HP A55xx devices, so driver will be provided in one of next releases.

Best regards,
Victor
#4717
Нашел баг в сортировке (для алфавитной сортировки использовалось поле "Name in legend" вместо заголовка графика). Следующая версия консоли будет сортировть правильно.
#4718
Quote from: inspirit on February 28, 2013, 11:46:49 AM
- можно ли как то контролировать рост записей в Mysql таблице snmp_trap_log? (housekeeper c ней не работает?)

Это баг. Добавил очистку старых записей из snmp_trap_log (контролируется новым параметром SNMPTrapLogRetentionTime). В 1.2.7 будет включено.

Quote from: inspirit on February 28, 2013, 11:46:49 AM
- Можно ли сделать что бы при выборе ноды в ява-консоли, после вкладки Ports был бы раздел Topology (Как в Legacy консоли раньше было, теперь оттуда тоже убрали).
-Можно ли менять местами (или вообще выбирать только нужные) столбцы в разделе Interfaces для Ноды (было бы удобно)

Поставлю в feature requests (и то и другое).
#4719
Надо заменить файлы node.cpp и snmp.cpp в каталоге src/server/core на приложенные.
#4720
Спасибо за доступ! Проблема в том, что это устройство не возвращает sysObjectId (.1.3.6.1.2.1.1.2.0), хотя по стандарту все должны его возвращать, а NetXMS пытается этот OID читать для оперделения того, есть SNMP на хосте или нет. Я добавил sysDescr (.1.3.6.1.2.1.1.1.0) как альтернативный тестовый OID, теперь устройство определяется как поддерживающее SNMP, и позволяет собирать данные. Я могу прислать патч для сервера или новый бинарник, если надо.
#4721
General Support / Re: About Management Console
February 28, 2013, 09:21:53 AM
Hi!

You should create condition script. Condition object don't evaluate thresholds, it has it's own condition evaluation script. Just add simple script like


return $1 > 100;


(change the condition to what you need).

Best regards,
Victor
#4722
Доступ к железке получить было бы очень полезно. Пишите мне на майл - victor-at-netxms.org.
#4723
Windows / Re: Bug in logwatch subagent
February 28, 2013, 09:15:44 AM
Hi!

Thanks for the fix, just committed it into trunk.

Best regards,
Victor
#4724
General Support / Re: About Management Console
February 27, 2013, 02:59:03 PM
Hi!

It's possible, but a bit complicated - you have to create condition object which will change status based on traffic rate on interface, and set this object as the one providing color for link on map.

Best regards,
Victor
#4725
Спасибо за детальный разбор! Сделал ишшую в баг трекере, чтобы не потерялось: https://www.radensolutions.com/chiliproject/issues/242. В 1.2.7 добавлю поддержку FDB по VLAN'ам.