⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rfc1213-mib

📁 opennms得相关源码 请大家看看
💻
📖 第 1 页 / 共 5 页
字号:
---- RFC1213-MIB.html-- HTML generated by MG-SOFT MIB Explorer Version 2.0 Build 351-- Monday, November 03, 2003 at 17:27:57-- HTML group index:-- RMON2-MIB, RFC1155-SMI, RFC1213-MIB, RMON-MIB, SNMPv2-SMI, -- SNMPv2-TC, TOKEN-RING-RMON-MIB.--RFC1213-MIB DEFINITIONS ::= BEGIN	IMPORTS		internet, mgmt			FROM RFC1155-SMI;---- Type definitions--	DisplayString ::= OCTET STRING	PhysAddress ::= OCTET STRING---- Node definitions--	-- 1.3.6.1.2.1	mib-2 OBJECT IDENTIFIER ::= { mgmt 1 }	-- 1.3.6.1.2.1.1	system OBJECT IDENTIFIER ::= { mib-2 1 }	-- 1.3.6.1.2.1.1.1	sysDescr OBJECT-TYPE		SYNTAX DisplayString (SIZE (0..255))		ACCESS read-only		STATUS mandatory		DESCRIPTION			"A textual description of the entity.  This value			should include the full name and version			identification of the system's hardware type,			software operating-system, and networking			software.  It is mandatory that this only contain			printable ASCII characters."	::= { system 1 }	-- 1.3.6.1.2.1.1.2	sysObjectID OBJECT-TYPE		SYNTAX OBJECT IDENTIFIER		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The vendor's authoritative identification of the			network management subsystem contained in the			entity.  This value is allocated within the SMI			enterprises subtree (1.3.6.1.4.1) and provides an			easy and unambiguous means for determining `what			kind of box' is being managed.  For example, if			vendor `Flintstones, Inc.' was assigned the			subtree 1.3.6.1.4.1.4242, it could assign the			identifier 1.3.6.1.4.1.4242.1.1 to its `Fred			Router'."	::= { system 2 }	-- 1.3.6.1.2.1.1.3	sysUpTime OBJECT-TYPE		SYNTAX TimeTicks		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The time (in hundredths of a second) since the			network management portion of the system was last			re-initialized."	::= { system 3 }	-- 1.3.6.1.2.1.1.4	sysContact OBJECT-TYPE		SYNTAX DisplayString (SIZE (0..255))		ACCESS read-write		STATUS mandatory		DESCRIPTION			"The textual identification of the contact person			for this managed node, together with information			on how to contact this person."	::= { system 4 }	-- 1.3.6.1.2.1.1.5	sysName OBJECT-TYPE		SYNTAX DisplayString (SIZE (0..255))		ACCESS read-write		STATUS mandatory		DESCRIPTION			"An administratively-assigned name for this			managed node.  By convention, this is the node's			fully-qualified domain name."	::= { system 5 }	-- 1.3.6.1.2.1.1.6	sysLocation OBJECT-TYPE		SYNTAX DisplayString (SIZE (0..255))		ACCESS read-write		STATUS mandatory		DESCRIPTION			"The physical location of this node (e.g.,			`telephone closet, 3rd floor')."	::= { system 6 }	-- 1.3.6.1.2.1.1.7	sysServices OBJECT-TYPE		SYNTAX INTEGER (0..127)		ACCESS read-only		STATUS mandatory		DESCRIPTION			"A value which indicates the set of services that			this entity primarily offers.						The value is a sum.  This sum initially takes the			value zero, Then, for each layer, L, in the range			1 through 7, that this node performs transactions			for, 2 raised to (L - 1) is added to the sum.  For			example, a node which performs primarily routing			functions would have a value of 4 (2^(3-1)).  In			contrast, a node which is a host offering			application services would have a value of 72			(2^(4-1) + 2^(7-1)).  Note that in the context of			the Internet suite of protocols, values should be			calculated accordingly:						     layer  functionality			         1  physical (e.g., repeaters)			         2  datalink/subnetwork (e.g., bridges)			         3  internet (e.g., IP gateways)			         4  end-to-end  (e.g., IP hosts)			         7  applications (e.g., mail relays)						For systems including OSI protocols, layers 5 and			6 may also be counted."	::= { system 7 }	-- 1.3.6.1.2.1.2	interfaces OBJECT IDENTIFIER ::= { mib-2 2 }	-- 1.3.6.1.2.1.2.1	ifNumber OBJECT-TYPE		SYNTAX INTEGER		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of network interfaces (regardless of			their current state) present on this system."	::= { interfaces 1 }	-- 1.3.6.1.2.1.2.2	ifTable OBJECT-TYPE		SYNTAX SEQUENCE OF IfEntry		ACCESS not-accessible		STATUS mandatory		DESCRIPTION			"A list of interface entries.  The number of			entries is given by the value of ifNumber."	::= { interfaces 2 }	-- 1.3.6.1.2.1.2.2.1	ifEntry OBJECT-TYPE		SYNTAX IfEntry		ACCESS not-accessible		STATUS mandatory		DESCRIPTION			"An interface entry containing objects at the			subnetwork layer and below for a particular			interface."		INDEX { ifIndex } 	::= { ifTable 1 }	IfEntry ::= SEQUENCE		{		ifIndex INTEGER,		ifDescr DisplayString,		ifType INTEGER,		ifMtu INTEGER,		ifSpeed Gauge,		ifPhysAddress PhysAddress,		ifAdminStatus INTEGER,		ifOperStatus INTEGER,		ifLastChange TimeTicks,		ifInOctets Counter,		ifInUcastPkts Counter,		ifInNUcastPkts Counter,		ifInDiscards Counter,		ifInErrors Counter,		ifInUnknownProtos Counter,		ifOutOctets Counter,		ifOutUcastPkts Counter,		ifOutNUcastPkts Counter,		ifOutDiscards Counter,		ifOutErrors Counter,		ifOutQLen Gauge,		ifSpecific OBJECT IDENTIFIER		}	-- 1.3.6.1.2.1.2.2.1.1	ifIndex OBJECT-TYPE		SYNTAX INTEGER		ACCESS read-only		STATUS mandatory		DESCRIPTION			"A unique value for each interface.  Its value			ranges between 1 and the value of ifNumber.  The			value for each interface must remain constant at			least from one re-initialization of the entity's			network management system to the next re-			initialization."	::= { ifEntry 1 }	-- 1.3.6.1.2.1.2.2.1.2	ifDescr OBJECT-TYPE		SYNTAX DisplayString (SIZE (0..255))		ACCESS read-only		STATUS mandatory		DESCRIPTION			"A textual string containing information about the			interface.  This string should include the name of			the manufacturer, the product name and the version			of the hardware interface."	::= { ifEntry 2 }	-- 1.3.6.1.2.1.2.2.1.3	ifType OBJECT-TYPE		SYNTAX INTEGER		{			other(1),			regular1822(2),			hdh1822(3),			ddn-x25(4),			rfc877-x25(5),			ethernet-csmacd(6),			iso88023-csmacd(7),			iso88024-tokenBus(8),			iso88025-tokenRing(9),			iso88026-man(10),			starLan(11),			proteon-10Mbit(12),			proteon-80Mbit(13),			hyperchannel(14),			fddi(15),			lapb(16),			sdlc(17),			ds1(18),			e1(19),			basicISDN(20),			primaryISDN(21),			propPointToPointSerial(22),			ppp(23),			softwareLoopback(24),			eon(25),			ethernet-3Mbit(26),			nsip(27),			slip(28),			ultra(29),			ds3(30),			sip(31),			frame-relay(32)		}		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The type of interface, distinguished according to			the physical/link protocol(s) immediately `below'			the network layer in the protocol stack."	::= { ifEntry 3 }	-- 1.3.6.1.2.1.2.2.1.4	ifMtu OBJECT-TYPE		SYNTAX INTEGER		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The size of the largest datagram which can be			sent/received on the interface, specified in			octets.  For interfaces that are used for			transmitting network datagrams, this is the size			of the largest network datagram that can be sent			on the interface."	::= { ifEntry 4 }	-- 1.3.6.1.2.1.2.2.1.5	ifSpeed OBJECT-TYPE		SYNTAX Gauge		ACCESS read-only		STATUS mandatory		DESCRIPTION			"An estimate of the interface's current bandwidth			in bits per second.  For interfaces which do not			vary in bandwidth or for those where no accurate			estimation can be made, this object should contain			the nominal bandwidth."	::= { ifEntry 5 }	-- 1.3.6.1.2.1.2.2.1.6	ifPhysAddress OBJECT-TYPE		SYNTAX PhysAddress		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The interface's address at the protocol layer			immediately `below' the network layer in the			protocol stack.  For interfaces which do not have			such an address (e.g., a serial line), this object			should contain an octet string of zero length."	::= { ifEntry 6 }	-- 1.3.6.1.2.1.2.2.1.7	ifAdminStatus OBJECT-TYPE		SYNTAX INTEGER		{			up(1),			down(2),			testing(3)		}		ACCESS read-write		STATUS mandatory		DESCRIPTION			"The desired state of the interface.  The			testing(3) state indicates that no operational			packets can be passed."	::= { ifEntry 7 }	-- 1.3.6.1.2.1.2.2.1.8	ifOperStatus OBJECT-TYPE		SYNTAX INTEGER		{			up(1),			down(2),			testing(3)		}		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The current operational state of the interface.			The testing(3) state indicates that no operational			packets can be passed."	::= { ifEntry 8 }	-- 1.3.6.1.2.1.2.2.1.9	ifLastChange OBJECT-TYPE		SYNTAX TimeTicks		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The value of sysUpTime at the time the interface			entered its current operational state.  If the			current state was entered prior to the last re-			initialization of the local network management			subsystem, then this object contains a zero			value."	::= { ifEntry 9 }	-- 1.3.6.1.2.1.2.2.1.10	ifInOctets OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The total number of octets received on the			interface, including framing characters."	::= { ifEntry 10 }	-- 1.3.6.1.2.1.2.2.1.11	ifInUcastPkts OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of subnetwork-unicast packets			delivered to a higher-layer protocol."	::= { ifEntry 11 }	-- 1.3.6.1.2.1.2.2.1.12	ifInNUcastPkts OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of non-unicast (i.e., subnetwork-			broadcast or subnetwork-multicast) packets			delivered to a higher-layer protocol."	::= { ifEntry 12 }	-- 1.3.6.1.2.1.2.2.1.13	ifInDiscards OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of inbound packets which were chosen			to be discarded even though no errors had been			detected to prevent their being deliverable to a			higher-layer protocol.  One possible reason for			discarding such a packet could be to free up			buffer space."	::= { ifEntry 13 }	-- 1.3.6.1.2.1.2.2.1.14	ifInErrors OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of inbound packets that contained			errors preventing them from being deliverable to a			higher-layer protocol."	::= { ifEntry 14 }	-- 1.3.6.1.2.1.2.2.1.15	ifInUnknownProtos OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of packets received via the interface			which were discarded because of an unknown or			unsupported protocol."	::= { ifEntry 15 }	-- 1.3.6.1.2.1.2.2.1.16	ifOutOctets OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The total number of octets transmitted out of the			interface, including framing characters."	::= { ifEntry 16 }	-- 1.3.6.1.2.1.2.2.1.17	ifOutUcastPkts OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The total number of packets that higher-level			protocols requested be transmitted to a			subnetwork-unicast address, including those that			were discarded or not sent."	::= { ifEntry 17 }	-- 1.3.6.1.2.1.2.2.1.18	ifOutNUcastPkts OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The total number of packets that higher-level			protocols requested be transmitted to a non-			unicast (i.e., a subnetwork-broadcast or			subnetwork-multicast) address, including those			that were discarded or not sent."	::= { ifEntry 18 }	-- 1.3.6.1.2.1.2.2.1.19	ifOutDiscards OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of outbound packets which were chosen			to be discarded even though no errors had been			detected to prevent their being transmitted.  One			possible reason for discarding such a packet could			be to free up buffer space."	::= { ifEntry 19 }	-- 1.3.6.1.2.1.2.2.1.20	ifOutErrors OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of outbound packets that could not be			transmitted because of errors."	::= { ifEntry 20 }	-- 1.3.6.1.2.1.2.2.1.21	ifOutQLen OBJECT-TYPE		SYNTAX Gauge		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The length of the output packet queue (in			packets)."	::= { ifEntry 21 }	-- 1.3.6.1.2.1.2.2.1.22	ifSpecific OBJECT-TYPE		SYNTAX OBJECT IDENTIFIER		ACCESS read-only		STATUS mandatory		DESCRIPTION			"A reference to MIB definitions specific to the			particular media being used to realize the			interface.  For example, if the interface is			realized by an ethernet, then the value of this			object refers to a document defining objects			specific to ethernet.  If this information is not			present, its value should be set to the OBJECT			IDENTIFIER { 0 0 }, which is a syntatically valid			object identifier, and any conformant			implementation of ASN.1 and BER must be able to			generate and recognize this value."	::= { ifEntry 22 }	-- 1.3.6.1.2.1.3	at OBJECT IDENTIFIER ::= { mib-2 3 }	-- 1.3.6.1.2.1.3.1

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -