blob: 1ca9dbb9a4c640da904c06f25bc834acd124ad28 (
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
|
-- ***********************************************************************
-- HILLSTONE-DNS-MIB
--
-- Copyright (c) 2009 by Hillstone Networks, Inc.
-- All rights reserved.
--
-- Version: V3
-- Description: Hillstone Networks DNS MIB Object Identifier Assignments
-- ***********************************************************************
--
HILLSTONE-DNS-MIB DEFINITIONS ::= BEGIN
IMPORTS
hillstoneDNS
FROM HILLSTONE-SMI
OBJECT-TYPE
FROM RFC-1212;
-- 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)
hillstoneDnsMibObjects OBJECT IDENTIFIER ::= { hillstoneDNS 1 }
-- dns srv group
hillstoneDnsSrvWorkMode OBJECT-TYPE
SYNTAX INTEGER
{
server(0),
client(1),
relay(2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"The dns server work mode"
::= { hillstoneDnsMibObjects 1 }
hillstoneDnsDomainTable OBJECT-TYPE
SYNTAX SEQUENCE OF HillstoneDnsDomainEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table is used in domain informatioin of this dns server"
::= { hillstoneDnsMibObjects 2 }
HillstoneDnsDomainEntry OBJECT-TYPE
SYNTAX HillstoneDnsDomainEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry is used in domain informatioin of this dns server"
INDEX { hillstoneDnsDomainIdx }
::= { hillstoneDnsDomainTable 1 }
HillstoneDnsDomainEntry ::=
SEQUENCE{
hillstoneDnsDomainIdx
INTEGER,
hillstoneDnsDomainName
DisplayString
}
hillstoneDnsDomainIdx OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of this table"
::= { HillstoneDnsDomainEntry 1 }
hillstoneDnsDomainName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Dns domain name."
::= { HillstoneDnsDomainEntry 2 }
-- static dns
hillstoneStaticDnsServAddressTable OBJECT-TYPE
SYNTAX SEQUENCE OF HillstoneStaticDnsServAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table is used in static domain informatioin of this Static dns server"
::= { hillstoneDnsMibObjects 3 }
HillstoneStaticDnsServAddressEntry OBJECT-TYPE
SYNTAX HillstoneStaticDnsServAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry is used in ip address informatioin of this Static dns server"
INDEX { hillstoneStaticDnsServIdx }
::= { hillstoneStaticDnsServAddressTable 1 }
HillstoneStaticDnsServAddressEntry ::=
SEQUENCE{
hillstoneStaticDnsServIdx
INTEGER,
hillstoneStaticDnsIpAddr
IpAddress
}
hillstoneStaticDnsServIdx OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of this Dns server table."
::= { HillstoneStaticDnsServAddressEntry 1 }
hillstoneStaticDnsIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Dns server ip address."
::= { HillstoneStaticDnsServAddressEntry 2 }
-- DDns
hillstoneDynamicDnsServAddressTable OBJECT-TYPE
SYNTAX SEQUENCE OF HillstoneStaticDnsServAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table is used in static domain informatioin of this Dynamic dns server"
::= { hillstoneDnsMibObjects 4 }
HillstoneStaticDnsServAddressEntry OBJECT-TYPE
SYNTAX HillstoneStaticDnsServAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry is used in ip address informatioin of this Dynamic dns server"
INDEX { hillstoneDynamicDnsServIdx }
::= { hillstoneDynamicDnsServAddressTable 1 }
HillstoneStaticDnsServAddressEntry ::=
SEQUENCE{
hillstoneDynamicDnsServIdx
INTEGER,
hillstoneDynamicDnsIpAddr
IpAddress
}
hillstoneDynamicDnsServIdx OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of this Dns server table."
::= { HillstoneStaticDnsServAddressEntry 1 }
hillstoneDynamicDnsIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Dns server ip address."
::= { HillstoneStaticDnsServAddressEntry 2 }
END
|