blob: 6335f92a175e937ad5cb3fd158d612e7928d0e2e (
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
|
-- **************************************************************************
-- HILLSTONE-ZONE-MIB
--
-- Copyright (c) 2009 by Hillstone Networks, Inc.
-- All rights reserved.
--
-- Version: V3
-- Description: Hillstone Networks ZONE MIB Object Identifier Assignments
-- **************************************************************************
--
HILLSTONE-ZONE-MIB DEFINITIONS ::= BEGIN
IMPORTS
hillstoneZONE
FROM HILLSTONE-SMI
OBJECT-TYPE
FROM RFC-1212
RowStatus
FROM SNMPv2-TC;
-- textual conventions
DisplayString ::=
OCTET STRING
-- This data type is used to model textual information taken
-- from the NVT ASCII character set. By convention, objects
-- with this syntax are declared as having
--
-- SIZE (0..255)
hillstoneZoneObjects OBJECT IDENTIFIER ::= { hillstoneZONE 1 }
hillstoneZoneTable OBJECT-TYPE
SYNTAX SEQUENCE OF HillstoneZoneEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all the security zones defined in the system."
::= { hillstoneZoneObjects 1 }
HillstoneZoneEntry OBJECT-TYPE
SYNTAX HillstoneZoneEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Define the parameters of security zone."
INDEX { hillstoneZoneZoneIdx }
::= { hillstoneZoneTable 1 }
HillstoneZoneEntry ::=
SEQUENCE {
hillstoneZoneZoneIdx
Counter,
hillstoneZoneZoneName
OCTET STRING,
hillstoneZoneType
INTEGER,
hillstoneZoneRowStatus
RowStatus
}
hillstoneZoneZoneIdx OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
An internal number to distinguish security zone.
Different zone has different number.
"
::= { HillstoneZoneEntry 1 }
hillstoneZoneZoneName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The name of security zone.
Different zone has different name."
::= { HillstoneZoneEntry 2 }
hillstoneZoneType OBJECT-TYPE
SYNTAX INTEGER
{
lever-2(1),
lever-3(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The priority of security zone.
Different zone has different priority.
"
::= { HillstoneZoneEntry 3 }
hillstoneZoneRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this address book row. support: active, createandgo, destory"
::= { HillstoneZoneEntry 4 }
hillstoneZoneIFTable OBJECT-TYPE
SYNTAX SEQUENCE OF hillstoneZoneIFEntry
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."
::= { hillstoneZoneObjects 2 }
hillstoneZoneIFEntry OBJECT-TYPE
SYNTAX hillstoneZoneIFEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { hillstoneZoneIdx,
hillstoneZoneIfIndex }
::= { hillstoneZoneIFTable 1 }
hillstoneZoneIFEntry ::=
SEQUENCE {
hillstoneZoneIdx
Counter,
hillstoneZoneIfIndex
Counter
}
hillstoneZoneIdx OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An internal number to distinguish security zone.
Different zone has different number."
::= { hillstoneZoneIFEntry 1 }
hillstoneZoneIfIndex OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"hillstoneZoneIfIndex equals to ifindex of IF-MIB"
::= { hillstoneZoneIFEntry 2 }
END
|