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

#256
Да, возможен, из LDAP можно синхронизировать как юзеров, так и группы, просто LDAP.SearchFilter нужен такой, чтоб возвращал и то и то.
В NetXMS группы могут быть членами групп, так что это как раз правильный подход - есть локальные группы в NetXMS на которые расставляются права доступа и в эти группы добавляются LDAPные группы.
#257
Hi,

The reasons for this are not clear for now. Can you show screenshots of Interfaces tab and VLANs table from Ports tab (you can PM this to me if needed)
#258
Just set Server.ImportConfigurationOnStartup in Configuration->Server Configuration to Never. 
#259
Yes, racks now have scaling limit so that units don't become too small. Looks like this is not ideal for dashboard use, I've created a ticket to improve that: https://track.radensolutions.com/issue/NX-2738
#260
General Support / Re: Mikrotik SFP Signal Monitoring
March 28, 2025, 06:13:34 PM
It's more a question for Mikrotik forum. Or you can also try to ask in our NetXMS support Telegram channel - may be there's someone with relevant experience.
I'd do full walk from .1 to look through all the oids. Another option could be to use ssh monitoring, if this value can be requested from Mikrotik's command line.
#261
That's a bug, fix will be in v. 5.2 which should be out quite soon
#262
General Support / Re: NetXMS not support /31
March 25, 2025, 12:21:49 PM
You can try deleting 105.10.10.0/30 subnet object. Then run configuration poll on the device - subnet should be recreated again. 
#263


In overall it's not recommended to increase Agent.CommandTimeout too much (like > then 5 seconds) because in situations when agents are slow to respond server will spend too much time waiting. 
If your query takes too long, you can use External metric provider - in this case command is executed in the backgound and agent caches values. https://netxms.org/documentation/adminguide/agent-management.html#externalmetricprovider
#264
This means that something is configured incorrectly in the DCI. 
Is Origin set correctly? Anything in transformation script?
#265
What if you try to read value of that metric using nxget?
#266
General Support / Re: NetXMS not support /31
March 25, 2025, 08:33:00 AM
You should paste it into the "Source". Then click "Execute" button on the toolbar (or F9 key on the keyboard) and it should produce some output in "Output".
#267
Процесс запуска через gdb такой:

убедиться, что в системе установлен пакет netxms-dbg

gdb /usr/bin/netxmsd

run -D

Дождаться креша процесса, потом дать команды:
bt
kill
quit
#268
General Support / Re: NetXMS not support /31
March 24, 2025, 09:44:15 AM
Yes, right, that's "execute server script" from the menu that opens on the right-click on the device
#269
General Support / Re: NetXMS not support /31
March 21, 2025, 12:46:45 PM
Please do "Execute script" from context menu of the node and run the following:

for (p : $object.parents) println(classof(p), p.name .. " (" .. p.id .. ")" );

It will output all containers and subnets where this node is present along with their IDs in brackets. You can use this ID to search under Entire network by entering #123 in the filter (replace 123 with actual id)
#270
On any node under Infrastructure Services there's Data Collection tab. The screenshots are from properties of a Data Collection Item (DCI) from that tab.

DCIs can be specified on nodes, or in template (which should be applied to nodes). You can create your DCIs on a node to test them and move to a template later on.

We have some info on data collection in the docs: https://netxms.org/documentation/adminguide/data-collection.html , but feel free to ask questions.