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

Topics - maliodpalube

#1
General Support / NetXMS default templates
September 11, 2025, 04:17:04 PM
Hello,

I was wondering If there are bulit in templates with Automatic Apply Rules already setup. For example for Synology QNAP, Lenovo XCC.

Since we have existing/old NetXMS server installation and some built in templates no longer function is there a repository of new  default/builtin templates that come with new NetXMS server installation?
#2
General Support / Automatic Apply rules based on OS type
September 11, 2025, 02:19:12 PM
Hello,

we are trying to apply templates based on OS type (linux/windows)

We have created and applied following filtering script on Automatic Apply Rules tab on Template Object properties, but no targets have been added. Is there anything we are doing wrong?

if (!$object || !$object.isNode())
   return false;

pn = LowerCase($object.platformName);
if ((pn != null) && StrStartsWith(pn, "windows"))
   return true;

sd = LowerCase($object.snmpSysDescription);
return (sd != null) && (StrFind(sd, "windows") != -1);

#3
Helo everybody.

We are having rpoblems with agent config policies. We have created new template and configured policy, and appled it to node. When doing Poll>Status it's visible in the log that the policy has been applied but no changes were made.
conf file on the server itself remains unchanged, no logs are visible in nxagentd.conf.d folder.


[2025-08-22 12:33:56]    Checking agent policy deployment
[2025-08-22 12:33:56]       Deploying policy Policy1 from template Template1

.
.
.

[2025-08-22 12:33:57] Node configuration was not changed after poll

Is there anything we are missing?