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
|
Klas4 DEFINITIONS ::= BEGIN
-- This MIB is used for testing the undo phase
IMPORTS
mib-2 FROM RFC1213-MIB
RowStatus FROM STANDARD-MIB
OBJECT-TYPE
FROM RFC-1212
klas3 FROM Klas3;
DisplayString ::=
OCTET STRING
friendsTable3 OBJECT-TYPE
SYNTAX SEQUENCE OF FriendsEntry3
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of klas friends."
::= { klas3 4 }
friendsEntry3 OBJECT-TYPE
SYNTAX FriendsEntry3
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"nope"
INDEX { fIndex3 }
::= { friendsTable3 1 }
FriendsEntry3 ::=
SEQUENCE {
fIndex3
INTEGER,
fStatus3
RowStatus }
fIndex3 OBJECT-TYPE
SYNTAX INTEGER
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"number of friend"
::= { friendsEntry3 1 }
fStatus3 OBJECT-TYPE
SYNTAX RowStatus
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this conceptual row."
::= { friendsEntry3 2 }
friendsTable4 OBJECT-TYPE
SYNTAX SEQUENCE OF FriendsEntry4
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of klas friends."
::= { klas3 5 }
friendsEntry4 OBJECT-TYPE
SYNTAX FriendsEntry4
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"nope"
INDEX { fIndex4 }
::= { friendsTable4 1 }
FriendsEntry4 ::=
SEQUENCE {
fIndex4
INTEGER,
fName4
INTEGER,
fStatus4
RowStatus }
fIndex4 OBJECT-TYPE
SYNTAX INTEGER
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"number of friend"
::= { friendsEntry4 1 }
fName4 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"name of friend"
::= { friendsEntry4 2 }
fStatus4 OBJECT-TYPE
SYNTAX RowStatus
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this conceptual row."
::= { friendsEntry4 3 }
friendsTable5 OBJECT-TYPE
SYNTAX SEQUENCE OF FriendsEntry5
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of klas friends."
::= { klas3 6 }
friendsEntry5 OBJECT-TYPE
SYNTAX FriendsEntry5
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"nope"
INDEX { fIndex5 }
::= { friendsTable5 1 }
FriendsEntry5 ::=
SEQUENCE {
fIndex5
INTEGER,
fName5
INTEGER,
fStatus5
RowStatus }
fIndex5 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"number of friend"
::= { friendsEntry5 1 }
fName5 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"name of friend"
::= { friendsEntry5 2 }
fStatus5 OBJECT-TYPE
SYNTAX RowStatus
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this conceptual row."
::= { friendsEntry5 3 }
END
|