1SNMPv2-TM(7) MIB SNMPv2-TM(7)
2
3
4
5SNMPv2-TM DEFINITIONS ::= BEGIN
6
7IMPORTS
8 MODULE-IDENTITY, OBJECT-IDENTITY, snmpDomains, snmpProxys, snmpModules
9 FROM SNMPv2-SMI
10 TEXTUAL-CONVENTION
11 FROM SNMPv2-TC;
12
13snmpv2TM MODULE-IDENTITY
14 LAST-UPDATED "9709250900Z"
15 ORGANIZATION "IETF SNMPv2 Working Group"
16 CONTACT-INFO
17 " Marshall T. Rose
18
19 Postal: Dover Beach Consulting, Inc.
20 420 Whisman Court
21 Mountain View, CA 94043-2186
22 US
23
24 Tel: +1 415 968 1052
25
26 E-mail: mrose@dbc.mtview.ca.us"
27 DESCRIPTION
28 "The MIB module for SNMPv2 Transport Mappings."
29 REVISION "9709250900Z"
30 DESCRIPTION
31 "This MIB module is extracted from RFC 1906. It is
32 modified by mbj@erlang.ericsson.se to be
33 compilable. The MODULE-IDENTITY specification was
34 added."
35 ::= { snmpModules 0 } -- dummy
36
37-- SNMPv2 over UDP over IPv4
38
39snmpUDPDomain OBJECT-IDENTITY
40 STATUS current
41 DESCRIPTION
42 "The SNMPv2 over UDP transport domain. The corresponding
43 transport address is of type SnmpUDPAddress."
44 ::= { snmpDomains 1 }
45
46SnmpUDPAddress ::= TEXTUAL-CONVENTION
47 DISPLAY-HINT "1d.1d.1d.1d/2d"
48 STATUS current
49 DESCRIPTION
50 "Represents a UDP address:
51
52 octets contents encoding
53 1-4 IP-address network-byte order
54 5-6 UDP-port network-byte order
55 "
56 SYNTAX OCTET STRING (SIZE (6))
57
58
59-- SNMPv2 over OSI
60
61snmpCLNSDomain OBJECT-IDENTITY
62 STATUS current
63 DESCRIPTION
64 "The SNMPv2 over CLNS transport domain. The corresponding
65 transport address is of type SnmpOSIAddress."
66 ::= { snmpDomains 2 }
67
68snmpCONSDomain OBJECT-IDENTITY
69 STATUS current
70 DESCRIPTION
71 "The SNMPv2 over CONS transport domain. The corresponding
72 transport address is of type SnmpOSIAddress."
73 ::= { snmpDomains 3 }
74
75SnmpOSIAddress ::= TEXTUAL-CONVENTION
76 DISPLAY-HINT "*1x:/1x:"
77 STATUS current
78 DESCRIPTION
79 "Represents an OSI transport-address:
80
81 octets contents encoding
82 1 length of NSAP 'n' as an unsigned-integer
83 (either 0 or from 3 to 20)
84 2..(n+1) NSAP concrete binary representation
85 (n+2)..m TSEL string of (up to 64) octets
86 "
87 SYNTAX OCTET STRING (SIZE (1 | 4..85))
88
89
90-- SNMPv2 over DDP
91
92snmpDDPDomain OBJECT-IDENTITY
93 STATUS current
94 DESCRIPTION
95 "The SNMPv2 over DDP transport domain. The corresponding
96 transport address is of type SnmpNBPAddress."
97 ::= { snmpDomains 4 }
98
99SnmpNBPAddress ::= TEXTUAL-CONVENTION
100 STATUS current
101 DESCRIPTION
102 "Represents an NBP name:
103
104 octets contents encoding
105 1 length of object 'n' as an unsigned integer
106 2..(n+1) object string of (up to 32) octets
107 n+2 length of type 'p' as an unsigned integer
108 (n+3)..(n+2+p) type string of (up to 32) octets
109 n+3+p length of zone 'q' as an unsigned integer
110 (n+4+p)..(n+3+p+q) zone string of (up to 32) octets
111
112 For comparison purposes, strings are case-insensitive All
113 strings may contain any octet other than 255 (hex ff)."
114 SYNTAX OCTET STRING (SIZE (3..99))
115
116
117-- SNMPv2 over IPX
118
119snmpIPXDomain OBJECT-IDENTITY
120 STATUS current
121 DESCRIPTION
122 "The SNMPv2 over IPX transport domain. The corresponding
123 transport address is of type SnmpIPXAddress."
124 ::= { snmpDomains 5 }
125
126SnmpIPXAddress ::= TEXTUAL-CONVENTION
127 DISPLAY-HINT "4x.1x:1x:1x:1x:1x:1x.2d"
128 STATUS current
129 DESCRIPTION
130 "Represents an IPX address:
131
132 octets contents encoding
133 1-4 network-number network-byte order
134 5-10 physical-address network-byte order
135 11-12 socket-number network-byte order
136 "
137 SYNTAX OCTET STRING (SIZE (12))
138
139
140-- for proxy to SNMPv1 (RFC 1157)
141
142rfc1157Proxy OBJECT IDENTIFIER ::= { snmpProxys 1 }
143
144rfc1157Domain OBJECT-IDENTITY
145 STATUS current
146 DESCRIPTION
147 "The transport domain for SNMPv1 over UDP. The
148 corresponding transport address is of type SnmpUDPAddress."
149 ::= { rfc1157Proxy 1 }
150
151-- ::= { rfc1157Proxy 2 } this OID is obsolete
152
153
154END
155
156
157
158
159
160Erlang/OTP SNMP SNMPv2-TM(7)