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

#46
General Support / Re: Monitor SYS_DB_QUERY_FAILED
October 16, 2024, 02:44:21 PM
Hi!

Looks like your database runs out of space and is not configured for automatic growth. You have to manually add new data file or enable automatic growth.

Best regards,
Victor
#47
Just fixed the issue, fix will be included into release 5.1.0.

Best regards,
Victor
#48
Announcements / NetXMS Team on GITEX
October 14, 2024, 12:28:34 PM
GITEX started today in Dubai, and our team is participating. If you happen to be there and want to chat with us or get first hand answers to your questions, feel free to visit us at stand H1-C30 (Hall 1).
 
#49
Пока как workaround можно сделать configuration poll hook, в котором находить нужные интерфейсы, и на них вызывать setExcludeFromTopology(true). Что-то вроде этого:

if ($node)
{
   for(iface : $node.interfaces)
   {
      for(a : iface.ipAddressList)
      {
         if (a == "0.1.134.160" or a == "192.168.1.1")
         {
            iface.setExcludeFromTopology(true);
            break;
         }
      }
   }
}

В версии 5.2 добавим какой-то более удобный встроенный механизм.
#50
General Support / Re: Run sheduled deployment
October 10, 2024, 01:29:29 PM
Task handler Agent.DeployPackage expects parameter string as set of key=value entries separated by semicolons. Currently only one key is supported - "package". So if you have package with ID 123 then setting task parameter to
package=123
should do the trick.

Best regards,
Victor
#51
General Support / Re: How to set node dependencies
October 09, 2024, 09:47:30 PM
I mean what NetXMS shows on overview page for those nodes in "Capabilities" section - to check how server sees those devices.
#52
General Support / Re: Expected number of connections
October 08, 2024, 03:18:33 PM
This is firewall design problem in my opinion, as this is perfectly normal traffic pattern. However, I think we can implement configurable option in our SNMP stack to keep pool of sockets and reuse them when possible.
Added feature request to the tracker: https://track.radensolutions.com/issue/NX-2614

Best regards,
Victor
#53
General Support / Re: Bug in WebApi for zone objects?
October 08, 2024, 03:06:16 PM
Just fixed it. Official fix will be in 5.1, but if you need it to work in 5.0, you can rebuild web API from source branch stable-5.0 - fix is backported here as well.

Best regards,
Victor
#54
General Support / Re: Planned action will not start
October 08, 2024, 02:57:32 PM
Just added new handler type Agent.ExecuteCommand - it will be available in version 5.1.

Best regards,
Victor
#55
General Support / Re: Planned action will not start
October 08, 2024, 08:55:46 AM
This is because scheduled task handler Action.Execute is intended for use by EPP rules for delayed action execution, and it requires reference to existing event. Also note that it is for executing server actions (that are configured on server side under Configuration -> Actions), not for executing agent-side actions (which we sometimes calling "agent commands" or "agent predefined commands" to avoid this confusion).
For now the only workaround to execute agent command by scheduler is to use scheduled script as in post that you've mentioned. I will add new scheduled task handler in 5.1 for direct agent command execution from scheduled tasks.

Best regards,
Victor
#56
General Support / Re: How to set node dependencies
October 08, 2024, 08:47:45 AM
Could you please show capabilities for Ubuntu AP and adjacent router?

We currently does not have an option to configure L2 links manually, although we have this as feature request.

Best regards,
Victor
#57
General Support / Re: Planned action will not start
October 08, 2024, 08:21:21 AM
How do you schedule action execution?
#58
General Support / Re: How to set node dependencies
September 19, 2024, 04:09:03 PM
Do those Ubiquity APs support LLDP?

Also, important part of topology-based correlation is ability of the server to find route from itself to managed devices. Try to select one of the Ubiquity APs, choose "route from" from context menu, and select node representing NetXMS server itself as source. Will it show complete IP path?

Best regards,
Victor
#59
Hi,

from error message for checking smtps on port 465, looks that you have to provide server DNS name instead of IP address.

for port 25 - when you do telnet on that port, do you receive initial SMTP response?

Best regards,
Victor
#60
General Support / Re: NetXMS monitoring tool question
September 19, 2024, 12:23:33 PM
Hi!

You can use object queries. Go to Tools -> Find Object, and use the following query (I assume you are using NetXMS 5.x):

with
Device = { node.name },
ExpectedState = { ['UP','DOWN','IGNORE'][expectedState] },
CurrentState = { ['UNKNOWN','UP','DOWN','TESTING','DORMANT','NOT PRESENT'][operState] }
type == INTERFACE

You will get list of all interfaces with expected state and current state (with some extra default columns).

Then you can export resulting table to CSV by selecting "Export all to CSV" from view menu or toolbar (in top right corner).

Best regards,
Victor