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

#3151
Hi,

what you get if you run nxsnmpget on OID .1.3.6.1.2.1.1.2.0 from command line?

Best regards,
Victor
#3152
Feature Requests / Re: 3com switchs
April 09, 2015, 12:08:47 AM
Hi,

in 2.0-M3 I fixed a bug that prevents setting of peer node information on port under certain condition, so that may be your case to. It is fixed in 2.0-M3 released today. You can try to install it on test system and see if problem will be gone.

Best regards,
Victor
#3153
Hi,

configuration parameters are case-sensitive, so make sure you define it as SMSDriver and SMSDrvConfig. Set debug level to 4 or higher, then you should see websms driver diagnostic messages (they started with prefix WebSMS).

Best regards,
Victor
#3154
Hi,

currently it's not possible. There is a feature request for this, we plan to implement it in one of 2.0 releases.

Best regards,
Victor
#3155
Немного поправил скрипт:


println($node->sysDescription);

if ($node->sysDescription ~= "^DES|^D-Link DES-3028")
{
   println "Node passed filter";
foreach(i : GetNodeInterfaces($node))
{
   if (i->slot == 1 && i->port <= 24)
   {
   SetInterfaceExpectedState(i, "IGNORE");
   }
      else if (i->port >= 25 && i->port <= 28 && i->slot == 1)
      {
   i->setStatusPropagation(4,1,2,3,3);
   }
}
}


Там было несколько мелких ошибок по синтаксису (& вместо &&, = вместо ==, пробел перед скобкой в вызове функции, и т.д.), но в целом идея правильная.
Скрипты удобно проверять через меню "Run server script" в контекстном меню ноды - можно видеть результат выполнения и вывод trace/println.
#3156
Да, nxsnmpset как server command будет то что требуется.
#3157
Общие вопросы / Re: 1.2.17 SNMP
April 08, 2015, 01:08:44 PM
Мы сегодня выкладываем 2.0-M3. Попробуйте, если проблема останется, то присылайте лог, буду разбираться.
#3158
Какая версия NetXMS сейчас установлена? В 2.0-M3 мы довольно сильно переделали все что связано с адресами и подсетями - я предлагаю посмотреть сохранится ли проблема после обновления на 2.0-M3 или выше.
#3159
Hi,

SNMP proxy functionality was broken in 2.0-M2. I've fixed it in 2.0-M3. I've also change logic a bit so if node is proxy for itself it will use loopback address instead of primary IP address for SNMP requests - this can help avoid possible firewall problems and secure SNMP access to node by allowing only requests via loopback.

Best regards,
Victor
#3160
Попробуйте запустить configure как

CPPFLAGS=-march=i686 ./configure ...
#3161
Hi,

you need eclipse 3.8.2 for building desktop console.

Best regards,
Victor
#3162
Most likely next week, or week after in worst case.

Best regards,
Victor
#3163
Hi,

in version 2.0-M3 I've added new parameter FileSystem.Type, so with agent version 2.0-M3 you can filter out CDs as following:


if (rindex($1,":")>0)
{
   type = AgentReadParameter($node, "FileSystem.Type(" . $1 . ")");
   // exclude CDs:
   return (value != null) && (value != "CDFS"); 
   // if only NTFS systems are of interest (usual situation):
   // return value == "NTFS";
}
return false;


Best regards,
Victor
#3164
Общие вопросы / Re: websms.ru
March 27, 2015, 12:50:29 PM
Проблема в названии драйвера: на UNIX/Linux это будет /<path to netxms>/libnxsms_websms.so
#3165
Для таблиц поддержки подсчета дельты, среднего, и т.д. пока нет.