$59 GRAYBYTE WORDPRESS FILE MANAGER $19

SERVER : vnpttt-amd7f72-h1.vietnix.vn #1 SMP Fri May 24 12:42:50 UTC 2024
SERVER IP : 103.200.23.149 | ADMIN IP 216.73.216.22
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/usr/share/snmp/mibs/

HOME
Current File : /usr/share/snmp/mibs//NET-SNMP-EXAMPLES-MIB.txt
NET-SNMP-EXAMPLES-MIB DEFINITIONS ::= BEGIN

--
-- Example MIB objects for agent module example implementations
--

IMPORTS
    MODULE-IDENTITY, OBJECT-TYPE, Integer32,
    NOTIFICATION-TYPE                       FROM SNMPv2-SMI
    SnmpAdminString                         FROM SNMP-FRAMEWORK-MIB
    netSnmp                                 FROM NET-SNMP-MIB
    RowStatus, StorageType                  FROM SNMPv2-TC
    InetAddressType, InetAddress            FROM INET-ADDRESS-MIB
;

netSnmpExamples MODULE-IDENTITY
    LAST-UPDATED "200406150000Z"
    ORGANIZATION "www.net-snmp.org"
    CONTACT-INFO    
	 "postal:   Wes Hardaker
                    P.O. Box 382
                    Davis CA  95617

          email:    net-snmp-coders@lists.sourceforge.net"
    DESCRIPTION
	"Example MIB objects for agent module example implementations"
    REVISION     "200406150000Z"
    DESCRIPTION
	"Corrected notification example definitions"
    REVISION     "200202060000Z"
    DESCRIPTION
	"First draft"
    ::= { netSnmp 2 }

--
-- top level structure
--
netSnmpExampleScalars       OBJECT IDENTIFIER ::= { netSnmpExamples 1 }
netSnmpExampleTables        OBJECT IDENTIFIER ::= { netSnmpExamples 2 }
netSnmpExampleNotifications OBJECT IDENTIFIER ::= { netSnmpExamples 3 }
netSnmpExampleNotificationPrefix  OBJECT IDENTIFIER
                                  ::= { netSnmpExampleNotifications 0 }
netSnmpExampleNotificationObjects OBJECT IDENTIFIER
                                  ::= { netSnmpExampleNotifications 2 }
-- netSnmpTutorial          OBJECT IDENTIFIER ::= { netSnmpExamples 4 }

--
-- Example scalars
--

netSnmpExampleInteger OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
	"This is a simple object which merely houses a writable
	 integer.  It's only purposes is to hold the value of a single
	 integer.  Writing to it will simply change the value for
	 subsequent GET/GETNEXT/GETBULK retrievals.

	 This example object is implemented in the
	 agent/mibgroup/examples/scalar_int.c file."
    DEFVAL { 42 }
    ::= { netSnmpExampleScalars 1 }

netSnmpExampleSleeper OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
	"This is a simple object which is a basic integer.  It's value
	 indicates the number of seconds that the agent will take in
	 responding to requests of this object.  This is implemented
	 in a way which will allow the agent to keep responding to
	 other requests while access to this object is blocked.  It is
	 writable, and changing it's value will change the amount of
	 time the agent will effectively wait for before returning a
	 response when this object is manipulated.  Note that SET
	 requests through this object will take longer, since the
	 delay is applied to each internal transaction phase, which
	 could result in delays of up to 4 times the value of this
	 object.

	 This example object is implemented in the
	 agent/mibgroup/examples/delayed_instance.c file."
    DEFVAL { 1 }
    ::= { netSnmpExampleScalars 2 }

netSnmpExampleString OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
	"This is a simple object which merely houses a writable
	 string.  It's only purposes is to hold the value of a single
	 string.  Writing to it will simply change the value for
	 subsequent GET/GETNEXT/GETBULK retrievals.

	 This example object is implemented in the
	 agent/mibgroup/examples/watched.c file."
    DEFVAL { "So long, and thanks for all the fish!" }
    ::= { netSnmpExampleScalars 3 }


--
--  Example Tables
--

netSnmpIETFWGTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF NetSnmpIETFWGEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
	"This table merely contains a set of data which is otherwise
	 useless for true network management.  It is a table which
	 describes properies about a IETF Working Group, such as the
	 names of the two working group chairs.

	 This example table is implemented in the
	 agent/mibgroup/examples/data_set.c file."
    ::= { netSnmpExampleTables 1 }

