T.R | Title | User | Personal Name | Date | Lines |
---|
4364.1 | Use RMON Alarms and Events via Netview. | NETCAD::GALLAGHER | | Thu Apr 17 1997 11:02 | 22 |
|
The DECswitch 900EF doesn't support the optional bridge MIB traps.
(No, I don't know why.)
If, by "traping those events" you mean to use RMON Alarms and Events,
then yes, it is possible. You'll need firmware version 1.7 or greater.
(I'm not sure there is a "greater".)
You can alarm on the bridge MIB (rfc1493) dot1dStpTimeSinceTopologyChange
object. Since it's type is "TimeTicks" you should create a rising
delta of 1 alarm so that a trap and/or log is generated each time the
value of the object changes.
alarmVariable dot1dStpTimeSinceTopologyChange.0
alarmSampleType deltaValue
alarmStartupAlarm risingOrFallingAlarm
alarmRisingThreshold 1
alarmFallingThreshold 0
alarmRisingEventIndex [the event index]
alarmFallingEventIndex 0
-Shawn
|
4364.2 | | NETCAD::GALLAGHER | | Thu Apr 17 1997 11:06 | 4 |
| p.s. I *think* they only need to trap this object on the root bridge.
They may want to install it on another switch in case the
root fails. My point is, I don't think they need to install
it on each DECswitch900EF on their corporate backbone.
|
4364.3 | Succeed....but why alarmValue=100? | NNTPD::"[email protected]" | Feynman Lo | Fri Apr 18 1997 09:59 | 18 |
| Thanks for the pretty advice. I have succeeded trapping
the topology change to Netview.
But why when I query the value of alarmValue, it is
shown up as equal to 100?
I find difficulty in this case because the variable I
am checking is itselt of type TimeTicks. I set
the alarmInterval=1 and alarmRisingThreshold=1.
But why don't the alarmValue equal to 1?
Could you please kindly enlighten me?
-feynman
[Posted by WWW Notes gateway]
|
4364.4 | Why not an alarmValue=100 ? ;-) | NETCAD::GALLAGHER | | Fri Apr 18 1997 12:07 | 22 |
| |But why when I query the value of alarmValue, it is
|shown up as equal to 100?
|
|I find difficulty in this case because the variable I
|am checking is itselt of type TimeTicks. I set
|the alarmInterval=1 and alarmRisingThreshold=1.
|But why don't the alarmValue equal to 1?
The object you're polling, TopologyChange, is a TimeTicks type.
Although it's in 100dth of a second, the bridge spanning tree
runs in seconds. So a value of 100 indicates 1 second since the
last spanning tree topology change. If you had set an 'absolute'
alarm, the alarmValue would be the actual value of TopologyChange.
Since you set a 'delta' alarm, the alarmValue is the difference
of TopologyChange from one poll to another - 1 second in this
case. (Never mind the fact that an 'absolute' alarm wouldn't
work for you in this case.)
I'm not sure why you expect an alarmValue of 1.
Does this help?
-Shawn
|