1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
-- MIB created 10/11/99 20:28:39, by
-- SMIC (the next generation) version 1.6.29, November 22, 1994.
IBM-FRAMERELAY-MIB DEFINITIONS ::= BEGIN
-- From file: "ibmframerelay.mi2"
-- Compile options "G A T M"
IMPORTS
Counter32, Integer32, IpAddress, Gauge32
FROM SNMPv2-SMI-v1
OBJECT-TYPE
FROM RFC-1212
DisplayString
FROM SNMPv2-TC-v1
enterprises
FROM RFC1155-SMI
ifIndex
FROM RFC1213-MIB
frCircuitIfIndex, frCircuitDlci
FROM RFC1315-MIB;
ibmIROCfrcircuit OBJECT IDENTIFIER ::= { enterprises ibm(2) ibmProd(6) ibmIROC(119) ibmIROCrouting(4) ibmIROCroutingfr(4) 5 }
-- MODULE-IDENTITY
-- LastUpdated
-- 9902171200Z
-- OrgName
-- IBM
-- ContactInfo
-- Randy Worzella
-- IBM Corporation
-- 800 Park Offices Drive
-- FBWA/664
-- P.O. Box 12195
-- Research Triangle Park, NC 27709, USA
-- Tel: 1 919 254 2202
-- E-mail: worzella@us.ibm.com
-- Descr
-- This MIB module contains enterprise specific definitions for
-- frame relay circuit management.
ibmframerelayPVCTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbmframerelayPVCEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table providing PVC information and the capabiilty
to clear counters."
::= { ibmIROCfrcircuit 1 }
ibmframerelayPVCEntry OBJECT-TYPE
SYNTAX IbmframerelayPVCEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Entry identifying a particular permanent virtual circuit."
INDEX { frCircuitIfIndex, frCircuitDlci }
::= { ibmframerelayPVCTable 1 }
IbmframerelayPVCEntry ::= SEQUENCE {
ibmframerelayPVCCircName DisplayString,
ibmframerelayPVCTimesActive Counter32,
ibmframerelayPVCTimesInactive Counter32,
ibmframerelayPVCTimesCongested Counter32,
ibmframerelayPVCTxQueued Gauge32,
ibmframerelayPVCTxDropped Counter32,
ibmframerelayPVCClearAll Integer32
}
ibmframerelayPVCCircName OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name string assigned to this PVC."
::= { ibmframerelayPVCEntry 1 }
ibmframerelayPVCTimesActive OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The times this PVC entered active state as
reported by frCircuitState."
::= { ibmframerelayPVCEntry 2 }
ibmframerelayPVCTimesInactive OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The times this PVC entered inactive state as
reported by frCircuitState."
::= { ibmframerelayPVCEntry 3 }
ibmframerelayPVCTimesCongested OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The times this PVC has become congested."
::= { ibmframerelayPVCEntry 4 }
ibmframerelayPVCTxQueued OBJECT-TYPE
SYNTAX Gauge32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current number of frames queued for transmission
and waiting for space on the device transmit queue."
::= { ibmframerelayPVCEntry 5 }
ibmframerelayPVCTxDropped OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of frames discarded because they could
not be transmitted due to output queue overflow."
::= { ibmframerelayPVCEntry 6 }
ibmframerelayPVCClearAll OBJECT-TYPE
SYNTAX Integer32
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When SET to a value of 0, all the frame relay
counters for this PVC are cleared.
When READ, this object always returns a value of 0,
since this object is intended as a trigger, rather than
providing information."
::= { ibmframerelayPVCEntry 7 }
END
|