netSnmpIETFWGEntry OBJECT-TYPE
    SYNTAX      NetSnmpIETFWGEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
	"A row describing a given working group"
    INDEX   { nsIETFWGName }
    ::= {netSnmpIETFWGTable 1 }

NetSnmpIETFWGEntry ::= SEQUENCE {
	nsIETFWGName	OCTET STRING,
	nsIETFWGChair1	OCTET STRING,
	nsIETFWGChair2	OCTET STRING
}

nsIETFWGName OBJECT-TYPE
    SYNTAX      OCTET STRING (SIZE(1..32))
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
	"The name of the IETF Working Group this table describes."
    ::= { netSnmpIETFWGEntry 1 }

nsIETFWGChair1 OBJECT-TYPE
    SYNTAX      OCTET STRING
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
	"One of the names of the chairs for the IETF working group."
    ::= { netSnmpIETFWGEntry 2 }

nsIETFWGChair2 OBJECT-TYPE
    SYNTAX      OCTET STRING
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
	"The other name, if one exists, of the chairs for the IETF
	working group."
    ::= { netSnmpIETFWGEntry 3 }

--
-- A table used in a table_iterator example
--   (agent/mibgroup/examples/netSnmpHostsTable*.[ch])
--

netSnmpHostsTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF NetSnmpHostsEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
	"An example table that implements a wrapper around the
	/etc/hosts file on a machine using the iterator helper API."
    ::= { netSnmpExampleTables 2 }

netSnmpHostsEntry OBJECT-TYPE
    SYNTAX      NetSnmpHostsEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
	"A host name mapped to an ip address"
    INDEX   { netSnmpHostName }
    ::= { netSnmpHostsTable 1 }

NetSnmpHostsEntry ::= SEQUENCE {
    netSnmpHostName         OCTET STRING,
    netSnmpHostAddressType  InetAddressType,
    netSnmpHostAddress      InetAddress,
    netSnmpHostStorage      StorageType,
    netSnmpHostRowStatus    RowStatus
}

netSnmpHostName OBJECT-TYPE
    SYNTAX      OCTET STRING (SIZE(0..64))
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
	"A host name that exists in the /etc/hosts (unix) file."
    ::= { netSnmpHostsEntry 1 }

netSnmpHostAddressType OBJECT-TYPE
    SYNTAX      InetAddressType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
	"The address type of then given host."
    ::= { netSnmpHostsEntry 2 }

netSnmpHostAddress OBJECT-TYPE
    SYNTAX      InetAddress
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
	"The address of then given host."
    ::= { netSnmpHostsEntry 3 }

netSnmpHostStorage OBJECT-TYPE
    SYNTAX       StorageType
    MAX-ACCESS   read-create
    STATUS       current
    DESCRIPTION "The storage type for this conceptual row."
    DEFVAL      { nonVolatile }
    ::= { netSnmpHostsEntry 4 }

netSnmpHostRowStatus OBJECT-TYPE
    SYNTAX       RowStatus
    MAX-ACCESS   read-create
    STATUS       current
    DESCRIPTION "The status of this conceptual row."
    ::= { netSnmpHostsEntry 5 }


--
--  Example Notifications
--

netSnmpExampleHeartbeatRate OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  accessible-for-notify
    STATUS      current
    DESCRIPTION
        "A simple integer object, to act as a payload for the
         netSnmpExampleHeartbeatNotification.  The value has
         no real meaning, but is nominally the interval (in
         seconds) between successive heartbeat notifications."
::= { netSnmpExampleNotificationObjects 1 }

netSnmpExampleHeartbeatName OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  accessible-for-notify
    STATUS      current
    DESCRIPTION
        "A simple string object, to act as an optional payload
         for the netSnmpExampleHeartbeatNotification.  This varbind
         is not part of the notification definition, so is optional
         and need not be included in the notification payload. 
         The value has no real meaning, but the romantically inclined
         may take it to be the object of the sender's affection,
         and hence the cause of the heart beating faster."
::= { netSnmpExampleNotificationObjects 2 }

