I saw a post without a response to this question back on '04.
Can I setup Orion to send an alert when a switchport goes into an 'errdisable' state?
Good idea. please submit results --
should be able to if you can determine what Orion's status is for that in the DB. If you have some ports in that state, find out what the NodeID is using the Nodes table in the DB. Then run the below query agains the Interfaces table to find the appropriate interface:
SELECT InterfaceID, Caption, Status, OperStatus FROM Interfaces WHERE NodeID = 'x'
x=<NodeID from Nodes Table> search through the table and find your interface and note the Operational Status and Status (not sure which it will be) and compare with others. One of those values should indicate errdisabled.
Hope that helps
Thanks for the info. I unfortunately don't have any in that state at present and want to capture them if/when they do, thus my inquiry. In the Alert Configurator, they list 'unknown', 'up', 'down', but I don't see 'errdisabled'.
Thanks again.
yea, that's my issue too. Don't have any there. great idea though. Anyone please post if you know/get this info... Thx
I would love to get this information as well
Here is the OID for that information
1.3.6.1.4.1.9.5.1.4.1.1.23
I tried to setup a custom poller but OID IS NOT SUPPORTED, I do have one port that is err-disabled and I have been trying to find a way to notify me when this happens.
Is there an update to this post?
Which portion are you looking for an update on? The feature request?
Yes, I figured out how to do this by:
Syslog Viewer, creating a new Alert/Filter, and then defining *ERR_DISABLE* under Message Type Pattern.
Is there another way within NCM/NPM to do this? Is there a report that I can generate with all the errdisable ports on it?
I'm not sure about those items but I have marked this for the PM to look at.
Bill,
One of our former SE's posted a UnDP to the content exchange (see his post earlier in this thread) that will monitor these statistics, from which you can generate a report.
HTH,
Craig
I had this question in a training class I did recently and after looking at it a bit we discovered the same thing you did - error disabled ports look just like shutdown to Orion.
To work around that, since legitimately shutdown ports were few and far between, we created a yes/no interface custom property called "Actually_Shutdown" and populated it. At that point our advanced interface alert could read 'interface.status is shutdown and interface.actually_shutdown is no' to let us know when one had been disabled due to policy.
It adds a little maintenance overhead, but it takes the temporary report fix one step further to real-time alerting.