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

📄 rfc1213-mib

📁 opennms得相关源码 请大家看看
💻
📖 第 1 页 / 共 5 页
字号:
	atTable OBJECT-TYPE		SYNTAX SEQUENCE OF AtEntry		ACCESS not-accessible		STATUS deprecated		DESCRIPTION			"The Address Translation tables contain the			NetworkAddress to `physical' address equivalences.			Some interfaces do not use translation tables for			determining address equivalences (e.g., DDN-X.25			has an algorithmic method); if all interfaces are			of this type, then the Address Translation table			is empty, i.e., has zero entries."	::= { at 1 }	-- 1.3.6.1.2.1.3.1.1	atEntry OBJECT-TYPE		SYNTAX AtEntry		ACCESS not-accessible		STATUS deprecated		DESCRIPTION			"Each entry contains one NetworkAddress to			`physical' address equivalence."		INDEX { atIfIndex, atNetAddress } 	::= { atTable 1 }	AtEntry ::= SEQUENCE		{		atIfIndex INTEGER,		atPhysAddress PhysAddress,		atNetAddress NetworkAddress		}	-- 1.3.6.1.2.1.3.1.1.1	atIfIndex OBJECT-TYPE		SYNTAX INTEGER		ACCESS read-write		STATUS deprecated		DESCRIPTION			"The interface on which this entry's equivalence			is effective.  The interface identified by a			particular value of this index is the same			interface as identified by the same value of			ifIndex."	::= { atEntry 1 }	-- 1.3.6.1.2.1.3.1.1.2	atPhysAddress OBJECT-TYPE		SYNTAX PhysAddress		ACCESS read-write		STATUS deprecated		DESCRIPTION			"The media-dependent `physical' address.						Setting this object to a null string (one of zero			length) has the effect of invaliding the			corresponding entry in the atTable object.  That			is, it effectively dissasociates the interface			identified with said entry from the mapping			identified with said entry.  It is an			implementation-specific matter as to whether the			agent removes an invalidated entry from the table.			Accordingly, management stations must be prepared			to receive tabular information from agents that			corresponds to entries not currently in use.			Proper interpretation of such entries requires			examination of the relevant atPhysAddress object."	::= { atEntry 2 }	-- 1.3.6.1.2.1.3.1.1.3	atNetAddress OBJECT-TYPE		SYNTAX NetworkAddress		ACCESS read-write		STATUS deprecated		DESCRIPTION			"The NetworkAddress (e.g., the IP address)			corresponding to the media-dependent `physical'			address."	::= { atEntry 3 }	-- 1.3.6.1.2.1.4	ip OBJECT IDENTIFIER ::= { mib-2 4 }	-- 1.3.6.1.2.1.4.1	ipForwarding OBJECT-TYPE		SYNTAX INTEGER		{			forwarding(1),			not-forwarding(2)		}		ACCESS read-write		STATUS mandatory		DESCRIPTION			"The indication of whether this entity is acting			as an IP gateway in respect to the forwarding of			datagrams received by, but not addressed to, this			entity.  IP gateways forward datagrams.  IP hosts			do not (except those source-routed via the host).						Note that for some managed nodes, this object may			take on only a subset of the values possible.			Accordingly, it is appropriate for an agent to			return a `badValue' response if a management			station attempts to change this object to an			inappropriate value."	::= { ip 1 }	-- 1.3.6.1.2.1.4.2	ipDefaultTTL OBJECT-TYPE		SYNTAX INTEGER		ACCESS read-write		STATUS mandatory		DESCRIPTION			"The default value inserted into the Time-To-Live			field of the IP header of datagrams originated at			this entity, whenever a TTL value is not supplied			by the transport layer protocol."	::= { ip 2 }	-- 1.3.6.1.2.1.4.3	ipInReceives OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The total number of input datagrams received from			interfaces, including those received in error."	::= { ip 3 }	-- 1.3.6.1.2.1.4.4	ipInHdrErrors OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of input datagrams discarded due to			errors in their IP headers, including bad			checksums, version number mismatch, other format			errors, time-to-live exceeded, errors discovered			in processing their IP options, etc."	::= { ip 4 }	-- 1.3.6.1.2.1.4.5	ipInAddrErrors OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of input datagrams discarded because			the IP address in their IP header's destination			field was not a valid address to be received at			this entity.  This count includes invalid			addresses (e.g., 0.0.0.0) and addresses of			unsupported Classes (e.g., Class E).  For entities			which are not IP Gateways and therefore do not			forward datagrams, this counter includes datagrams			discarded because the destination address was not			a local address."	::= { ip 5 }	-- 1.3.6.1.2.1.4.6	ipForwDatagrams OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of input datagrams for which this			entity was not their final IP destination, as a			result of which an attempt was made to find a			route to forward them to that final destination.			In entities which do not act as IP Gateways, this			counter will include only those packets which were			Source-Routed via this entity, and the Source-			Route option processing was successful."	::= { ip 6 }	-- 1.3.6.1.2.1.4.7	ipInUnknownProtos OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of locally-addressed datagrams			received successfully but discarded because of an			unknown or unsupported protocol."	::= { ip 7 }	-- 1.3.6.1.2.1.4.8	ipInDiscards OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of input IP datagrams for which no			problems were encountered to prevent their			continued processing, but which were discarded			(e.g., for lack of buffer space).  Note that this			counter does not include any datagrams discarded			while awaiting re-assembly."	::= { ip 8 }	-- 1.3.6.1.2.1.4.9	ipInDelivers OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The total number of input datagrams successfully			delivered to IP user-protocols (including ICMP)."	::= { ip 9 }	-- 1.3.6.1.2.1.4.10	ipOutRequests OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The total number of IP datagrams which local IP			user-protocols (including ICMP) supplied to IP in			requests for transmission.  Note that this counter			does not include any datagrams counted in			ipForwDatagrams."	::= { ip 10 }	-- 1.3.6.1.2.1.4.11	ipOutDiscards OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of output IP datagrams for which no			problem was encountered to prevent their			transmission to their destination, but which were			discarded (e.g., for lack of buffer space).  Note			that this counter would include datagrams counted			in ipForwDatagrams if any such packets met this			(discretionary) discard criterion."	::= { ip 11 }	-- 1.3.6.1.2.1.4.12	ipOutNoRoutes OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of IP datagrams discarded because no			route could be found to transmit them to their			destination.  Note that this counter includes any			packets counted in ipForwDatagrams which meet this			`no-route' criterion.  Note that this includes any			datagarms which a host cannot route because all of			its default gateways are down."	::= { ip 12 }	-- 1.3.6.1.2.1.4.13	ipReasmTimeout OBJECT-TYPE		SYNTAX INTEGER		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The maximum number of seconds which received			fragments are held while they are awaiting			reassembly at this entity."	::= { ip 13 }	-- 1.3.6.1.2.1.4.14	ipReasmReqds OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of IP fragments received which needed			to be reassembled at this entity."	::= { ip 14 }	-- 1.3.6.1.2.1.4.15	ipReasmOKs OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of IP datagrams successfully re-			assembled."	::= { ip 15 }	-- 1.3.6.1.2.1.4.16	ipReasmFails OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of failures detected by the IP re-			assembly algorithm (for whatever reason: timed			out, errors, etc).  Note that this is not			necessarily a count of discarded IP fragments			since some algorithms (notably the algorithm in			RFC 815) can lose track of the number of fragments			by combining them as they are received."	::= { ip 16 }	-- 1.3.6.1.2.1.4.17	ipFragOKs OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of IP datagrams that have been			successfully fragmented at this entity."	::= { ip 17 }	-- 1.3.6.1.2.1.4.18	ipFragFails OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of IP datagrams that have been			discarded because they needed to be fragmented at			this entity but could not be, e.g., because their			Don't Fragment flag was set."	::= { ip 18 }	-- 1.3.6.1.2.1.4.19	ipFragCreates OBJECT-TYPE		SYNTAX Counter		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The number of IP datagram fragments that have			been generated as a result of fragmentation at			this entity."	::= { ip 19 }	-- 1.3.6.1.2.1.4.20	ipAddrTable OBJECT-TYPE		SYNTAX SEQUENCE OF IpAddrEntry		ACCESS not-accessible		STATUS mandatory		DESCRIPTION			"The table of addressing information relevant to			this entity's IP addresses."	::= { ip 20 }	-- 1.3.6.1.2.1.4.20.1	ipAddrEntry OBJECT-TYPE		SYNTAX IpAddrEntry		ACCESS not-accessible		STATUS mandatory		DESCRIPTION			"The addressing information for one of this			entity's IP addresses."		INDEX { ipAdEntAddr } 	::= { ipAddrTable 1 }	IpAddrEntry ::= SEQUENCE		{		ipAdEntAddr IpAddress,		ipAdEntIfIndex INTEGER,		ipAdEntNetMask IpAddress,		ipAdEntBcastAddr INTEGER,		ipAdEntReasmMaxSize INTEGER		}	-- 1.3.6.1.2.1.4.20.1.1	ipAdEntAddr OBJECT-TYPE		SYNTAX IpAddress		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The IP address to which this entry's addressing			information pertains."	::= { ipAddrEntry 1 }	-- 1.3.6.1.2.1.4.20.1.2	ipAdEntIfIndex OBJECT-TYPE		SYNTAX INTEGER		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The index value which uniquely identifies the			interface to which this entry is applicable.  The			interface identified by a particular value of this			index is the same interface as identified by the			same value of ifIndex."	::= { ipAddrEntry 2 }	-- 1.3.6.1.2.1.4.20.1.3	ipAdEntNetMask OBJECT-TYPE		SYNTAX IpAddress		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The subnet mask associated with the IP address of			this entry.  The value of the mask is an IP			address with all the network bits set to 1 and all			the hosts bits set to 0."	::= { ipAddrEntry 3 }	-- 1.3.6.1.2.1.4.20.1.4	ipAdEntBcastAddr OBJECT-TYPE		SYNTAX INTEGER		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The value of the least-significant bit in the IP			broadcast address used for sending datagrams on			the (logical) interface associated with the IP			address of this entry.  For example, when the			Internet standard all-ones broadcast address is			used, the value will be 1.  This value applies to			both the subnet and network broadcasts addresses			used by the entity on this (logical) interface."	::= { ipAddrEntry 4 }	-- 1.3.6.1.2.1.4.20.1.5	ipAdEntReasmMaxSize OBJECT-TYPE		SYNTAX INTEGER (0..65535)		ACCESS read-only		STATUS mandatory		DESCRIPTION			"The size of the largest IP datagram which this			entity can re-assemble from incoming IP fragmented			datagrams received on this interface."	::= { ipAddrEntry 5 }	-- 1.3.6.1.2.1.4.21	ipRouteTable OBJECT-TYPE		SYNTAX SEQUENCE OF IpRouteEntry		ACCESS not-accessible		STATUS mandatory		DESCRIPTION			"This entity's IP Routing table."	::= { ip 21 }	-- 1.3.6.1.2.1.4.21.1	ipRouteEntry OBJECT-TYPE		SYNTAX IpRouteEntry		ACCESS not-accessible		STATUS mandatory		DESCRIPTION			"A route to a particular destination."		INDEX { ipRouteDest } 	::= { ipRouteTable 1 }	IpRouteEntry ::= SEQUENCE		{		ipRouteDest IpAddress,		ipRouteIfIndex INTEGER,		ipRouteMetric1 INTEGER,		ipRouteMetric2 INTEGER,		ipRouteMetric3 INTEGER,		ipRouteMetric4 INTEGER,		ipRouteNextHop IpAddress,		ipRouteType INTEGER,		ipRouteProto INTEGER,		ipRouteAge INTEGER,		ipRouteMask IpAddress,		ipRouteMetric5 INTEGER,		ipRouteInfo OBJECT IDENTIFIER		}	-- 1.3.6.1.2.1.4.21.1.1	ipRouteDest OBJECT-TYPE		SYNTAX IpAddress		ACCESS read-write		STATUS mandatory		DESCRIPTION			"The destination IP address of this route.  An			entry with a value of 0.0.0.0 is considered a			default route.  Multiple routes to a single			destination can appear in the table, but access to			such multiple entries is dependent on the table-			access mechanisms defined by the network			management protocol in use."	::= { ipRouteEntry 1 }	-- 1.3.6.1.2.1.4.21.1.2	ipRouteIfIndex OBJECT-TYPE		SYNTAX INTEGER		ACCESS read-write		STATUS mandatory		DESCRIPTION			"The index value which uniquely identifies the			local interface through which the next hop of this			route should be reached.  The interface identified			by a particular value of this index is the same			interface as identified by the same value of			ifIndex."	::= { ipRouteEntry 2 }	-- 1.3.6.1.2.1.4.21.1.3	ipRouteMetric1 OBJECT-TYPE		SYNTAX INTEGER		ACCESS read-write		STATUS mandatory		DESCRIPTION			"The primary routing metric for this route.  The			semantics of this metric are determined by the			routing-protocol specified in the route's			ipRouteProto value.  If this metric is not used,			its value should be set to -1."	::= { ipRouteEntry 3 }	-- 1.3.6.1.2.1.4.21.1.4	ipRouteMetric2 OBJECT-TYPE		SYNTAX INTEGER		ACCESS read-write		STATUS mandatory		DESCRIPTION			"An alternate routing metric for this route.  The			semantics of this metric are determined by the			routing-protocol specified in the route's			ipRouteProto value.  If this metric is not used,			its value should be set to -1."

⌨️ 快捷键说明

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