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

#4906
General Support / Re: managing Cisco Switches
November 26, 2012, 07:31:50 PM
After quick check on PCI DSS requirements regarding SNMP, it seems that it is only required to change default community strings/account names. Disabling SNMP completely is recommended, but not mandatory. We have several bank clients, and they pass PCI DSS compliance audits, while running SNMP for managing network devices.

Best regards,
Victor
#4907
Hi!

We still use Eclipse Indigo (3.7) for RCP development. I suppose that there can be some API changes in RCP 4.2 comparing to 3.7. Also, I use separate Eclipse instances for RCP and RAP. Don't forget to install RCP console requirements into Eclipse:

* Draw2D: http://download.eclipse.org/tools/gef/updates/milestones/
* Zest 2.0: https://hudson.eclipse.org/hudson/job/gef-zest-nightly/lastSuccessfulBuild/artifact/targetPlatform/
* Properties Editor: http://propedit.sourceforge.jp/eclipse/updates
* "Target Management Terminal" from "Target Management Project 3.4". Update site: http://download.eclipse.org/tm/updates/3.4milestones
* BIRT Charting: http://download.eclipse.org/birt/update-site/3.7/
* Babel Project: http://download.eclipse.org/technology/babel/update-site/R0.10.0/indigo
   Required locales: chinese (both), german, russian, spanish

Best regards,
Victor
#4908
General Support / Re: managing Cisco Switches
November 26, 2012, 12:04:34 AM
Hi!

With SNMP disabled, you can only ping the switches to check if they are alive. But why you cannot enable SNMP? You can use SNMP version 3 with AES encryption. If only read access allowed, and only via encrypted SNMP v3, it should be safe.

Best regards,
Victor
#4909
General Support / Re: Oracle agent - netxms 1.2.4
November 26, 2012, 12:01:15 AM
Hi!

You need 64 bit client for 64 bit agent, and 32 bit client for 32 bit agent.

I have added INI config example to wiki: http://wiki.netxms.org/wiki/Subagent:Oracle#INI_configuration.

Agent reads all files in config include directory, and determines it's format by content, not by file extension.

Difference between monitoring one database and multiple databases is that in latter case you have to use XML config - in INI config you can specify only one database.

Best regards,
Victor
#4910
General Support / Re: Oracle agent - netxms 1.2.4
November 25, 2012, 06:31:01 PM
Hi!

Most likely you don't have Oracle client installed (or it's not in PATH) - so oracle.nsm failed to load because of missing dependencies. If you need to monitor only one database, you can also use *ORACLE section in standard netxmsd.conf. You can deploy XML config via policy - create new agent configuration policy, enter content of XML file on "Configuration File" page in policy object properties, and then select "Install" from policy context menu. Select target node(s). Then restart agent - it should load new configuration on restart.

Best regards,
Victor
#4911
Quote from: SKYnv on November 23, 2012, 07:01:00 AM
а если помещаются в корень или дублируюстся в одной сети при каждом проходе network discovery?

мне желательно знать то-же самое - список интерфейсов и значения с Overview для проблемных нод.
#4912
Попробовал у себя - не получается повторить. После удаления цепочки сообщения об ошибке не появляются больше. Может есче какие-то особенности есть?
#4913
Попробую у себя повторить. Добавил в багтрекер: https://www.radensolutions.com/chiliproject/issues/187.
#4914
А версия сервера какая? 1.2.4?
#4915
Quote from: SKYnv on November 21, 2012, 11:04:52 AM
nxagentd -h бесконечный цикл.
freebsd

UNICODE или обычный? С UNICODE похоже проблем много еще...
#4916
Распределение по подсетям делается на основе интерфейсов. Т.е. для каждого интерфейса из его IP адреса и маски получаем адрес подсети, и добавляем ноды в соответствуюший обьект подсети. При необходимости создаются новые обьекты. Потенциально возможны проблемы если адрес, который прописан как primary host name отсутствует на интерфейсах по какой-либо причине. В 1.2.3 и 1.2.4 также были исправлены несколько багов, связанных с нодами, которые появлялись прямо в корне, и дублирующимися нодами. Если 1.2.4 помесчает хосты не в те подсети, то надо детально разбиратся - мне надо знать список интерфейсов проблемной ноды и значения с закладки "Overview".
#4917
Hi!

I have implemented multiple DCIs on one chart in performance tab in upcoming 1.2.5.

Best regards,
Victor
#4918
Hi!

Try to upgrade to 1.2.4. This should be fixed - at least I fix very similar problem in one of 1.2.x versions.

Best regards,
Victor
#4919
Hi!

Can you describe this situation with more details? I'm not sure that I understand it correctly...

Best regards,
Victor
#4920
Sorry, that was my mistake. Script called via %[] didn't get event's parameters in $1, $2, etc. Instead, you should use $event variable to access event attributes. Event class described here: http://wiki.netxms.org/wiki/NXSL:Event. To access parameters, you can use $event->parameters array. So, correct code in my example would be


default: return "Unknown code " . $event->parameters[5];


Best regards,
Victor