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 - Maxtron

#1
General Support / Move node to zone via NXSL
February 21, 2022, 11:23:12 AM
Hey,

I'm currently trying to segment my networks in NetXMS and thous, I'm trying to move nodes between zones. Doing it manually is no option here, as there are simply to many.
I looked around and found NXSL. I currently have a script, that reads the zoneUID but I can't find an option to write a new value in that field.

So my question is how do i override the default zoneUID?

Script:

global nodeCount = 0;
for (i = 0; i < 15; i++) {
for (j = 0; j < 255; j++) {
ipadr = "192.168." . i . "." . j;
node = FindNodeByIPAddress(ipadr);
if (node != NULL) {
println(node->zoneUIN);
nodeCount++;
}
}
}

println("\n\n\nNode Count: " . nodeCount);