jkrenzien

Comments

  • I would use the config block search for what you are trying to accomplish. I have a few similar rules that I have setup like the image below. Just modify the config block start to your interface criteria and the rule string to 'switchport mode trunk' . Let me know how this works for you.
  • You just need to combine them before using it. So after the { to start the script and before CLI @VRF = @INTERFACE_IP_ADD + "." @VRF = @VRF + @VLAN_ID
  • As petr.klang​ said NBAR2 will really help with this, but I have found a passable work around. Basically you just create IP groups for each of the O365 applications. The IPs can be found here. This will require entering a LOT of IPs into the group you will have to keep in mind that basing things off of just an IP is going…
  • Only place I have found with that information is the NCM admin guide and digging through Thwack.
  • From the SQL side of things you could just select from the results and remove the 95 from the original query. It should work, I think. But I am a SQL beginner that has made a couple things work. SELECT * FROM ( SELECT TOP 10000 CONVERT(DateTime, LTRIM(MONTH(DateTime)) + '/01/' + LTRIM(YEAR(DateTime)), 101) AS SummaryMonth,…
  • It has been a while since I have dealt with this specifically, but I beleive you have to disable the pre-compiled website to allow for some custom things to work. Disable pre-compiled website to allow optimization to run and be skipped - SolarWinds Worldwide, LLC. Help and Support
  • You make need to make a new device template. If you use the wizard you can have a custom enable command.
  • The active alerts resource doesn't support filtering and I can't think of a way to even limit the view of a page to only acknowledged alerts. This will likely need to be a feature request.
  • I would recommend splitting your 2nd and 3rd octets into 2 separate custom properties. They both likely signify something different (for me is is geographical area and site within that area). This would allow you to use it easily in many scripts as it is already digested and just needs to be put back together. If this is a…