Commit version 24.12.13800
This commit is contained in:
187
mibs/supermicro/SUPERMICRO-MIPING-MIB
Normal file
187
mibs/supermicro/SUPERMICRO-MIPING-MIB
Normal file
@ -0,0 +1,187 @@
|
||||
-- Copyright (C) 2008-2014 Super Micro Computer Inc. All Rights Reserved
|
||||
|
||||
-- $Id: fsmpping.mib,v 1.3 2012/09/07 09:52:05 siva Exp $
|
||||
|
||||
SUPERMICRO-MIPING-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
OBJECT-TYPE, MODULE-IDENTITY, IpAddress,
|
||||
Counter32, Integer32,
|
||||
enterprises FROM SNMPv2-SMI
|
||||
RowStatus FROM SNMPv2-TC;
|
||||
|
||||
fsMIPingMIB MODULE-IDENTITY
|
||||
LAST-UPDATED "201209050000Z"
|
||||
ORGANIZATION "Super Micro Computer Inc."
|
||||
CONTACT-INFO "support@Supermicro.com"
|
||||
DESCRIPTION
|
||||
" This mib module is for Ping with virutal routing support."
|
||||
REVISION "201209050000Z"
|
||||
DESCRIPTION
|
||||
" This mib module is for Ping with virutal routing support."
|
||||
::= { enterprises supermicro-computer-inc(10876) super-switch(101) basic(2) 36 }
|
||||
|
||||
fsMIPingMIBObjects OBJECT IDENTIFIER ::= { fsMIPingMIB 1 }
|
||||
|
||||
--This is the MIB for IP Ping functionality
|
||||
|
||||
fsMIPingTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF FsMIPingEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This entity's IP Ping Table"
|
||||
::= { fsMIPingMIBObjects 1 }
|
||||
|
||||
fsMIPingEntry OBJECT-TYPE
|
||||
SYNTAX FsMIPingEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Contains the information about a particular IP ping
|
||||
Instance. Objects in this table can not be updated when
|
||||
the PingStatus is in progress"
|
||||
INDEX { fsMIPingIndex }
|
||||
::= { fsMIPingTable 1 }
|
||||
|
||||
FsMIPingEntry ::= SEQUENCE {
|
||||
fsMIPingIndex Integer32,
|
||||
fsMIPingDest IpAddress,
|
||||
fsMIPingContextId Integer32,
|
||||
fsMIPingTimeout Integer32,
|
||||
fsMIPingTries Integer32,
|
||||
fsMIPingDataSize Integer32,
|
||||
fsMIPingStatus INTEGER,
|
||||
fsMIPingSendCount Integer32,
|
||||
fsMIPingAverageTime Integer32,
|
||||
fsMIPingMaxTime Integer32,
|
||||
fsMIPingMinTime Integer32,
|
||||
fsMIPingSuccesses Counter32,
|
||||
fsMIPingEntryStatus RowStatus
|
||||
}
|
||||
|
||||
fsMIPingIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2147483647)
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Unique value that identifies the Ping Entry"
|
||||
::= { fsMIPingEntry 1 }
|
||||
|
||||
fsMIPingDest OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The IP address of the node to be pinged."
|
||||
::= { fsMIPingEntry 2 }
|
||||
|
||||
fsMIPingContextId OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..255)
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The Virtual Router for which the ping session is initiated.
|
||||
The reachability of the destination will be determined in
|
||||
the specified VR."
|
||||
DEFVAL { 0 }
|
||||
::= { fsMIPingEntry 3 }
|
||||
|
||||
fsMIPingTimeout OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..100)
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The time in seconds after which the entity waiting
|
||||
for the ping response times out."
|
||||
DEFVAL { 1 }
|
||||
::= { fsMIPingEntry 4 }
|
||||
|
||||
fsMIPingTries OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..1000)
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of times the given node address is to be
|
||||
pinged."
|
||||
DEFVAL { 3 }
|
||||
::= { fsMIPingEntry 5 }
|
||||
|
||||
fsMIPingDataSize OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2080)
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The size of the data portion of the PING PDU in bytes"
|
||||
DEFVAL { 64 }
|
||||
::= { fsMIPingEntry 6 }
|
||||
|
||||
fsMIPingStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
notinitiated (1),
|
||||
progress (2),
|
||||
completed (3)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The current status of the Ping Entry"
|
||||
::= { fsMIPingEntry 7 }
|
||||
|
||||
fsMIPingSendCount OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total number of packets sent to destination."
|
||||
::= { fsMIPingEntry 8 }
|
||||
|
||||
fsMIPingAverageTime OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The average value of the round trip time in milli seconds
|
||||
to this destination."
|
||||
::= { fsMIPingEntry 9 }
|
||||
|
||||
fsMIPingMaxTime OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The maximum value of the round trip time in milli seconds
|
||||
to this destination."
|
||||
::= { fsMIPingEntry 10 }
|
||||
|
||||
fsMIPingMinTime OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The minimum value of the round trip time in milli seconds
|
||||
to this destination."
|
||||
::= { fsMIPingEntry 11 }
|
||||
|
||||
fsMIPingSuccesses OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of ping responses received."
|
||||
::= { fsMIPingEntry 12 }
|
||||
|
||||
fsMIPingEntryStatus OBJECT-TYPE
|
||||
SYNTAX RowStatus
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The status of this table entry. Once the entry status is
|
||||
set to active, the associate entry cannot be modified until
|
||||
the sequence completes (PingStatus is completed).Management
|
||||
station created the Ping Entries should take care of
|
||||
deletion. Entry Can be made active only if PingDestination is
|
||||
configured"
|
||||
|
||||
::= { fsMIPingEntry 13 }
|
||||
END
|
Reference in New Issue
Block a user