Skip to content

Commit

Permalink
Merge pull request #1 from MartynKeigher/develop
Browse files Browse the repository at this point in the history
Initial update of MIBS
  • Loading branch information
MartynKeigher authored Jan 12, 2020
2 parents c60ed48 + f7317ac commit 24ad6d4
Show file tree
Hide file tree
Showing 65 changed files with 199,014 additions and 0 deletions.
7,157 changes: 7,157 additions & 0 deletions RFC/CPQHLTH-MIB.MIB

Large diffs are not rendered by default.

2,413 changes: 2,413 additions & 0 deletions RFC/CPQHOST-MIB.MIB

Large diffs are not rendered by default.

3,867 changes: 3,867 additions & 0 deletions RFC/CPQSINFO-MIB.MIB

Large diffs are not rendered by default.

1,756 changes: 1,756 additions & 0 deletions RFC/CPSMIB.MIB

Large diffs are not rendered by default.

166 changes: 166 additions & 0 deletions RFC/DHCP-MIB.MIB
Original file line number Diff line number Diff line change
@@ -0,0 +1,166 @@
DHCP-MIB DEFINITIONS ::= BEGIN


IMPORTS
enterprises,
OBJECT-TYPE
FROM RFC1155-SMI
DisplayString
FROM RFC1213-MIB
microsoft,
software
FROM WINS-MIB;


-- microsoft OBJECT IDENTIFIER ::= { enterprises 311 }
-- software OBJECT IDENTIFIER ::= { microsoft 1 }

dhcp OBJECT IDENTIFIER ::= { software 3 }
dhcpPar OBJECT IDENTIFIER ::= { dhcp 1 }
dhcpScope OBJECT IDENTIFIER ::= { dhcp 2 }



-- Dhcp MIB
-- Parameters (Prefix Par)

parDhcpStartTime OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..30))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Dhcp Server start time"
::= { dhcpPar 1 }

parDhcpTotalNoOfDiscovers OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable indicates the number of
discovery messages received"
::= { dhcpPar 2 }

parDhcpTotalNoOfRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable indicates the number of
requests received"
::= { dhcpPar 3 }

parDhcpTotalNoOfReleases OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable indicates the number of
releases received"
::= { dhcpPar 4 }

parDhcpTotalNoOfOffers OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable indicates the number of
offers sent"
::= { dhcpPar 5 }

parDhcpTotalNoOfAcks OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable indicates the number of
acks received"
::= { dhcpPar 6 }

parDhcpTotalNoOfNacks OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable indicates the number of
nacks received"
::= { dhcpPar 7 }

parDhcpTotalNoOfDeclines OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable indicates the number of
declines"
::= { dhcpPar 8 }

-- scope group (Prefix Scope)


scopeTable OBJECT-TYPE
SYNTAX SEQUENCE OF ScopeTableEntry
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A list of subnets maintained by the server"
::= { dhcpScope 1 }

scopeTableEntry OBJECT-TYPE
SYNTAX ScopeTableEntry
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the row corresponding to a subnet"
INDEX { subnetAdd }
::= { scopeTable 1 }

ScopeTableEntry ::= SEQUENCE {
subnetAdd
IpAddress,

noAddInUse
Counter,

noAddFree
Counter,

noPendingOffers
Counter

}
subnetAdd OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the subnet address "
::= { scopeTableEntry 1 }


noAddInUse OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the no. of addresses in use"
::= { scopeTableEntry 2 }

noAddFree OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the no. of addresses that are free "
::= { scopeTableEntry 3 }

noPendingOffers OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the no. of addresses that are currently in the offer
state"
::= { scopeTableEntry 4 }

END
Loading

0 comments on commit 24ad6d4

Please sign in to comment.