source: azure_iot_hub_f767zi/trunk/asp_baseplatform/lwip/contrib-2.1.0/apps/LwipMibCompiler/Mibs/SNMPv2-TM@ 457

Last change on this file since 457 was 457, checked in by coas-nagasima, 4 years ago

ファイルを追加

File size: 5.8 KB
Line 
1SNMPv2-TM DEFINITIONS ::= BEGIN
2
3IMPORTS
4 MODULE-IDENTITY, OBJECT-IDENTITY,
5 snmpModules, snmpDomains, snmpProxys
6 FROM SNMPv2-SMI
7 TEXTUAL-CONVENTION
8 FROM SNMPv2-TC;
9
10snmpv2tm MODULE-IDENTITY
11 LAST-UPDATED "200210160000Z"
12 ORGANIZATION "IETF SNMPv3 Working Group"
13 CONTACT-INFO
14 "WG-EMail: snmpv3@lists.tislabs.com
15 Subscribe: snmpv3-request@lists.tislabs.com
16
17 Co-Chair: Russ Mundy
18 Network Associates Laboratories
19 postal: 15204 Omega Drive, Suite 300
20 Rockville, MD 20850-4601
21 USA
22 EMail: mundy@tislabs.com
23 phone: +1 301 947-7107
24
25
26
27 Co-Chair: David Harrington
28 Enterasys Networks
29 postal: 35 Industrial Way
30 P. O. Box 5005
31 Rochester, NH 03866-5005
32 USA
33 EMail: dbh@enterasys.com
34 phone: +1 603 337-2614
35
36 Editor: Randy Presuhn
37 BMC Software, Inc.
38 postal: 2141 North First Street
39 San Jose, CA 95131
40 USA
41 EMail: randy_presuhn@bmc.com
42 phone: +1 408 546-1006"
43 DESCRIPTION
44 "The MIB module for SNMP transport mappings.
45
46 Copyright (C) The Internet Society (2002). This
47 version of this MIB module is part of RFC 3417;
48 see the RFC itself for full legal notices.
49 "
50 REVISION "200210160000Z"
51 DESCRIPTION
52 "Clarifications, published as RFC 3417."
53 REVISION "199601010000Z"
54 DESCRIPTION
55 "Clarifications, published as RFC 1906."
56 REVISION "199304010000Z"
57 DESCRIPTION
58 "The initial version, published as RFC 1449."
59 ::= { snmpModules 19 }
60
61-- SNMP over UDP over IPv4
62
63snmpUDPDomain OBJECT-IDENTITY
64 STATUS current
65 DESCRIPTION
66 "The SNMP over UDP over IPv4 transport domain.
67 The corresponding transport address is of type
68 SnmpUDPAddress."
69 ::= { snmpDomains 1 }
70
71
72
73
74
75
76
77
78SnmpUDPAddress ::= TEXTUAL-CONVENTION
79 DISPLAY-HINT "1d.1d.1d.1d/2d"
80 STATUS current
81 DESCRIPTION
82 "Represents a UDP over IPv4 address:
83
84 octets contents encoding
85 1-4 IP-address network-byte order
86 5-6 UDP-port network-byte order
87 "
88 SYNTAX OCTET STRING (SIZE (6))
89
90-- SNMP over OSI
91
92snmpCLNSDomain OBJECT-IDENTITY
93 STATUS current
94 DESCRIPTION
95 "The SNMP over CLNS transport domain.
96 The corresponding transport address is of type
97 SnmpOSIAddress."
98 ::= { snmpDomains 2 }
99
100snmpCONSDomain OBJECT-IDENTITY
101 STATUS current
102 DESCRIPTION
103 "The SNMP over CONS transport domain.
104 The corresponding transport address is of type
105 SnmpOSIAddress."
106 ::= { snmpDomains 3 }
107
108SnmpOSIAddress ::= TEXTUAL-CONVENTION
109 DISPLAY-HINT "*1x:/1x:"
110 STATUS current
111 DESCRIPTION
112 "Represents an OSI transport-address:
113
114 octets contents encoding
115 1 length of NSAP 'n' as an unsigned-integer
116 (either 0 or from 3 to 20)
117 2..(n+1) NSAP concrete binary representation
118 (n+2)..m TSEL string of (up to 64) octets
119 "
120 SYNTAX OCTET STRING (SIZE (1 | 4..85))
121
122
123
124
125
126
127
128
129-- SNMP over DDP
130
131snmpDDPDomain OBJECT-IDENTITY
132 STATUS current
133 DESCRIPTION
134 "The SNMP over DDP transport domain. The corresponding
135 transport address is of type SnmpNBPAddress."
136 ::= { snmpDomains 4 }
137
138SnmpNBPAddress ::= TEXTUAL-CONVENTION
139 STATUS current
140 DESCRIPTION
141 "Represents an NBP name:
142
143 octets contents encoding
144 1 length of object 'n' as an unsigned integer
145 2..(n+1) object string of (up to 32) octets
146 n+2 length of type 'p' as an unsigned integer
147 (n+3)..(n+2+p) type string of (up to 32) octets
148 n+3+p length of zone 'q' as an unsigned integer
149 (n+4+p)..(n+3+p+q) zone string of (up to 32) octets
150
151 For comparison purposes, strings are
152 case-insensitive. All strings may contain any octet
153 other than 255 (hex ff)."
154 SYNTAX OCTET STRING (SIZE (3..99))
155
156-- SNMP over IPX
157
158snmpIPXDomain OBJECT-IDENTITY
159 STATUS current
160 DESCRIPTION
161 "The SNMP over IPX transport domain. The corresponding
162 transport address is of type SnmpIPXAddress."
163 ::= { snmpDomains 5 }
164
165SnmpIPXAddress ::= TEXTUAL-CONVENTION
166 DISPLAY-HINT "4x.1x:1x:1x:1x:1x:1x.2d"
167 STATUS current
168 DESCRIPTION
169 "Represents an IPX address:
170
171 octets contents encoding
172 1-4 network-number network-byte order
173 5-10 physical-address network-byte order
174 11-12 socket-number network-byte order
175 "
176 SYNTAX OCTET STRING (SIZE (12))
177
178
179
180-- for proxy to SNMPv1 (RFC 1157)
181
182rfc1157Proxy OBJECT IDENTIFIER ::= { snmpProxys 1 }
183
184rfc1157Domain OBJECT-IDENTITY
185 STATUS deprecated
186 DESCRIPTION
187 "The transport domain for SNMPv1 over UDP over IPv4.
188 The corresponding transport address is of type
189 SnmpUDPAddress."
190 ::= { rfc1157Proxy 1 }
191
192-- ::= { rfc1157Proxy 2 } this OID is obsolete
193
194END
Note: See TracBrowser for help on using the repository browser.