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 - Filipp Sudanov

#1306
А в Object Details -> Overview что написано в строке Driver?
#1307
General Support / Re: Add peer manually to interface
October 30, 2020, 01:05:12 PM
Hi!

Peer manual specification is not possible now, i've created a ticket for that, but there's no exact schedule when this could be implemented. https://track.radensolutions.com/issue/NX-1973

As for adding inventory information to nodes that have no agent and no snmp - currently inventory is populated only by server and is read-only. As developer resources are limited, some manual way could be implemented only if someone requests paid developmet (or, possibly contributes a working code for this).
Currently it's possible to store such information in custom attributes, but there's no way to display that information in the GUI.
Or, alternatively it's possible to create a push dci on the node and use a script object tool that have input field and will update the push DCI.
#1308
Да, есть какой-то баг в NetXMS, посмотрим при возможности в чем там дело. Но и сами MIB файлы похоже не соответствуют всем стандартам.
#1309
Порт - в смысле интерфейс? С интерфейсами так не получится, их статус жестко определяет при статус полле - по данным с netxms агента, snmp или icmp.
Ну разве что менять expected status интерфейса на обратный текущему, но это так себе идея.
#1310
It's the same with session agent.
#1311
Hopefully one day this issue will be implemented and life will become easier: https://track.radensolutions.com/issue/NX-1961

Can you show output of status and configuration poll for this host?
#1312
General Support / Re: Last Value Errors for SNMP DCI
October 29, 2020, 05:36:35 PM
You have timestamp with year 1969 - is time on your netxms server correct?
In object details - Overview on the right hand side there is a table called Capabilities? That's communication method available for particular node. What's the value of isSNMP there? If it's No, try running Full configuration poll for that node.
Are you able to get values for these OID using snmpget from command line of the sever where NetXMS is running?
#1313
General Support / Re: Network discovery
October 29, 2020, 04:57:46 PM
Proxies should not be required, if your servers is able to communicate to these subnets directly.
Passive discovery requires that there's netxms agent or SNMP agent on the remote machines - this way we are getting neighbors from arp tables (and not sure from where exactly in case of SNMP).
For active scanning nodes should reply either ICMP, SNMP or netxms agent - if none is happening we can not discover a node.

You can try temporarily increasing netxms server debug log
nxadm -c "debug 7"
and manually launching a scan of a subnet to better understand what's happening.
Or, alternatively you can try capturing network traffic to that subnet with tcpdump, this can also give some insight.
#1314
Thanks for the follow up
#1315
General Support / Re: Populate "Input fields".
October 28, 2020, 11:41:34 AM
Could be added at some point in the future.
Created an issue for that: https://track.radensolutions.com/issue/NX-1971
#1316
General Support / Re: NXSL: Alarms by node
October 26, 2020, 06:42:30 PM
Something like that:
for(a : $object->alarms)
{
println(a->message);
}


List of alarms is an attribute of any object, not only node - it could be container, subnet, sensor... That's why I am using $object->alarms in the example, but if the object you are querying is a node, you can use $node->alarms

Documentation it's here: https://www.netxms.org/documentation/nxsl-latest/#class-netobj

#1317
В свойствах DCI на закладке Other Options есть чекбокс Use this DCI for node status calculation.
DCI про этом должно принимать такие значения 0 -Normal, 1 -Warning, 2 -Minor, 3 -Major, 4 -Critical. Это может быть или скриптовый DCI, или SNMP DCI, у которого получаемое значение преобразуется в transformation script.
Значение этого DCI будует учитываться наравне с алармами при расчете статуса ноды. Ну то есть, например, если если DCI возвращает 1 и алармов на ноде нет, то статус ноды будет Warning. А если одновременно есть аларм со статусом Major, то и статус ноды будет Major, потому что по умолчанию используется most critical алгортм рассчета.


Ну и всего этого можно добиться, посто сделав на этом SNMP DCI threshold last value == 2 и создавать событие с severity warning. Тогда будет создаваться аларм, который также будет менять статус ноды.
#1318
General Support / Re: Web console nxmc-3.5.90.war
October 26, 2020, 02:09:05 PM
What is exact version of your netxms server, did you install it from packages or compile?
#1319
General Support / Re: Network Discovery Configuration
October 26, 2020, 02:07:50 PM
If you just need to add one IP address, you can just create new node in object tree under Infrastructure services.
If it's something else, please share a screenshot of what you are trying to configures.