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...")
(No difference)

Revision as of 18:09, 16 April 2015

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 subnet 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 subnet that have 1 child object under them.