mstraughan

Comments

  • im pretty new to soloarwinds but hopefully this is correct and helps. you should be able to enable the ipsec conditions to be monitored by the snmp using fw (config)# snmp-server enable traps ipsec start stop taken from http://www.cisco.com/en/US/docs/security/asa/asa84/configuration/guide/monitor_snmp.html which according…
  • You should be able to do something like that, figure out what the InterfaceID is and you could use something like: SELECT Nodes.Location, Nodes.Caption, Interfaces.InterfaceName, Interfaces.OutPercentUtil, Interfaces.InPercentUtil FROM Interfaces INNER JOIN Nodes ON Interfaces.NodeID = Nodes.NodeID WHERE…
  • by "not being monitored" do you mean that are currently unmanaged but still associated to a node or that were never picked up for polling to begin with?
  • in the Alert Manager when setting your Trigger Action, after you've selected Routing Neighbors as the property to be monitored for the alert, you are able to define SQL variables/statements so you should be able to add something similar to this ${Node.Caption} lost ${SQL:select Caption from Nodes where IP_Address =…
  • take a look at the blog From SolarWinds to Twitter with Plexxi's DSE talks about Plexxi using the Orion SDK Information to automate messages. you should be able to do something similar in creating plain text reports that can be used in vxml files for automated phone calls
  • I believe this sql statement should pull the information that you want, any interfaces with 0 in and out packets in more than 3 months that are not unplugged (status 4) or shutdown (status 10) SELECT DISTINCT n.Caption, i.InterfaceName FROM Interfaces AS i JOIN Nodes AS n ON i.NodeID = n.NodeID JOIN InterfaceTraffic_Daily…