AD | Application | AWS | Azure | Cloud | Database | Enterprise | Environmental | Event Log | File System | Infra | IoT | IT Service | Linux | Network/System | Performance | Protocol | SaaS | Security | Service Level | SNMP | Storage | VMware | VoIP | Web | Wireless

Crumbtrail

MonitorTools.com » Technical documentation » SNMP » MIB » Cisco » CISCO-FIPS-STATS-MIB

CISCO-FIPS-STATS-MIB device MIB details by Cisco

CISCO-FIPS-STATS-MIB file content

The SNMP protocol is used to for conveying information and commands between agents and managing entities. SNMP uses the User Datagram Protocol (UDP) as the transport protocol for passing data between managers and agents. The reasons for using UDP for SNMP are, firstly it has low overheads in comparison to TCP, which uses a 3-way hand shake for connection. Secondly, in congested networks, SNMP over TCP is a bad idea because TCP in order to maintain reliability will flood the network with retransmissions.

Management information (MIB) is represented as a collection of managed objects. These objects together form a virtual information base called MIB. An agent may implement many MIBs, but all agents must implement a particular MIB called MIB-II [16]. This standard defines variables for things such as interface statistics (interface speeds, MTU, octets sent, octets received, etc.) as well as various other things pertaining to the system itself (system location, system contact, etc.). The main goal of MIB-II is to provide general TCP/IP management information.

Use ActiveXperts Network Monitor 2024 to import vendor-specific MIB files, inclusing CISCO-FIPS-STATS-MIB.


Vendor: Cisco
Mib: CISCO-FIPS-STATS-MIB  [download]  [view objects]
Tool: ActiveXperts Network Monitor 2024 [download]    (ships with advanced SNMP/MIB tools)
-- *------------------------------------------------------------------
-- * CISCO-FIPS-STATS-MIB.my:  The CISCO FIPs Status MIB.
-- *
-- *
-- * Copyright (c) 2002-2003 by Cisco Systems, Inc.
-- * All rights reserved.
-- *
-- *------------------------------------------------------------------

CISCO-FIPS-STATS-MIB DEFINITIONS ::= BEGIN
IMPORTS
	MODULE-IDENTITY, OBJECT-TYPE
		FROM SNMPv2-SMI
	OBJECT-GROUP, MODULE-COMPLIANCE
		FROM SNMPv2-CONF
	ciscoMgmt
                FROM CISCO-SMI;

ciscoFipsStatsMIB       MODULE-IDENTITY
	LAST-UPDATED	"200303100000Z"
	ORGANIZATION	"Cisco Systems, Inc."
	CONTACT-INFO	
	   "Cisco Systems
            170 W Tasman Drive
            San Jose, CA  95134
            USA

            Tel: +1 800 553-NETS
            E-mail: cs-fips-stats-mib@cisco.com"

	DESCRIPTION
	    "The Federal Information Processing Standards (FIPS) 
             power-up self-test status MIB module"
          
      	REVISION        "200303100000Z"
        DESCRIPTION
             "The initial version of this MIB."
	::= { ciscoMgmt 999999 }

ciscoFipsStatsMIBNotifs  OBJECT IDENTIFIER ::=  
                                 { ciscoFipsStatsMIB 0 }
ciscoFipsStatsMIBObjects OBJECT IDENTIFIER ::=  
                                 { ciscoFipsStatsMIB 1 }
ciscoFipsStatsMIBConform OBJECT IDENTIFIER ::=  
                                 { ciscoFipsStatsMIB 2 }

-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- MIB Objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cfipsStats OBJECT IDENTIFIER ::= { ciscoFipsStatsMIBObjects 1 }

cfipsStatsGlobal OBJECT IDENTIFIER ::= { cfipsStats 1 }

cfipsPostStatus           	OBJECT-TYPE
	SYNTAX			INTEGER {
                                         running (1),
                                         passed (2),
                                         failed (3),
                                         notAvailable (4)
                                         }
	MAX-ACCESS		read-only
	STATUS			current
	DESCRIPTION
	       "Indicates whether or not the FIPS power-up self-test passed."
	DEFVAL			{ notAvailable }
	::= { cfipsStatsGlobal 1 }

ciscoFipsStatsMIBCompliances OBJECT IDENTIFIER
   ::= { ciscoFipsStatsMIBConform 1 }
ciscoFipsStatsMIBGroups  OBJECT IDENTIFIER 
   ::= { ciscoFipsStatsMIBConform 2 }
  
ciscoFipsStatsMIBCompliance MODULE-COMPLIANCE
   STATUS         current
   DESCRIPTION
      "The compliance statement for agents which 
       implement the CISCO FIPs Status MIB."
   MODULE
   MANDATORY-GROUPS { 
      ciscoFipsStatsMIBGroup
   }
   ::= { ciscoFipsStatsMIBCompliances 1 }


ciscoFipsStatsMIBGroup OBJECT-GROUP
	OBJECTS
	{
          cfipsPostStatus
	}
	STATUS 	current
	DESCRIPTION
	       "The objects for FIPS configuration."
	::= { ciscoFipsStatsMIBGroups 1 }

END