[BACK]Return to IANA-RTPROTO-MIB.txt CVS log [TXT][DIR] Up to [local] / src / share / snmp

Annotation of src/share/snmp/IANA-RTPROTO-MIB.txt, Revision 1.1

1.1     ! martijn     1: IANA-RTPROTO-MIB DEFINITIONS ::= BEGIN
        !             2:
        !             3: IMPORTS
        !             4:     MODULE-IDENTITY, mib-2           FROM SNMPv2-SMI
        !             5:     TEXTUAL-CONVENTION               FROM SNMPv2-TC;
        !             6:
        !             7: ianaRtProtoMIB  MODULE-IDENTITY
        !             8:     LAST-UPDATED "201604250000Z" -- April 25, 2016
        !             9:     ORGANIZATION "IANA"
        !            10:     CONTACT-INFO
        !            11:             " Internet Assigned Numbers Authority
        !            12:               Internet Corporation for Assigned Names and Numbers
        !            13:               12025 Waterfront Drive, Suite 300
        !            14:               Los Angeles, CA 90094-2536
        !            15:
        !            16:               Phone: +1 310 301 5800
        !            17:               EMail: iana&iana.org"
        !            18:     DESCRIPTION
        !            19:             "This MIB module defines the IANAipRouteProtocol and
        !            20:             IANAipMRouteProtocol textual conventions for use in MIBs
        !            21:             which need to identify unicast or multicast routing
        !            22:             mechanisms.
        !            23:
        !            24:             Any additions or changes to the contents of this MIB module
        !            25:             require either publication of an RFC, or Designated Expert
        !            26:             Review as defined in RFC 2434, Guidelines for Writing an
        !            27:             IANA Considerations Section in RFCs.  The Designated Expert
        !            28:             will be selected by the IESG Area Director(s) of the Routing
        !            29:             Area."
        !            30:
        !            31:     REVISION     "201604250000Z"  -- April 25, 2016
        !            32:     DESCRIPTION  "Corrected typographical error in revision date."
        !            33:
        !            34:     REVISION     "201604060000Z"  -- April 6, 2016
        !            35:     DESCRIPTION  "Added ttdp(20)."
        !            36:
        !            37:     REVISION     "201208300000Z"  -- August 30, 2012
        !            38:     DESCRIPTION  "Added dhcp(19)."
        !            39:
        !            40:     REVISION     "201107220000Z"  -- July 22, 2011
        !            41:     DESCRIPTION  "Added rpl(18) ."
        !            42:
        !            43:     REVISION     "200009260000Z"  -- September 26, 2000
        !            44:     DESCRIPTION  "Original version, published in coordination
        !            45:                  with RFC 2932."
        !            46:     ::= { mib-2 84 }
        !            47:
        !            48: IANAipRouteProtocol ::= TEXTUAL-CONVENTION
        !            49:    STATUS      current
        !            50:    DESCRIPTION
        !            51:             "A mechanism for learning routes.  Inclusion of values for
        !            52:             routing protocols is not intended to imply that those
        !            53:             protocols need be supported."
        !            54:    SYNTAX      INTEGER {
        !            55:                 other     (1),  -- not specified
        !            56:                 local     (2),  -- local interface
        !            57:                 netmgmt   (3),  -- static route
        !            58:                 icmp      (4),  -- result of ICMP Redirect
        !            59:
        !            60:                         -- the following are all dynamic
        !            61:                         -- routing protocols
        !            62:
        !            63:                 egp        (5),  -- Exterior Gateway Protocol
        !            64:                 ggp        (6),  -- Gateway-Gateway Protocol
        !            65:                 hello      (7),  -- FuzzBall HelloSpeak
        !            66:                 rip        (8),  -- Berkeley RIP or RIP-II
        !            67:                 isIs       (9),  -- Dual IS-IS
        !            68:                 esIs       (10), -- ISO 9542
        !            69:                 ciscoIgrp  (11), -- Cisco IGRP
        !            70:                 bbnSpfIgp  (12), -- BBN SPF IGP
        !            71:                 ospf       (13), -- Open Shortest Path First
        !            72:                 bgp        (14), -- Border Gateway Protocol
        !            73:                 idpr       (15), -- InterDomain Policy Routing
        !            74:                 ciscoEigrp (16), -- Cisco EIGRP
        !            75:                 dvmrp      (17), -- DVMRP
        !            76:                 rpl        (18), -- RPL [RFC-ietf-roll-rpl-19]
        !            77:                 dhcp       (19), -- DHCP [RFC2132]
        !            78:                 ttdp       (20)  -- Train Topology Discovery Protocol (TTDP) [IEC 61375-2-5]
        !            79:                }
        !            80:
        !            81: IANAipMRouteProtocol ::= TEXTUAL-CONVENTION
        !            82:    STATUS      current
        !            83:    DESCRIPTION
        !            84:             "The multicast routing protocol.  Inclusion of values for
        !            85:             multicast routing protocols is not intended to imply that
        !            86:             those protocols need be supported."
        !            87:    SYNTAX      INTEGER {
        !            88:                    other(1),          -- none of the following
        !            89:                    local(2),          -- e.g., manually configured
        !            90:                    netmgmt(3),        -- set via net.mgmt protocol
        !            91:                    dvmrp(4),
        !            92:                    mospf(5),
        !            93:                    pimSparseDense(6), -- PIMv1, both DM and SM
        !            94:                    cbt(7),
        !            95:                    pimSparseMode(8),  -- PIM-SM
        !            96:                    pimDenseMode(9),   -- PIM-DM
        !            97:                    igmpOnly(10),
        !            98:                    bgmp(11),
        !            99:                    msdp(12)
        !           100:                }
        !           101:
        !           102: END