summaryrefslogtreecommitdiff
path: root/MIBS/huawei/HUAWEI-SZONE-MIB
blob: d119d007b2af723048410667f9ae821b8d7ec88e (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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
--  =================================================================
-- Copyright (C) 2003 by  HUAWEI TECHNOLOGIES. All rights reserved
-- 
-- Description: HUAWEI-SZONE-MIB
-- Reference:   Security Zone
-- Version:     V1.0
-- History:
--  
--  V1.20 2005-05-30 Wei Rixi(22510) added mplsVpnVrfName as table index,
--              Added fields to HwSZoneInterZoneEntry and hwSZoneInterZoneCfgGroup.
--  V1.00 2003-03-18 Yang Yinzhu(28193)  initial version
-- =================================================================

HUAWEI-SZONE-MIB DEFINITIONS ::= BEGIN

    IMPORTS
        OBJECT-GROUP            
            FROM SNMPv2-CONF            
        Integer32, Gauge32, OBJECT-TYPE, MODULE-IDENTITY            
            FROM SNMPv2-SMI     
        TruthValue            
            FROM SNMPv2-TC       
        RowStatus            
            FROM SNMPv2-TC
        mplsVpnVrfName            
            FROM MPLS-VPN-MIB            
        hwDatacomm
            FROM HUAWEI-MIB;

    hwSZONE MODULE-IDENTITY 
        LAST-UPDATED "200304080900Z"        -- April 08, 2003 at 09:00 GMT
        ORGANIZATION 
            "Huawei Technologies co.,Ltd."
        CONTACT-INFO 
            "
            R&D BeiJing, Huawei Technologies co.,Ltd.
            Huawei Bld.,NO.3 Xinxi Rd.,
            Shang-Di Information Industry Base,
            Hai-Dian District Beijing P.R. China
            Zip:100085
            Http://www.huawei.com
            E-mail:support@huawei.com
            "
        DESCRIPTION 
            "
            V1.00
            The HUAWEI-SZONE-MIB contains objects to manage the security zone for firewall product.
            "
        ::= { hwDatacomm 15 }

    --
    -- Node definitions
    --
    
    -- 1.3.6.1.4.1.2011.5.25.15.1
    hwSZoneZoneCfg OBJECT IDENTIFIER ::= { hwSZONE 1 }
    
    -- 1.3.6.1.4.1.2011.5.25.15.1.1
    hwSZoneZoneTable OBJECT-TYPE
        SYNTAX SEQUENCE OF HwSZoneZoneEntry
        MAX-ACCESS not-accessible
        STATUS current
        DESCRIPTION
            "This table contains all the security zones defined in the system."
        ::= { hwSZoneZoneCfg 1 }
    
    -- 1.3.6.1.4.1.2011.5.25.15.1.1.1
    hwSZoneZoneEntry OBJECT-TYPE
        SYNTAX HwSZoneZoneEntry
        MAX-ACCESS not-accessible
        STATUS current
        DESCRIPTION
            "Define the parameters of security zone."
        INDEX { mplsVpnVrfName, hwSZoneZoneID }
        ::= { hwSZoneZoneTable 1 }
    
    HwSZoneZoneEntry ::=
        SEQUENCE { 
            hwSZoneZoneID
                Integer32,
            hwSZoneZoneName
                OCTET STRING,
            hwSZoneSecPriority
                Integer32,
            hwSZoneZoneStatus
                RowStatus
            }

    -- 1.3.6.1.4.1.2011.5.25.15.1.1.1.1
    hwSZoneZoneID OBJECT-TYPE
        SYNTAX Integer32 (0..128)
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "
            An internal number to distinguish security zone.
            Different zone has different number.
            "
        ::= { hwSZoneZoneEntry 1 }
    
    -- 1.3.6.1.4.1.2011.5.25.15.1.1.1.2
    hwSZoneZoneName OBJECT-TYPE
        SYNTAX OCTET STRING (SIZE (1..31))
        MAX-ACCESS read-create
        STATUS current
        DESCRIPTION
            "
            The name of security zone.
            Different zone has different name."
        ::= { hwSZoneZoneEntry 2 }
    
    -- 1.3.6.1.4.1.2011.5.25.15.1.1.1.3
    hwSZoneSecPriority OBJECT-TYPE
        SYNTAX Integer32 (0..200)
        MAX-ACCESS read-create
        STATUS current
        DESCRIPTION
            "
            The priority of security zone.
            Different zone has different priority.
            "
        ::= { hwSZoneZoneEntry 3 }
    
    -- 1.3.6.1.4.1.2011.5.25.15.1.1.1.4
    hwSZoneZoneStatus OBJECT-TYPE
        SYNTAX RowStatus
        MAX-ACCESS read-create
        STATUS current
        DESCRIPTION
            "Row status, can be CreateAndGo or Destroy."
        ::= { hwSZoneZoneEntry 4 }
    
    -- 1.3.6.1.4.1.2011.5.25.15.1.2
    hwSZoneZoneIFTable OBJECT-TYPE
        SYNTAX SEQUENCE OF HwSZoneZoneIFEntry
        MAX-ACCESS not-accessible
        STATUS current
        DESCRIPTION
            "
            This table define the interfaces belong to which security zone.
            An interface can only belong to one security zone."
        ::= { hwSZoneZoneCfg 2 }
    
    -- 1.3.6.1.4.1.2011.5.25.15.1.2.1
    hwSZoneZoneIFEntry OBJECT-TYPE
        SYNTAX HwSZoneZoneIFEntry
        MAX-ACCESS not-accessible
        STATUS current
        DESCRIPTION
            " "
        INDEX { hwSZoneIFZoneID, hwSZoneZoneIFIndex }
        ::= { hwSZoneZoneIFTable 1 }
    
    HwSZoneZoneIFEntry ::=
        SEQUENCE { 
            hwSZoneIFZoneID
                Integer32,
            hwSZoneZoneIFIndex
                Gauge32,
            hwSZoneZoneIFStatus
                RowStatus
         }

    -- 1.3.6.1.4.1.2011.5.25.15.1.2.1.1
    hwSZoneIFZoneID OBJECT-TYPE
        SYNTAX Integer32 (0..128)
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The ID of security zone."
        ::= { hwSZoneZoneIFEntry 1 }
    
    -- 1.3.6.1.4.1.2011.5.25.15.1.2.1.2
    hwSZoneZoneIFIndex OBJECT-TYPE
        SYNTAX Gauge32
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The index of interface."
        ::= { hwSZoneZoneIFEntry 2 }
    
    -- 1.3.6.1.4.1.2011.5.25.15.1.2.1.3
    hwSZoneZoneIFStatus OBJECT-TYPE
        SYNTAX RowStatus
        MAX-ACCESS read-create
        STATUS current
        DESCRIPTION
            "Row status, can be CreateAndGo or Destroy."
        ::= { hwSZoneZoneIFEntry 3 }
    
    -- 1.3.6.1.4.1.2011.5.25.15.2
    hwSZoneInterZoneCfg OBJECT IDENTIFIER ::= { hwSZONE 2 }
    
    -- 1.3.6.1.4.1.2011.5.25.15.2.1
    hwSZoneInterZoneTable OBJECT-TYPE
        SYNTAX SEQUENCE OF HwSZoneInterZoneEntry
        MAX-ACCESS not-accessible
        STATUS current
        DESCRIPTION
            "
            This table define all inter zone of system.
            The inter zone can't be create directly, 
            when a security zone is created, the related inter zones are created automatically,
            and when deleting a zone, the related inter zones are deleted.
            "
        ::= { hwSZoneInterZoneCfg 1 }
    
    -- 1.3.6.1.4.1.2011.5.25.15.2.1.1
    hwSZoneInterZoneEntry OBJECT-TYPE
        SYNTAX HwSZoneInterZoneEntry
        MAX-ACCESS not-accessible
        STATUS current
        DESCRIPTION
            " "
        INDEX { mplsVpnVrfName, hwSZoneInterZoneZoneID1, hwSZoneInterZoneZoneID2 }
        ::= { hwSZoneInterZoneTable 1 }
    
    HwSZoneInterZoneEntry ::=
        SEQUENCE { 
            hwSZoneInterZoneZoneID1
                Integer32,
            hwSZoneInterZoneZoneID2
                Integer32,
            hwSZoneInterZoneEnableFW
                TruthValue,
            hwSZoneInterZoneStatus
                RowStatus
            }

    -- 1.3.6.1.4.1.2011.5.25.15.2.1.1.1
    hwSZoneInterZoneZoneID1 OBJECT-TYPE
        SYNTAX Integer32 (0..128)
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The ID of first zone that compose the inter-zone."
        ::= { hwSZoneInterZoneEntry 1 }
    
    -- 1.3.6.1.4.1.2011.5.25.15.2.1.1.2
    hwSZoneInterZoneZoneID2 OBJECT-TYPE
        SYNTAX Integer32 (0..128)
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The ID of second zone that compose the inter-zone."
        ::= { hwSZoneInterZoneEntry 2 }
    
    -- 1.3.6.1.4.1.2011.5.25.15.2.1.1.3
    hwSZoneInterZoneEnableFW OBJECT-TYPE
        SYNTAX TruthValue
        MAX-ACCESS read-create
        STATUS current
        DESCRIPTION
            "The switch indicates whether the interzone enables firewall."
        DEFVAL { false }
        ::= { hwSZoneInterZoneEntry 3 }
                    
    -- 1.3.6.1.4.1.2011.5.25.15.2.1.1.4
    hwSZoneInterZoneStatus OBJECT-TYPE
        SYNTAX RowStatus
        MAX-ACCESS read-create
        STATUS current
        DESCRIPTION
            "Row status, can be CreateAndGo."
        ::= { hwSZoneInterZoneEntry 4 }
        
    -- 1.3.6.1.4.1.2011.5.25.15.3
    hwSZoneConformance OBJECT IDENTIFIER ::= { hwSZONE 3 }
    
    -- 1.3.6.1.4.1.2011.5.25.15.3.1
    hwSZoneCompliance OBJECT IDENTIFIER ::= { hwSZoneConformance 1 }
    
    -- 1.3.6.1.4.1.2011.5.25.15.3.2
    hwSZoneMibGroups OBJECT IDENTIFIER ::= { hwSZoneConformance 2 }
    
    -- 1.3.6.1.4.1.2011.5.25.15.3.2.1
    hwSZoneZoneCfgGroup OBJECT-GROUP
        OBJECTS { hwSZoneZoneName, hwSZoneSecPriority, hwSZoneZoneStatus, hwSZoneZoneIFIndex, hwSZoneZoneIFStatus, 
            hwSZoneZoneID, hwSZoneIFZoneID }
        STATUS current
        DESCRIPTION 
            "Description."
        ::= { hwSZoneMibGroups 1 }
    
    -- 1.3.6.1.4.1.2011.5.25.15.3.2.2
    hwSZoneInterZoneCfgGroup OBJECT-GROUP
        OBJECTS { hwSZoneInterZoneZoneID1, hwSZoneInterZoneZoneID2, hwSZoneInterZoneEnableFW, hwSZoneInterZoneStatus}
        STATUS current
        DESCRIPTION 
            "Description."
        ::= { hwSZoneMibGroups 2 }

END