summaryrefslogtreecommitdiff
path: root/MIBS/awplus/AT-DNS-CLIENT
blob: 8d6292b4fa55d00b1d2ba991337fe7ed659df3b6 (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
-- ============================================================================
-- AT-DNS-CLIENT-MIB, Allied Telesis enterprise MIB: dns client
--
-- Copyright (c) 2008 by Allied Telesis, Inc.
-- All rights reserved.
--
-- ===========================================================================

    AT-DNS-CLIENT-MIB DEFINITIONS ::= BEGIN

        IMPORTS
            modules
                FROM AT-SMI-MIB
            InetAddressType
                FROM INET-ADDRESS-MIB
            IpAddress, OBJECT-TYPE, MODULE-IDENTITY, OBJECT-IDENTITY
                FROM SNMPv2-SMI
            RowStatus
                FROM SNMPv2-TC;


        atDNSClient MODULE-IDENTITY
            LAST-UPDATED "201006140445Z"
            ORGANIZATION
                "Allied Telesis, Inc"
            CONTACT-INFO
                "  http://www.alliedtelesis.com"
            DESCRIPTION
                "This MIB file contains definitions of managed objects
                for the Allied Telesis DNS Client configuration."
            REVISION "201006140445Z"
            DESCRIPTION
                "MIB revision history dates in descriptions updated."
            REVISION "200809181200Z"
            DESCRIPTION
                "Initial Revision"
            ::= { atDns 1 }




--
-- Node definitions
--

        atDns OBJECT-IDENTITY
            STATUS current
            DESCRIPTION
                "Description."
            ::= { modules 501 }


        atDNSServerIndexNext OBJECT-TYPE
            SYNTAX INTEGER (0..65535)
            MAX-ACCESS read-only
            STATUS current
            DESCRIPTION
                "This object represents the next available value for
                the object 'atDNSServerIndex'.
                For creating an entry in the 'atDNSServerTable',
                a management application should read this object,
                get the value and use the same."
            ::= { atDNSClient 1 }


        atDNSServerTable OBJECT-TYPE
            SYNTAX SEQUENCE OF AtDNSServerEntry
            MAX-ACCESS not-accessible
            STATUS current
            DESCRIPTION
                "This table contains information about the Domain Name
                System (DNS) Server configurations in the system."
            ::= { atDNSClient 2 }


        atDNSServerEntry OBJECT-TYPE
            SYNTAX AtDNSServerEntry
            MAX-ACCESS not-accessible
            STATUS current
            DESCRIPTION
                "An Entry representing the information about a
                DNS Server configuration.
                "
            INDEX { atDNSServerIndex }
            ::= { atDNSServerTable 1 }


        AtDNSServerEntry ::=
            SEQUENCE {
                atDNSServerIndex
                    INTEGER,
                atDNSServerAddrType
                    InetAddressType,
                atDNSServerAddr
                    IpAddress,
                atDNSServerStatus
                    RowStatus
             }

        atDNSServerIndex OBJECT-TYPE
            SYNTAX INTEGER (1..65535)
            MAX-ACCESS not-accessible
            STATUS current
            DESCRIPTION
                "This object represents the index corresponding to the
                particular DNS Server configuration in the system.
                For creation of new entry, the value of this object
                should be same as that of the value of
                'atDNSServerIndexNext' object. If this is not
                the case, then the entry creation will fail."
            ::= { atDNSServerEntry 1 }


        atDNSServerAddrType OBJECT-TYPE
            SYNTAX InetAddressType
            MAX-ACCESS read-only
            STATUS current
            DESCRIPTION
                "This object represents the Inet Address type of the
                'atDNSServerAddr' object.
                It's value should be of the values list below:
                unknown(0),
                ipv4(1),
                ipv6(2),
                ipv4z(3),
                ipv6z(4),
                dns(16)	"
            DEFVAL { ipv4 }
            ::= { atDNSServerEntry 2 }


        atDNSServerAddr OBJECT-TYPE
            SYNTAX IpAddress
            MAX-ACCESS read-write
            STATUS current
            DESCRIPTION
                "This object represents the address of the
                DNS Server.

                This object is a current object for row creation.

                When a new row is created, this object is set with
                a default value '0.0.0.0', and the management
                application should change it to a desired value by
                a SET operation."
            DEFVAL { '00000000'h }
            ::= { atDNSServerEntry 3 }


        atDNSServerStatus OBJECT-TYPE
            SYNTAX RowStatus
            MAX-ACCESS read-write
            STATUS current
            DESCRIPTION
                "The Status of this row.
                The reading of this object should have a value of
                'active(1)', for an existing row.

                For creation of new entry, a management application
                should set this object with value 'createAndGo(4)',
                and using the same value as that got from reading
                object 'atDNSServerIndexNext', as the index for
                the new entry.

                When an entry is created, the object 'atDNSServerAddr'
                in the entry is set with a default value '0.0.0.0'.
                The management application should change it to
                a desired value with a SET operation.

                For deletion of entry, a management application
                should set this object with value 'destroy(6)'.

                Once an entry is deleted, other entries in the table
                which have bigger index than the deleted one, will
                be indexed again. Therefore a management
                application can effectively delete multiple entries
                by repeating the SET operation using the same index.

                An attempt to SET this object with value other than
                'createAndGo' or 'destroy' will fail."
            DEFVAL { 1 }
            ::= { atDNSServerEntry 4 }


    END

--
-- at-dns.mib
--