• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2IANA-MALLOC-MIB DEFINITIONS ::= BEGIN
3
4IMPORTS
5    MODULE-IDENTITY, mib-2           FROM SNMPv2-SMI
6    TEXTUAL-CONVENTION               FROM SNMPv2-TC;
7
8ianaMallocMIB MODULE-IDENTITY
9    LAST-UPDATED "200301271200Z" -- January 27, 2003
10    ORGANIZATION "IANA"
11    CONTACT-INFO
12            " Internet Assigned Numbers Authority
13              Internet Corporation for Assigned Names and Numbers
14              4676 Admiralty Way, Suite 330
15              Marina del Rey, CA 90292-6601
16
17              Phone: +1 310 823 9358
18              EMail: iana&iana.org"
19    DESCRIPTION
20            "This MIB module defines the IANAscopeSource and
21            IANAmallocRangeSource textual conventions for use in MIBs
22            which need to identify ways of learning multicast scope and
23            range information.
24
25            Any additions or changes to the contents of this MIB module
26            require either publication of an RFC, or Designated Expert
27            Review as defined in the Guidelines for Writing IANA
28            Considerations Section document.  The Designated Expert will
29            be selected by the IESG Area Director(s) of the Transport
30            Area."
31
32    -- revision log
33
34    REVISION     "200301271200Z" -- January 27, 2003
35    DESCRIPTION
36            "Initial version."
37    ::= { mib-2 102 }
38
39IANAscopeSource ::= TEXTUAL-CONVENTION
40   STATUS  current
41   DESCRIPTION
42            "The source of multicast scope information."
43   SYNTAX  INTEGER {
44              other(1),  -- none of the following
45              manual(2), -- statically configured
46              local(3),  -- automatically added by the system,
47                         -- such as a Source-Specific Multicast
48                         -- scope
49              mzap(4),   -- MZAP
50              madcap(5)  -- MADCAP
51           }
52
53IANAmallocRangeSource ::= TEXTUAL-CONVENTION
54   STATUS  current
55   DESCRIPTION
56            "The source of multicast address allocation range
57            information."
58   SYNTAX  INTEGER {
59              other(1),  -- none of the following
60              manual(2), -- statically configured
61              local(3)   -- automatically added by the system,
62                         -- such as a Source-Specific Multicast
63                         -- range
64           }
65
66END
67
68