blob: d51b8654ac56c5a44caca351316f1ea563a9e912 (
plain)
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
-- *****************************************************************
-- UBQS-MISC-MIB: Ubiquoss Miscellaneous MIB file
--
-- June 2011, Hyung Eun Park
--
-- Copyright (c) 2009 by Ubiquoss, Corp.
-- All rights reserved.
--
-- *****************************************************************
--
UBQS-MISC-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE
FROM RFC-1212
DisplayString,
PhysAddress,
TruthValue
FROM SNMPv2-TC
ifIndex
FROM IF-MIB
ubiMgmtv2
FROM UBQS-SMI;
ubiMiscMIB MODULE-IDENTITY
LAST-UPDATED "201106010000Z"
ORGANIZATION "Ubiquoss Corp."
CONTACT-INFO
" Ubiquoss
Customer Service
Postal: 24F Milennium B/D,
467-12, Dogok-Dong,
GangNam-Gu, Seoul 135-270
Korea
Tel: 82-2-2190-3100"
DESCRIPTION
"The UBQS-MISC-MIB is used to get
the miscellaneous information of system."
::= { ubiMgmtv2 22 }
-- ***********************************************************
-- Textual Conventions
-- ***********************************************************
-- ***************************************************************
-- ubiMiscMIB
-- ***************************************************************
ubiMiscMIBNotificationPrefix OBJECT IDENTIFIER ::= { ubiMiscMIB 0 }
ubiMiscMIBObjects OBJECT IDENTIFIER ::= { ubiMiscMIB 1 }
ubiMiscMIBConformance OBJECT IDENTIFIER ::= { ubiMiscMIB 2 }
ubiMiscRemoteReset OBJECT IDENTIFIER ::= { ubiMiscMIBObjects 1 }
ubiMacSpoofing OBJECT IDENTIFIER ::= { ubiMiscMIBObjects 2 }
ubiMiscStoreHistory OBJECT IDENTIFIER ::= { ubiMiscMIBObjects 3 }
-- ***********************************************************
-- ubiMiscRemoteReset
-- ***********************************************************
ubiMiscRemoteResetEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Activate/de-activate function of remote-reload"
DEFVAL { false }
::= { ubiMiscRemoteReset 1 }
ubiMiscPortRemoteResetTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiMiscPortRemoteResetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects which provide the
information about the remote reset of port."
::= { ubiMiscRemoteReset 2 }
ubiMiscPortRemoteResetEntry OBJECT-TYPE
SYNTAX UbiMiscPortRemoteResetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A entry containing information about
remote reset of port"
INDEX { ifIndex }
::= { ubiMiscPortRemoteResetTable 1 }
UbiMiscPortRemoteResetEntry ::= SEQUENCE {
ubiMiscPortRemoteReset INTEGER
}
ubiMiscPortRemoteReset OBJECT-TYPE
SYNTAX INTEGER {
none(0),
reset(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reload(reset) remote device."
::= { ubiMiscPortRemoteResetEntry 1 }
-- ***********************************************************
-- ubiMacSpoofing
-- ***********************************************************
ubiMacSpoofingEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It activate/de-activate function of Mac-Spoofing"
::= { ubiMacSpoofing 1 }
-- ***********************************************************
-- ubiMiscHistoryStore
-- ***********************************************************
ubiMiscStoreHistoryEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It activates/de-activates function of storing command history."
::= { ubiMiscStoreHistory 1 }
-- *****************************************************************
-- ubiMiscMIBConformance
-- *****************************************************************
--
-- conformance information
--
ubiMiscMIBCompliances OBJECT IDENTIFIER ::= { ubiMiscMIBConformance 1 }
ubiMiscMIBGroups OBJECT IDENTIFIER ::= { ubiMiscMIBConformance 2 }
-- compliance statements
ubiMiscMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement
the Ubiquoss miscellaneous information MIB."
MODULE
MANDATORY-GROUPS { ubiSysRemoteResetGroup }
GROUP ubiSysRemoteResetGroup
DESCRIPTION
""
::= { ubiMiscMIBCompliances 1 }
-- units of conformance
ubiSysRemoteResetGroup OBJECT-GROUP
OBJECTS {
ubiMiscRemoteResetEnabled,
ubiMiscPortRemoteReset
}
STATUS current
DESCRIPTION
"The collection of objects which are used to manager the
remote reset funtion of system."
::= { ubiMiscMIBGroups 1 }
END
|