Blame mibs/iana/IANA-RTPROTO-MIB

Packit 022b05
Packit 022b05
IANA-RTPROTO-MIB DEFINITIONS ::= BEGIN
Packit 022b05
Packit 022b05
IMPORTS
Packit 022b05
    MODULE-IDENTITY, mib-2           FROM SNMPv2-SMI
Packit 022b05
    TEXTUAL-CONVENTION               FROM SNMPv2-TC;
Packit 022b05
Packit 022b05
ianaRtProtoMIB  MODULE-IDENTITY
Packit 022b05
    LAST-UPDATED "200009260000Z" -- September 26, 2000
Packit 022b05
    ORGANIZATION "IANA"
Packit 022b05
    CONTACT-INFO
Packit 022b05
            " Internet Assigned Numbers Authority
Packit 022b05
              Internet Corporation for Assigned Names and Numbers
Packit 022b05
              4676 Admiralty Way, Suite 330
Packit 022b05
              Marina del Rey, CA 90292-6601
Packit 022b05
Packit 022b05
              Phone: +1 310 823 9358
Packit 022b05
              EMail: iana&iana.org"
Packit 022b05
    DESCRIPTION
Packit 022b05
            "This MIB module defines the IANAipRouteProtocol and
Packit 022b05
            IANAipMRouteProtocol textual conventions for use in MIBs
Packit 022b05
            which need to identify unicast or multicast routing
Packit 022b05
            mechanisms.
Packit 022b05
Packit 022b05
            Any additions or changes to the contents of this MIB module
Packit 022b05
            require either publication of an RFC, or Designated Expert
Packit 022b05
            Review as defined in RFC 2434, Guidelines for Writing an
Packit 022b05
            IANA Considerations Section in RFCs.  The Designated Expert 
Packit 022b05
            will be selected by the IESG Area Director(s) of the Routing
Packit 022b05
            Area."
Packit 022b05
Packit 022b05
    REVISION     "200009260000Z"  -- September 26, 2000 
Packit 022b05
    DESCRIPTION  "Original version, published in coordination
Packit 022b05
                 with RFC 2932."
Packit 022b05
Packit 022b05
    ::= { mib-2 84 }
Packit 022b05
Packit 022b05
IANAipRouteProtocol ::= TEXTUAL-CONVENTION
Packit 022b05
   STATUS      current
Packit 022b05
Packit 022b05
   DESCRIPTION
Packit 022b05
            "A mechanism for learning routes.  Inclusion of values for
Packit 022b05
            routing protocols is not intended to imply that those
Packit 022b05
            protocols need be supported."
Packit 022b05
   SYNTAX      INTEGER {
Packit 022b05
                other     (1),  -- not specified
Packit 022b05
                local     (2),  -- local interface
Packit 022b05
                netmgmt   (3),  -- static route
Packit 022b05
                icmp      (4),  -- result of ICMP Redirect
Packit 022b05
Packit 022b05
                        -- the following are all dynamic
Packit 022b05
                        -- routing protocols
Packit 022b05
Packit 022b05
                egp        (5),  -- Exterior Gateway Protocol
Packit 022b05
                ggp        (6),  -- Gateway-Gateway Protocol
Packit 022b05
                hello      (7),  -- FuzzBall HelloSpeak
Packit 022b05
                rip        (8),  -- Berkeley RIP or RIP-II
Packit 022b05
                isIs       (9),  -- Dual IS-IS
Packit 022b05
                esIs       (10), -- ISO 9542
Packit 022b05
                ciscoIgrp  (11), -- Cisco IGRP
Packit 022b05
                bbnSpfIgp  (12), -- BBN SPF IGP
Packit 022b05
                ospf       (13), -- Open Shortest Path First
Packit 022b05
                bgp        (14), -- Border Gateway Protocol
Packit 022b05
                idpr       (15), -- InterDomain Policy Routing
Packit 022b05
                ciscoEigrp (16), -- Cisco EIGRP
Packit 022b05
                dvmrp      (17)  -- DVMRP
Packit 022b05
               }
Packit 022b05
Packit 022b05
IANAipMRouteProtocol ::= TEXTUAL-CONVENTION
Packit 022b05
   STATUS      current
Packit 022b05
   DESCRIPTION
Packit 022b05
            "The multicast routing protocol.  Inclusion of values for
Packit 022b05
            multicast routing protocols is not intended to imply that
Packit 022b05
            those protocols need be supported."
Packit 022b05
   SYNTAX      INTEGER {
Packit 022b05
                   other(1),          -- none of the following
Packit 022b05
                   local(2),          -- e.g., manually configured
Packit 022b05
                   netmgmt(3),        -- set via net.mgmt protocol
Packit 022b05
                   dvmrp(4),
Packit 022b05
                   mospf(5),
Packit 022b05
                   pimSparseDense(6), -- PIMv1, both DM and SM
Packit 022b05
                   cbt(7),
Packit 022b05
                   pimSparseMode(8),  -- PIM-SM
Packit 022b05
                   pimDenseMode(9),   -- PIM-DM
Packit 022b05
                   igmpOnly(10),
Packit 022b05
                   bgmp(11),
Packit 022b05
                   msdp(12)
Packit 022b05
               }
Packit 022b05
Packit 022b05
END
Packit 022b05
Packit 022b05