Re: Port count report
cnorborg I have set this up as a Custom Query Resource on my Configs Tab. It does a good job a counting the ports but I seem to have one more extra port on my devices. I am looking at my...
View ArticleRe: Where configs are being stored ?
Should be fairly simple. The config itself is contained in the NCM_ConfigArchive table. If you're doing SWQL it would be the Cirrus.ConfigArchive table (not the NCM.ConfigArchive table! which...
View ArticleRe: Port count report
Yea, quite often it will include the Null interface, doesn't bother me much, but try this instead... SELECT COUNT(InterfaceDescription) AS NumPorts, N.CaptionFROM NCM.Interfaces I JOIN Orion.Nodes N ON...
View ArticleSolarWinds NCM Connector for Cisco SmartAdvisor
Saw this came out and took a look at the documentation. Is there a special kind/level of Cisco account/access you need for this to work? I have a Cisco.com account that is linked to my contracts (lets...
View ArticleRe: Port count report
That works. It even includes sub-interfaces which is fine with me since I use them a lot. Good work!
View ArticleRe: Port count report
The one additional port is the loopback I modified Craig's query to remove the loopback and the report shows all physical interfaces. SELECT COUNT(InterfaceDescription) AS NumPorts, N.CaptionFROM...
View ArticleRe: Port count report
Ok, I am taking each type of interface and configuring a Custom Query in a new View so I can look at a glance to see how many on a single device. Question: I would like to be able to do an...
View ArticleRe: SolarWinds NCM Connector for Cisco SmartAdvisor
You need to have a Cisco CCOID and a SmartNet subscription.
View ArticleRe: Juniper SA / MAG SSL VPN config backup - is there a way with NCM
this may be helpful. Support for Juniper NETCONF Interface, came across this looking for the same thing.
View ArticlePalo Alto FW config backups on NCM 7.1.1
I am running Palo Alto firewalls in our environment (PA-5060). I am running an older version of NCM (7.1.1). All of the templates I found on Thwack for any PaloAlto system seem to be for backing up...
View ArticleEverything DISA STIGs for your Network
This document is a work in progress. Introduction This page will be the Main Page for all DISA STIG information provided by CourtesyIT. The intent is to follow this page to alert you to new content...
View ArticleRe: Palo Alto FW config backups on NCM 7.1.1
I know it may be a mute point, but have you thought about upgrading to NCM 7.4. I have used Palo Altos in a previous position in Solarwinds and did not have to many issues with them. Granted I was...
View ArticleRe: Palo Alto FW config backups on NCM 7.1.1
Well, after a bit of research on this, I found that my understanding of the CLI output format of set was a bit flawed. Downloading the configuration from the Palo Alto via the standard commands of...
View ArticleRe: Palo Alto FW config backups on NCM 7.1.1
At some point I will upgrade NCM, but we have an FOE deployment that causes upgrades to be a 'not-so-friendly' process. The more I read about FOE deployments, the more anxious I am becoming to get rid...
View ArticleRe: Port count report
Here is a SQL query to identify total, used and available physical ports. You can modify the WHERE (InterfaceTypeDescription like '%ethernet%') statement to include whatever interface type you need to...
View ArticleRe: Port count report
vispetto working on your latest entry but running into a query to the solarwinds Information Service error. Going through the code looking for misspellings and extra characters.
View ArticleRe: Palo Alto FW config backups on NCM 7.1.1
mbrison I do not have access to the Palo Alto's any more. Old job.... new job we used ASA....uuugggghhhhhh!
View ArticleRe: SolarWinds NCM Connector for Cisco SmartAdvisor
Hmm. I seem to have both, wonder why it hates me.
View ArticleRe: Port count report
Was wondering one thing.... I can use the script SELECT COUNT(InterfaceDescription) AS NumPorts, N.CaptionFROM NCM.Interfaces I JOIN Orion.Nodes N ON (I.Node.CoreNodeID = N.NodeID)WHERE NOT...
View ArticleRe: Port count report
osberg I think you only need to join the custom properties table (line 3, below), and then add the custom property field to filter (line 5, below). SELECT COUNT(InterfaceDescription) AS NumPorts,...
View Article