netSnmpExampleHeartbeatNotification NOTIFICATION-TYPE
    OBJECTS     { netSnmpExampleHeartbeatRate }
    STATUS      current
    DESCRIPTION
        "An example notification, used to illustrate the
         definition and generation of trap and inform PDUs
         (including the use of both standard and additional
         varbinds in the notification payload).
         This notification will typically be sent every
	 30 seconds, using the code found in the example module
             agent/mibgroup/examples/notification.c"
::= { netSnmpExampleNotificationPrefix 1 }
    
netSnmpExampleNotification OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  accessible-for-notify
    STATUS      obsolete
    DESCRIPTION
        "This object was improperly defined for its original purpose,
         and should no longer be used."
::= { netSnmpExampleNotifications 1 }

END

Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
7 Oct 2025 4.19 PM
root / root
0755
AGENTX-MIB.txt
17.046 KB
7 Oct 2025 4.19 PM
root / root
0644
BRIDGE-MIB.txt
49.754 KB
7 Oct 2025 4.19 PM
root / root
0644
DISMAN-EVENT-MIB.txt
66.508 KB
7 Oct 2025 4.19 PM
root / root
0644
DISMAN-SCHEDULE-MIB.txt
24.036 KB
7 Oct 2025 4.19 PM
root / root
0644
DISMAN-SCRIPT-MIB.txt
62.804 KB
7 Oct 2025 4.19 PM
root / root
0644
EtherLike-MIB.txt
82.512 KB
7 Oct 2025 4.19 PM
root / root
0644
HCNUM-TC.txt
4.551 KB
7 Oct 2025 4.19 PM
root / root
0644
HOST-RESOURCES-MIB.txt
51.313 KB
7 Oct 2025 4.19 PM
root / root
0644
HOST-RESOURCES-TYPES.txt
10.335 KB
7 Oct 2025 4.19 PM
root / root
0644
IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt
6.556 KB
7 Oct 2025 4.19 PM
root / root
0644
IANA-LANGUAGE-MIB.txt
4.284 KB
7 Oct 2025 4.19 PM
root / root
0644
IANA-RTPROTO-MIB.txt
4.002 KB
7 Oct 2025 4.19 PM
root / root
0644
IANAifType-MIB.txt
34.555 KB
7 Oct 2025 4.19 PM
root / root
0644
IF-INVERTED-STACK-MIB.txt
4.947 KB
7 Oct 2025 4.19 PM
root / root
0644
IF-MIB.txt
70.011 KB
7 Oct 2025 4.19 PM
root / root
0644
INET-ADDRESS-MIB.txt
16.389 KB
7 Oct 2025 4.19 PM
root / root
0644
IP-FORWARD-MIB.txt
45.201 KB
7 Oct 2025 4.19 PM
root / root
0644
IP-MIB.txt
181.315 KB
7 Oct 2025 4.19 PM
root / root
0644
IPV6-FLOW-LABEL-MIB.txt
1.98 KB
7 Oct 2025 4.19 PM
root / root
0644
IPV6-ICMP-MIB.txt
20.563 KB
7 Oct 2025 4.19 PM
root / root
0644
IPV6-MIB.txt
55.14 KB
7 Oct 2025 4.19 PM
root / root
0644
IPV6-TC.txt
3.08 KB
7 Oct 2025 4.19 PM
root / root
0644
IPV6-TCP-MIB.txt
8.65 KB
7 Oct 2025 4.19 PM
root / root
0644
IPV6-UDP-MIB.txt
5.564 KB
7 Oct 2025 4.19 PM
root / root
0644
LM-SENSORS-MIB.txt
5.792 KB
7 Oct 2025 4.19 PM
root / root
0644
MTA-MIB.txt
41.382 KB
7 Oct 2025 4.19 PM
root / root
0644
NET-SNMP-AGENT-MIB.txt
15.528 KB
7 Oct 2025 4.19 PM
root / root
0644
NET-SNMP-EXAMPLES-MIB.txt
8.945 KB
7 Oct 2025 4.19 PM
root / root
0644
NET-SNMP-EXTEND-MIB.txt
9.107 KB
7 Oct 2025 4.19 PM
root / root
0644
NET-SNMP-MIB.txt
1.988 KB
7 Oct 2025 4.19 PM
root / root
0644
NET-SNMP-PASS-MIB.txt
3.643 KB
7 Oct 2025 4.19 PM
root / root
0644
NET-SNMP-TC.txt
4.701 KB
7 Oct 2025 4.19 PM
root / root
0644
NET-SNMP-VACM-MIB.txt
4.921 KB
7 Oct 2025 4.19 PM
root / root
0644
NETWORK-SERVICES-MIB.txt
20.514 KB
7 Oct 2025 4.19 PM
root / root
0644
NOTIFICATION-LOG-MIB.txt
24.115 KB
7 Oct 2025 4.19 PM
root / root
0644
RFC-1215.txt
1.146 KB
7 Oct 2025 4.19 PM
root / root
0644
RFC1155-SMI.txt
2.995 KB
7 Oct 2025 4.19 PM
root / root
0644
RFC1213-MIB.txt
77.8 KB
7 Oct 2025 4.19 PM
root / root
0644
RMON-MIB.txt
144.357 KB
7 Oct 2025 4.19 PM
root / root
0644
SCTP-MIB.txt
44.261 KB
7 Oct 2025 4.19 PM
root / root
0644
SMUX-MIB.txt
4.54 KB
7 Oct 2025 4.19 PM
root / root
0644
SNMP-COMMUNITY-MIB.txt
15.127 KB
7 Oct 2025 4.19 PM
root / root
0644
SNMP-FRAMEWORK-MIB.txt
21.818 KB
7 Oct 2025 4.19 PM
root / root
0644
SNMP-MPD-MIB.txt
5.367 KB
7 Oct 2025 4.19 PM
root / root
0644
SNMP-NOTIFICATION-MIB.txt
19.545 KB
7 Oct 2025 4.19 PM
root / root
0644
SNMP-PROXY-MIB.txt
8.893 KB
7 Oct 2025 4.19 PM
root / root
0644
SNMP-TARGET-MIB.txt
22.235 KB
7 Oct 2025 4.19 PM
root / root
0644
SNMP-TLS-TM-MIB.txt
42.897 KB
7 Oct 2025 4.19 PM
root / root
0644
SNMP-TSM-MIB.txt
8.703 KB
7 Oct 2025 4.19 PM
root / root
0644
SNMP-USER-BASED-SM-MIB.txt
38.282 KB
7 Oct 2025 4.19 PM
root / root
0644
SNMP-USM-AES-MIB.txt
2.153 KB
7 Oct 2025 4.19 PM
root / root
0644
SNMP-USM-DH-OBJECTS-MIB.txt
20.606 KB
7 Oct 2025 4.19 PM
root / root
0644
SNMP-USM-HMAC-SHA2-MIB.txt
4.297 KB
7 Oct 2025 4.19 PM
root / root
0644
SNMP-VIEW-BASED-ACM-MIB.txt
33.361 KB
7 Oct 2025 4.19 PM
root / root
0644
SNMPv2-CONF.txt
8.069 KB
7 Oct 2025 4.19 PM
root / root
0644
SNMPv2-MIB.txt
28.618 KB
7 Oct 2025 4.19 PM
root / root
0644
SNMPv2-SMI.txt
8.715 KB
7 Oct 2025 4.19 PM
root / root
0644
SNMPv2-TC.txt
37.143 KB
7 Oct 2025 4.19 PM
root / root
0644
SNMPv2-TM.txt
5.64 KB
7 Oct 2025 4.19 PM
root / root
0644
TCP-MIB.txt
27.895 KB
7 Oct 2025 4.19 PM
root / root
0644
TRANSPORT-ADDRESS-MIB.txt
16.033 KB
7 Oct 2025 4.19 PM
root / root
0644
TUNNEL-MIB.txt
27.174 KB
7 Oct 2025 4.19 PM
root / root
0644
UCD-DEMO-MIB.txt
2.112 KB
7 Oct 2025 4.19 PM
root / root
0644
UCD-DISKIO-MIB.txt
4.849 KB
7 Oct 2025 4.19 PM
root / root
0644
UCD-DLMOD-MIB.txt
3.015 KB
7 Oct 2025 4.19 PM
root / root
0644
UCD-IPFWACC-MIB.txt
7.928 KB
7 Oct 2025 4.19 PM
root / root
0644
UCD-SNMP-MIB.txt
52.088 KB
7 Oct 2025 4.19 PM
root / root
0644
UDP-MIB.txt
20.393 KB
7 Oct 2025 4.19 PM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF