Difference between revisions of "'Backbone' L3 Map - map without end-device subnets"

From NetXMS Wiki
Jump to navigation Jump to search
(Created page with "On dynamic L3 maps, normally you will see all subnets attached to a device, even if those subnets do not inter-connect to any other devices.<br> Usually, these subnets termina...")
 
m (Text replacement - "^" to "{{deprecated}}")
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
On dynamic L3 maps, normally you will see all subnets attached to a device, even if those subnets do not inter-connect to any other devices.<br>
{{deprecated}}On dynamic L3 maps, normally you will see all subnets attached to a device, even if those subnets do not inter-connect to any other devices.<br>
Usually, these subnets terminate end-devices, customers, etc.
Usually, these subnets terminate end-devices, customers, etc.


If you want to see just a 'backbone' map of your network, you can clear these subnet from the map using a filter.<br>
If you want to see just a 'backbone' map of your network, you can clear these subnets from the map using a filter.<br>
This filter will filter all subnets that only have 1 monitored device in them (usually this device is your router - the gateway for customers).
This filter will filter all subnets that only have 1 monitored device in them (usually this device is your router - the gateway for customers).


Line 9: Line 9:
</pre>
</pre>


The filter works by removing all subnet that have 1 child object under them.
The filter works by removing all subnets that have only 1 child object under them.

Latest revision as of 18:13, 13 September 2022

This Wiki is deprecated and we are are currrently migrating remaining pages into product documentation (Admin Guide, NXSL Guide)

On dynamic L3 maps, normally you will see all subnets attached to a device, even if those subnets do not inter-connect to any other devices.

Usually, these subnets terminate end-devices, customers, etc.

If you want to see just a 'backbone' map of your network, you can clear these subnets from the map using a filter.
This filter will filter all subnets that only have 1 monitored device in them (usually this device is your router - the gateway for customers).

return ($object->type != 1) || (GetObjectChildren($object)[1] != null);

The filter works by removing all subnets that have only 1 child object under them.