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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
CISCOSB-DIGITALKEYMANAGE-MIB DEFINITIONS ::= BEGIN
-- Title: CISCOSB ROS
-- Private DIGITAL KEY MANAGE MIB
-- Version: 7.50
-- Date: 26-Jan-2011
IMPORTS
switch001 FROM CISCOSB-MIB
OBJECT-TYPE, MODULE-IDENTITY FROM SNMPv2-SMI
DisplayString, RowStatus, DateAndTime, TruthValue FROM SNMPv2-TC;
rlDigitalKeyManage MODULE-IDENTITY
LAST-UPDATED "200701020000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Postal: 170 West Tasman Drive
San Jose , CA 95134-1706
USA
Website: Cisco Small Business Support Community <http://www.cisco.com/go/smallbizsupport>"
DESCRIPTION
"This private MIB module defines digital key manage private MIBs."
REVISION "200701020000Z"
DESCRIPTION
"Initial revision."
::= { switch001 86 }
rlMD5KeyChainTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlMD5KeyChainEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Key-chains and keys"
::= { rlDigitalKeyManage 1 }
rlMD5KeyChainEntry OBJECT-TYPE
SYNTAX RlMD5KeyChainEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Key-chain with key ID that belongs to this chain"
INDEX {rlMD5KeyChainName, rlMD5KeyChainKeyId}
::= { rlMD5KeyChainTable 1 }
RlMD5KeyChainEntry ::= SEQUENCE {
rlMD5KeyChainName DisplayString,
rlMD5KeyChainKeyId INTEGER,
rlMD5KeyChainKey DisplayString,
rlMD5KeyChainKeyStartAccept DateAndTime,
rlMD5KeyChainKeyStartGenerate DateAndTime,
rlMD5KeyChainKeyStopGenerate DateAndTime,
rlMD5KeyChainKeyStopAccept DateAndTime,
rlMD5KeyChainKeyValidForAccept TruthValue,
rlMD5KeyChainKeyValidForGenerate TruthValue,
rlMD5KeyChainRowStatus RowStatus
}
rlMD5KeyChainName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the key-chain to which belongs
the secret authentication key"
::= { rlMD5KeyChainEntry 1 }
rlMD5KeyChainKeyId OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A 8-bit identifier for the secret authentication key.
This identifier unique only for specific key chain"
::= { rlMD5KeyChainEntry 2 }
rlMD5KeyChainKey OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The 128-bit secret authentication key"
::= { rlMD5KeyChainEntry 3 }
rlMD5KeyChainKeyStartAccept OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The time that the router will start accepting packets
that have been created with the given key"
DEFVAL { '00000000'H }
::= { rlMD5KeyChainEntry 4 }
rlMD5KeyChainKeyStartGenerate OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The time that the router will start using the key
for packet generation"
DEFVAL { '00000000'H }
::= { rlMD5KeyChainEntry 5 }
rlMD5KeyChainKeyStopGenerate OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The time that the router will stop using the key
for packet generation"
DEFVAL { 'FFFFFFFF'H }
::= { rlMD5KeyChainEntry 6 }
rlMD5KeyChainKeyStopAccept OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The time that the router will stop accepting packets
that have been created with the given key"
DEFVAL { 'FFFFFFFF'H }
::= { rlMD5KeyChainEntry 7 }
rlMD5KeyChainKeyValidForAccept OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A value of 'true' indicates that given key is valid for
accepting packets"
DEFVAL { false }
::= { rlMD5KeyChainEntry 8 }
rlMD5KeyChainKeyValidForGenerate OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A value of 'true' indicates that given key is valid for
packet generation"
DEFVAL { false }
::= { rlMD5KeyChainEntry 9 }
rlMD5KeyChainRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"It is used to insert, update or delete an entry"
::= { rlMD5KeyChainEntry 10 }
END
|