[BACK]Return to OPENBSD-SNMPD-CONF.txt CVS log [TXT][DIR] Up to [local] / src / share / snmp

Annotation of src/share/snmp/OPENBSD-SNMPD-CONF.txt, Revision 1.3

1.3     ! joel        1: -- $OpenBSD: OPENBSD-SNMPD-CONF.txt,v 1.2 2010/06/11 10:45:37 jsg Exp $
1.1       reyk        2: --
                      3: -- Copyright (c) 2008 Reyk Floeter <reyk@openbsd.org>
                      4: --
                      5: -- Permission to use, copy, modify, and distribute this document for any
                      6: -- purpose with or without fee is hereby granted, provided that the above
                      7: -- copyright notice and this permission notice appear in all copies.
                      8: --
                      9: -- THE DOCUMENT IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     10: -- WITH REGARD TO THIS DOCUMENT INCLUDING ALL IMPLIED WARRANTIES OF
                     11: -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     12: -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     13: -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
                     14: -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
                     15: -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS DOCUMENT.
                     16:
                     17: OPENBSD-SNMPD-CONF DEFINITIONS ::= BEGIN
                     18:
                     19: --
                     20: -- This file lists all the MIBs that OpenBSD snmpd(8) implements at
                     21: -- present.  Non-OpenBSD MIB files are not included in this distribution.
                     22: --
                     23:
                     24: IMPORTS
                     25:        -- Management Information Base (MIB) for the Simple Network
                     26:        -- Management Protocol (SNMPv2), RFC 3418, December 2002
                     27:        snmpMIB
                     28:            FROM SNMPv2-MIB
                     29:
                     30:        -- IANA ifTypes MIB, http://www.iana.org/assignments/ianaiftype-mib
                     31:        ianaifType
                     32:            FROM IANAifType-MIB
                     33:
                     34:        -- The Interface Group MIB, RFC 2863, June 2000
                     35:        ifMIB
                     36:            FROM IF-MIB
                     37:
                     38:        -- Definitions of Managed Objects for Bridges, RFC 4188,
                     39:        -- September 2005
                     40:        dot1dBridge
                     41:            FROM BRIDGE-MIB
                     42:
                     43:        -- Textual Conventions for Internet Network Addresses,
                     44:        -- RFC 4001, February 2005
                     45:        inetAddressMIB
                     46:            FROM INET-ADDRESS-MIB
                     47:
                     48:        -- Management Information Base for the Internet Protocol
                     49:        -- (IP), RFC 4293, April 2006
                     50:        ipMIB
                     51:            FROM IP-MIB
1.2       jsg        52:
                     53:        -- IP Forwarding MIB, RFC 4292, April 2006
                     54:        ipForward
                     55:            FROM IP-FORWARD-MIB
1.1       reyk       56:
                     57:        -- Host Resources MIB, RFC 2790, March 2000
                     58:        hostResourcesMibModule
                     59:            FROM HOST-RESOURCES-MIB
                     60:
                     61:        --
                     62:        -- OpenBSD-specific MIBs
                     63:        --
                     64:
                     65:        -- Base MIB, OPENBSD-BASE-MIB.txt, OpenBSD 4.3
                     66:        openBSD
                     67:            FROM OPENBSD-BASE-MIB
                     68:
                     69:        -- Kernel sensors MIB, OPENBSD-SENSORS-MIB.txt, OpenBSD 4.3
                     70:        sensorsMIBObjects
                     71:            FROM OPENBSD-SENSORS-MIB
                     72:
                     73:        -- Memory statistics MIB, OPENBSD-MEM-MIB.txt, OpenBSD 4.5
                     74:        memMIBObjects
                     75:            FROM OPENBSD-MEM-MIB;
1.3     ! joel       76:
        !            77:        -- CARP interface & statistics MIB, OPENBSD-CARP-MIB.txt
        !            78:        carpMIBObjects
        !            79:            FROM OPENBSD-CARP-MIB;
1.1       reyk       80:
                     81: END