MIB changes.
This commit is contained in:
parent
78c070b65b
commit
3c82f1668f
1 changed files with 22 additions and 22 deletions
|
|
@ -219,7 +219,7 @@ ifStackStatus OBJECT-TYPE
|
||||||
-- Example Tables
|
-- Example Tables
|
||||||
--
|
--
|
||||||
clixonIETFWGTable OBJECT-TYPE
|
clixonIETFWGTable OBJECT-TYPE
|
||||||
SYNTAX SEQUENCE OF NetSnmpIETFWGEntry
|
SYNTAX SEQUENCE OF ClixonIETFWGEntry
|
||||||
MAX-ACCESS not-accessible
|
MAX-ACCESS not-accessible
|
||||||
STATUS current
|
STATUS current
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
|
@ -231,14 +231,14 @@ clixonIETFWGTable OBJECT-TYPE
|
||||||
agent/mibgroup/examples/data_set.c file."
|
agent/mibgroup/examples/data_set.c file."
|
||||||
::= { netSnmpExampleTables 1 }
|
::= { netSnmpExampleTables 1 }
|
||||||
clixonIETFWGEntry OBJECT-TYPE
|
clixonIETFWGEntry OBJECT-TYPE
|
||||||
SYNTAX NetSnmpIETFWGEntry
|
SYNTAX ClixonIETFWGEntry
|
||||||
MAX-ACCESS not-accessible
|
MAX-ACCESS not-accessible
|
||||||
STATUS current
|
STATUS current
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
"A row describing a given working group"
|
"A row describing a given working group"
|
||||||
INDEX { nsIETFWGName }
|
INDEX { nsIETFWGName }
|
||||||
::= {netSnmpIETFWGTable 1 }
|
::= {clixonIETFWGTable 1 }
|
||||||
NetSnmpIETFWGEntry ::= SEQUENCE {
|
ClixonIETFWGEntry ::= SEQUENCE {
|
||||||
nsIETFWGName OCTET STRING,
|
nsIETFWGName OCTET STRING,
|
||||||
nsIETFWGChair1 OCTET STRING,
|
nsIETFWGChair1 OCTET STRING,
|
||||||
nsIETFWGChair2 OCTET STRING
|
nsIETFWGChair2 OCTET STRING
|
||||||
|
|
@ -249,14 +249,14 @@ nsIETFWGName OBJECT-TYPE
|
||||||
STATUS current
|
STATUS current
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
"The name of the IETF Working Group this table describes."
|
"The name of the IETF Working Group this table describes."
|
||||||
::= { netSnmpIETFWGEntry 1 }
|
::= { clixonIETFWGEntry 1 }
|
||||||
nsIETFWGChair1 OBJECT-TYPE
|
nsIETFWGChair1 OBJECT-TYPE
|
||||||
SYNTAX OCTET STRING
|
SYNTAX OCTET STRING
|
||||||
MAX-ACCESS read-create
|
MAX-ACCESS read-create
|
||||||
STATUS current
|
STATUS current
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
"One of the names of the chairs for the IETF working group."
|
"One of the names of the chairs for the IETF working group."
|
||||||
::= { netSnmpIETFWGEntry 2 }
|
::= { clixonIETFWGEntry 2 }
|
||||||
nsIETFWGChair2 OBJECT-TYPE
|
nsIETFWGChair2 OBJECT-TYPE
|
||||||
SYNTAX OCTET STRING
|
SYNTAX OCTET STRING
|
||||||
MAX-ACCESS read-create
|
MAX-ACCESS read-create
|
||||||
|
|
@ -264,13 +264,13 @@ nsIETFWGChair2 OBJECT-TYPE
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
"The other name, if one exists, of the chairs for the IETF
|
"The other name, if one exists, of the chairs for the IETF
|
||||||
working group."
|
working group."
|
||||||
::= { netSnmpIETFWGEntry 3 }
|
::= { clixonIETFWGEntry 3 }
|
||||||
--
|
--
|
||||||
-- A table used in a table_iterator example
|
-- A table used in a table_iterator example
|
||||||
-- (agent/mibgroup/examples/netSnmpHostsTable*.[ch])
|
-- (agent/mibgroup/examples/netSnmpHostsTable*.[ch])
|
||||||
--
|
--
|
||||||
clixonHostsTable OBJECT-TYPE
|
clixonHostsTable OBJECT-TYPE
|
||||||
SYNTAX SEQUENCE OF NetSnmpHostsEntry
|
SYNTAX SEQUENCE OF ClixonHostsEntry
|
||||||
MAX-ACCESS not-accessible
|
MAX-ACCESS not-accessible
|
||||||
STATUS current
|
STATUS current
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
|
@ -278,19 +278,19 @@ clixonHostsTable OBJECT-TYPE
|
||||||
/etc/hosts file on a machine using the iterator helper API."
|
/etc/hosts file on a machine using the iterator helper API."
|
||||||
::= { netSnmpExampleTables 2 }
|
::= { netSnmpExampleTables 2 }
|
||||||
clixonHostsEntry OBJECT-TYPE
|
clixonHostsEntry OBJECT-TYPE
|
||||||
SYNTAX NetSnmpHostsEntry
|
SYNTAX ClixonHostsEntry
|
||||||
MAX-ACCESS not-accessible
|
MAX-ACCESS not-accessible
|
||||||
STATUS current
|
STATUS current
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
"A host name mapped to an ip address"
|
"A host name mapped to an ip address"
|
||||||
INDEX { netSnmpHostName }
|
INDEX { clixonHostName }
|
||||||
::= { netSnmpHostsTable 1 }
|
::= { clixonHostsTable 1 }
|
||||||
NetSnmpHostsEntry ::= SEQUENCE {
|
ClixonHostsEntry ::= SEQUENCE {
|
||||||
netSnmpHostName OCTET STRING,
|
clixonHostName OCTET STRING,
|
||||||
netSnmpHostAddressType InetAddressType,
|
clixonHostAddressType InetAddressType,
|
||||||
netSnmpHostAddress InetAddress,
|
clixonHostAddress InetAddress,
|
||||||
netSnmpHostStorage StorageType,
|
clixonHostStorage StorageType,
|
||||||
netSnmpHostRowStatus RowStatus
|
clixonHostRowStatus RowStatus
|
||||||
}
|
}
|
||||||
|
|
||||||
clixonHostName OBJECT-TYPE
|
clixonHostName OBJECT-TYPE
|
||||||
|
|
@ -299,34 +299,34 @@ clixonHostName OBJECT-TYPE
|
||||||
STATUS current
|
STATUS current
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
"A host name that exists in the /etc/hosts (unix) file."
|
"A host name that exists in the /etc/hosts (unix) file."
|
||||||
::= { netSnmpHostsEntry 1 }
|
::= { clixonHostsEntry 1 }
|
||||||
clixonHostAddressType OBJECT-TYPE
|
clixonHostAddressType OBJECT-TYPE
|
||||||
SYNTAX InetAddressType
|
SYNTAX InetAddressType
|
||||||
MAX-ACCESS read-create
|
MAX-ACCESS read-create
|
||||||
STATUS current
|
STATUS current
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
"The address type of then given host."
|
"The address type of then given host."
|
||||||
::= { netSnmpHostsEntry 2 }
|
::= { clixonHostsEntry 2 }
|
||||||
clixonHostAddress OBJECT-TYPE
|
clixonHostAddress OBJECT-TYPE
|
||||||
SYNTAX InetAddress
|
SYNTAX InetAddress
|
||||||
MAX-ACCESS read-create
|
MAX-ACCESS read-create
|
||||||
STATUS current
|
STATUS current
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
"The address of then given host."
|
"The address of then given host."
|
||||||
::= { netSnmpHostsEntry 3 }
|
::= { clixonHostsEntry 3 }
|
||||||
clixonHostStorage OBJECT-TYPE
|
clixonHostStorage OBJECT-TYPE
|
||||||
SYNTAX StorageType
|
SYNTAX StorageType
|
||||||
MAX-ACCESS read-create
|
MAX-ACCESS read-create
|
||||||
STATUS current
|
STATUS current
|
||||||
DESCRIPTION "The storage type for this conceptual row."
|
DESCRIPTION "The storage type for this conceptual row."
|
||||||
DEFVAL { nonVolatile }
|
DEFVAL { nonVolatile }
|
||||||
::= { netSnmpHostsEntry 4 }
|
::= { clixonHostsEntry 4 }
|
||||||
clixonHostRowStatus OBJECT-TYPE
|
clixonHostRowStatus OBJECT-TYPE
|
||||||
SYNTAX RowStatus
|
SYNTAX RowStatus
|
||||||
MAX-ACCESS read-create
|
MAX-ACCESS read-create
|
||||||
STATUS current
|
STATUS current
|
||||||
DESCRIPTION "The status of this conceptual row."
|
DESCRIPTION "The status of this conceptual row."
|
||||||
::= { netSnmpHostsEntry 5 }
|
::= { clixonHostsEntry 5 }
|
||||||
|
|
||||||
clixonObjectID OBJECT-TYPE
|
clixonObjectID OBJECT-TYPE
|
||||||
SYNTAX OBJECT IDENTIFIER
|
SYNTAX OBJECT IDENTIFIER
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue