News:

We really need your input in this questionnaire

Main Menu
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

#6331
Hi!

This was a bug which was fixed in 1.0.0.

Best regards,
Victor
#6332
Hi!

Are you sure that it's service name and not display name? Also, do you use quotes, like System.ServiceState("Lotus Domino Server (DLotusDominodata)") ?

Best regards,
Victor
#6333
Hi!

Do you have that data? By default, all DCIs set to keep collected data for 30 days. If you need to keep collected data for longer period, you should change configuration of appropriate DCIs (parameter "retention time" in DCI configuration).

Best regards,
Victor
#6334
Est' dva varianta:

1. Dobavit' ciscu, dozdatsja okonchanija configuration poll, posle chego postavit' v nastrojkah "disable configuration poll" i udalit' ne nuznie interfeisi i subneti.
2. Sdelat' vse nenuznie interfeisi "unmanaged" - togda oni ne budut oprashivatsja. (massovoe izmenenie sostojanija interfejsov mozno sdelat' na zakladke "subordinates" object browser'a).

Viktor
#6335
Добрый день!

Имеется ввиду отключить добавление самих объектов подсетей, или отключить дискавери внутри этих новых сетей? Если второе, то это можно сделать только фильтрами автодисковери. Первое на 100% нормально сделать нельзя - можно запретить делать configuration poll для узла в Properties -> Polling, но при этом и проверка остальных capabilities (версия SNMP, isRouter, isBridge, etc.) будет отключена. А зачем это нужно?

Виктор
#6336
Announcements / Re: NetXMS 1.0.0 released
May 04, 2010, 08:39:47 PM
Сначала командой nxencpasswd получить шифрованный пароль, и в netxmsd.conf использовать DBEncryptedPassword вместо DBPassword. Например, было:


DBLogin = netxms
DBPassword = password


делаем


C:\Source\NetXMS\debug>nxencpasswd.exe netxms password
mMHptlOwBjoW7jJ3wyzp2JHdUEDiLt73kd1QQOIu3vc=

C:\Source\NetXMS\debug>


и обновляем netxmsd.conf:


DBLogin = netxms
DBEncryptedPassword = mMHptlOwBjoW7jJ3wyzp2JHdUEDiLt73kd1QQOIu3vc=

#6337
General Support / Re: SNMP OID Fault Management
May 04, 2010, 08:28:50 PM
Hi!

There are no single standard "fault" OID. Usually, there are some vendor-specific OIDs from where you can get CPU utilization, memory usage, etc. and set your own thresholds. There are also standard OIDs for network interface errors. Also, you can setup SNMP trap processing, but again, it will be vendor-specific.

Best regards,
Victor
#6338
General Support / Re: Router Capabilities
May 04, 2010, 08:22:19 PM
Hi!

NetXMS server reads SNMP variable .iso.org.dod.internet.mgmt.mib-2.ip.ipForwarding (.1.3.6.1.2.1.4.1) to determine if node is able to forward IP packets. Value of 1 indicates that IP forwarding is enabled on the node, and in that case NetXMS server sets isRouter attribute to true. Could you please try to read this variable using nxsnmpget or any other tool?

Best regards,
Victor
#6339
Dobrij den'!

Poprobujte zamenit' fail dbschema_sqlite.sql (nahoditsja v C:\NetXMS\lib\sql) na prilozennij.

Viktor
#6340
Hi!

I mean that in passive mode NetXMS uses data from known devices to find new devices. For example, you have one device in NetXMS - router with IP address 10.0.0.1 accessible with SNMP. During discovery poll, server reads ARP cache and routing table from that router. For example, it founds two entries in router's ARP cache - 10.0.0.7 and 10.0.0.44. NetXMS then adds new devices with addresses 10.0.0.7 and 10.0.0.44 (if filter does not prevent it), and do discovery poll on them if possible - and that process repeats for each found device. You need active discovery only if you have devices which may not communicating with already known devices, so they will not appear in known devices' ARP cache.

And yes, pinging all IP addresses on subnet can take very long time, especially if you have many unused addresses, because server will wait for possible reply for each address.

Best regards,
Victor
#6341
Hi!

Could you please provide exact command which does not work?

Best regards,
Victor
#6342
General Support / Re: DCI with Multiple OID
April 29, 2010, 11:54:22 PM
You should create two DCIs, and transform one of it using value from another. For example, define DCI for interface speed (.1.3.6.1.2.1.2.2.1.5.1); leave it as is. Then, define DCI for inOctets (.1.3.6.1.2.1.2.2.1.10.1), and set transformation script to


sub main()
{
   ifSpeed = GetDCIValue($node, FindDCIByName($node, ".1.3.6.1.2.1.2.2.1.5.1"));
   return ($1 * 8 / ifSpeed) * 100;
}


See also this topic: https://www.netxms.org/forum/index.php/topic,289.0.html

Best regards,
Victor
#6343
Hello!

In passive mode, NetXMS server only collects information about network devices by reading ARP caches and routing tables on already known devices. In active mode, server additionally pings every address in given subnets and uses responding addresses as well.

Network discovery can take many hours or even days, it depends on network size. Also, don't forget that NetXMS server should have SNMP access to as much network devices as possible to be able to obtain required information.

You can discover all reachable devices and networks, just make sure that your devices and firewalls allows SNMP requests from NetXMS server.

Best regards,
Victor
#6344
General Support / Re: Transformation Scripts
April 28, 2010, 05:22:28 PM
Test button will work only for nodes (not templates) - because test is done by sending script to server and running it in context of specific node.
For testing scripts where $node variable is not used you could also use nxscript command line tool. If using nxscript, first command line argument will be passed to script as $1, second as $2, and so on.

Best regards,
Victor
#6345
Ja poprobuju u sebja povtorit' etu situaciju. Kak workaround, poprobujte vibrat' "use existing database" - esli baza uze sozdana i prava na nee est', to vse dolzno srabotat'.