1
2
3  IANA-ADDRESS-FAMILY-NUMBERS-MIB DEFINITIONS ::= BEGIN
4
5  IMPORTS
6      MODULE-IDENTITY,
7      mib-2                               FROM SNMPv2-SMI
8      TEXTUAL-CONVENTION                  FROM SNMPv2-TC;
9
10  ianaAddressFamilyNumbers MODULE-IDENTITY
11      LAST-UPDATED "200203140000Z"  -- March 14, 2002
12      ORGANIZATION "IANA"
13      CONTACT-INFO
14          "Postal:    Internet Assigned Numbers Authority
15                      Internet Corporation for Assigned Names
16		      and Numbers
17                      4676 Admiralty Way, Suite 330
18                      Marina del Rey, CA 90292-6601
19                      USA
20
21          Tel:    +1  310-823-9358
22          E-Mail: iana&iana.org"
23      DESCRIPTION
24          "The MIB module defines the AddressFamilyNumbers
25          textual convention."
26
27      -- revision history
28
29      REVISION     "200203140000Z"  -- March 14, 2002
30      DESCRIPTION  "AddressFamilyNumbers assignment 22 to
31                   fibreChannelWWPN. AddressFamilyNumbers
32                   assignment 23 to fibreChannelWWNN.
33                   AddressFamilyNumers assignment 24 to gwid."
34
35      REVISION     "200009080000Z"  -- September 8, 2000
36      DESCRIPTION  "AddressFamilyNumbers assignment 19 to xtpOverIpv4.
37                   AddressFamilyNumbers assignment 20 to xtpOverIpv6.
38                   AddressFamilyNumbers assignment 21 to xtpNativeModeXTP."
39
40      REVISION     "200003010000Z"  -- March 1, 2000
41      DESCRIPTION  "AddressFamilyNumbers assignment 17 to distinguishedName.
42                   AddressFamilyNumbers assignment 18 to asNumber."
43
44      REVISION     "200002040000Z"  -- February 4, 2000
45      DESCRIPTION  "AddressFamilyNumbers assignment 16 to dns."
46
47      REVISION     "9908260000Z"  -- August 26, 1999
48      DESCRIPTION  "Initial version, published as RFC 2677."
49
50      ::= { mib-2 72 }
51
52
53  AddressFamilyNumbers ::= TEXTUAL-CONVENTION
54
55      STATUS       current
56      DESCRIPTION
57          "The definition of this textual convention with the
58          addition of newly assigned values is published
59          periodically by the IANA, in either the Assigned
60          Numbers RFC, or some derivative of it specific to
61          Internet Network Management number assignments.
62          (The latest arrangements can be obtained by
63          contacting the IANA.)
64
65          The enumerations are described as:
66
67          other(0),    -- none of the following
68          ipV4(1),     -- IP Version 4
69          ipV6(2),     -- IP Version 6
70          nsap(3),     -- NSAP
71          hdlc(4),     -- (8-bit multidrop)
72          bbn1822(5),
73          all802(6),   -- (includes all 802 media
74                       --   plus Ethernet 'canonical format')
75          e163(7),
76          e164(8),     -- (SMDS, Frame Relay, ATM)
77          f69(9),      -- (Telex)
78          x121(10),    -- (X.25, Frame Relay)
79          ipx(11),     -- IPX (Internet Protocol Exchange)
80          appleTalk(12),  -- Apple Talk
81          decnetIV(13),   -- DEC Net Phase IV
82          banyanVines(14),  -- Banyan Vines
83          e164withNsap(15),
84                       -- (E.164 with NSAP format subaddress)
85          dns(16),     -- (Domain Name System)
86          distinguishedName(17), -- (Distinguished Name, per X.500)
87          asNumber(18), -- (16-bit quantity, per the AS number space)
88          xtpOverIpv4(19),  -- XTP over IP version 4
89          xtpOverIpv6(20),  -- XTP over IP version 6
90          xtpNativeModeXTP(21),  -- XTP native mode XTP
91          fibreChannelWWPN(22),  -- Fibre Channel World-Wide Port Name
92          fibreChannelWWNN(23),  -- Fibre Channel World-Wide Node Name
93          gwid(24),    -- Gateway Identifier
94          afi(25),  -- AFI for L2VPN information
95          reserved(65535)
96
97
98
99          Requests for new values should be made to IANA via
100          email (iana&iana.org)."
101
102      SYNTAX  INTEGER {
103                  other(0),
104                  ipV4(1),
105                  ipV6(2),
106                  nsap(3),
107                  hdlc(4),
108                  bbn1822(5),
109                  all802(6),
110                  e163(7),
111                  e164(8),
112                  f69(9),
113                  x121(10),
114                  ipx(11),
115                  appleTalk(12),
116                  decnetIV(13),
117                  banyanVines(14),
118                  e164withNsap(15),
119                  dns(16),
120                  distinguishedName(17), -- (Distinguished Name, per X.500)
121                  asNumber(18), -- (16-bit quantity, per the AS number space)
122                  xtpOverIpv4(19),
123                  xtpOverIpv6(20),
124                  xtpNativeModeXTP(21),
125                  fibreChannelWWPN(22),
126                  fibreChannelWWNN(23),
127                  gwid(24),
128                  afi(25),
129                  reserved(65535)
130              }
131      END
132