Commit version 24.12.13800
This commit is contained in:
193
mibs/aricent/ARICENT-PING-MIB
Normal file
193
mibs/aricent/ARICENT-PING-MIB
Normal file
@ -0,0 +1,193 @@
|
||||
-- Copyright (C) 2006-2012 Aricent Group . All Rights Reserved
|
||||
|
||||
-- /*****************************************************************
|
||||
-- * *
|
||||
-- * $RCSfile: fsping.mib,v $
|
||||
-- * *
|
||||
-- * $Date: 2014/11/03 12:29:41 $ *
|
||||
-- * *
|
||||
-- * $Revision: 1.7 $ *
|
||||
-- * *
|
||||
-- ****************************************************************/
|
||||
|
||||
ARICENT-PING-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
OBJECT-TYPE, MODULE-IDENTITY, IpAddress,
|
||||
Counter32, Integer32,
|
||||
enterprises FROM SNMPv2-SMI
|
||||
RowStatus FROM SNMPv2-TC;
|
||||
|
||||
fsPingMIB MODULE-IDENTITY
|
||||
LAST-UPDATED "201209050000Z"
|
||||
ORGANIZATION "ARICENT COMMUNICATIONS SOFTWARE"
|
||||
CONTACT-INFO "support@aricent.com"
|
||||
DESCRIPTION " This mib is for Ping module"
|
||||
REVISION "201209050000Z"
|
||||
DESCRIPTION " This mib is for Ping module"
|
||||
::= { enterprises futuresoftware(2076) 106}
|
||||
|
||||
fsPingMIBObjects OBJECT IDENTIFIER ::= { fsPingMIB 1 }
|
||||
|
||||
--This is the MIB for IP Ping functionality
|
||||
|
||||
fsPingTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF FsPingEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This entity's IP Ping Table"
|
||||
::= { fsPingMIBObjects 1 }
|
||||
|
||||
fsPingEntry OBJECT-TYPE
|
||||
SYNTAX FsPingEntry
|
||||
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 { fsPingIndex }
|
||||
::= { fsPingTable 1 }
|
||||
|
||||
FsPingEntry ::=
|
||||
SEQUENCE {
|
||||
fsPingIndex Integer32,
|
||||
fsPingDest IpAddress,
|
||||
fsPingTimeout Integer32,
|
||||
fsPingTries Integer32,
|
||||
fsPingDataSize Integer32,
|
||||
fsPingStatus INTEGER,
|
||||
fsPingSendCount Integer32,
|
||||
fsPingAverageTime Integer32,
|
||||
fsPingMaxTime Integer32,
|
||||
fsPingMinTime Integer32,
|
||||
fsPingSuccesses Counter32,
|
||||
fsPingEntryStatus RowStatus,
|
||||
fsPingHostName OCTET STRING
|
||||
}
|
||||
|
||||
fsPingIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2147483647)
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Unique value that identifies the Ping Entry"
|
||||
::= { fsPingEntry 1 }
|
||||
|
||||
fsPingDest OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The IP address of the node to be pinged."
|
||||
::= { fsPingEntry 2 }
|
||||
|
||||
fsPingTimeout 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 }
|
||||
::= { fsPingEntry 3 }
|
||||
|
||||
fsPingTries 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 }
|
||||
::= { fsPingEntry 4 }
|
||||
|
||||
fsPingDataSize 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 }
|
||||
::= { fsPingEntry 5 }
|
||||
|
||||
fsPingStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
notinitiated (1),
|
||||
progress (2),
|
||||
completed (3)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The current status of the Ping Entry"
|
||||
::= { fsPingEntry 6 }
|
||||
|
||||
fsPingSendCount OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total number of packets sent to destination."
|
||||
::= { fsPingEntry 7 }
|
||||
|
||||
fsPingAverageTime 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."
|
||||
::= { fsPingEntry 8 }
|
||||
|
||||
fsPingMaxTime 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."
|
||||
::= { fsPingEntry 9 }
|
||||
|
||||
fsPingMinTime 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."
|
||||
::= { fsPingEntry 10 }
|
||||
|
||||
fsPingSuccesses OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of ping responses received."
|
||||
::= { fsPingEntry 11 }
|
||||
|
||||
fsPingEntryStatus 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"
|
||||
|
||||
::= { fsPingEntry 12 }
|
||||
|
||||
fsPingHostName OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE (0..255))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object specifies the DNS host name
|
||||
used to send echo requests."
|
||||
::= { fsPingEntry 13 }
|
||||
|
||||
END
|
Reference in New Issue
Block a user