Comments
-
This doesn't work for me either, but I do see Powered by Leaflet in the lower right corner of the map now. The errors are gone and I just get a grey background on the map. edit: got it working, it was a simple copy paste problem. thanks so much!!!!
-
I was able to do this with a crazy excel spreadsheet and SQL queries. I have 701 IP groups with well over 1000 subnets defined. NPM 11.5RC2 and NTA4.1, but this also worked with NTA4.03 I'm going to do a poor job of explaining this but hopefully it can get some people moving in the right direction. I was hesitant to post…
-
Change the format from Text to IP Address.
-
This behavior started happening around 10.7 as I recall. It's still there in 11.5. I actually opened a ticket for it, but gave up and closed the ticket when they started asking for diagnostic files. I monitor a few hundred WAN routers, and in a lot of cases the bandwidth statement on the WAN interface is incorrect. I have…
-
I did something that sorta accomplishes this. You can put the custom properties in a group and copy them from the group to the nodes within the group using a scheduled SQL query. In my organization we designate a "SiteID" to represent a physical location. I have a group created for every SiteID, containing the nodes at…
-
Netflow on Check Point firewalls only shows traffic accelerated by SecureXL, so you will never see all of the network traffic. If you want to see everything you need a switch/router on each side of the firewall running Netflow.
-
For Cisco devices, first create a new Universal Device Poller and poll OID 1.3.6.1.2.1.47.1.1.1.1.11 Use the column entPhysicalDescr for the label. For the actual report, here is what I use (this could use some cleaning up, but it works). SELECT [CustomPollerAssignment].NodeID, Nodes.Caption, Nodes.MachineType,…
-
This only works for Cisco devices, but I did this by polling OID 1.3.6.1.4.1.9.9.23.1.2.1.1.4 (cdpCacheAddress). With that OID you can poll a Cisco devices CDP neighbors hostname and IP address. Then you can create a report containing the CDP neighbors on every device and compare the hostnames/IP's to the Nodes and…
-
This is normal with Check Point. I haven't tested it yet, but Check Point R77.20 and up on a Check Point appliance should show the appliance model number. The exact wording in the r77.20 release notes is: After upgrading the Gaia OS, querying the SNMP OID 'SysObjectID' returns a specific appliance model instead of "generic…
-
I think that concurrent sessions to the web server are more important than concurrent users, especially if you have auto page refresh set to a low value. With auto page refresh, one user that leaves a lot of browser tabs open all day can really hammer the server. I saw a big improvement in the user experience by increasing…
-
I have seen this on Check Point boxes when you try to monitor the physical IP and virtual IP simultaneously (in a cluster environment). You should only monitor the physical IP and not the VIP.
-
This SQL query should work. select NodeID, Caption from Nodes where not Caption in ( SELECT distinct FullName FROM ContainerMemberSnapshots where EntityDisplayName = 'Node' )
-
I had a ticket open with Solarwinds for a long time about this, and we concluded that it's caused by the Check Point end. Check Point does not return a SysObjectID for anything besides vs0. SW support gave me a workaround to be able to add them without having a SysObjectID, and cpu utilization/memory usage did not work,…