Initial commit
This commit is contained in:
229
MIBS/hillstone/HILLSTONE-DHCP-MIB
Normal file
229
MIBS/hillstone/HILLSTONE-DHCP-MIB
Normal file
@ -0,0 +1,229 @@
|
||||
-- ************************************************************************
|
||||
-- HILLSTONE-DHCP-MIB
|
||||
--
|
||||
-- Copyright (c) 2009 by Hillstone Networks, Inc.
|
||||
-- All rights reserved.
|
||||
--
|
||||
-- Version: V3
|
||||
-- Description: Hillstone Networks DHCP MIB Object Identifier Assignments
|
||||
-- ************************************************************************
|
||||
--
|
||||
|
||||
HILLSTONE-DHCP-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
hillstoneDHCP
|
||||
FROM HILLSTONE-SMI
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212;
|
||||
|
||||
-- textual conventions
|
||||
|
||||
DisplayString ::=
|
||||
OCTET STRING
|
||||
-- This data type is used to model textual information taken
|
||||
-- from the NVT ASCII character set. By convention, objects
|
||||
-- with this syntax are declared as having
|
||||
--
|
||||
-- SIZE (0..255)
|
||||
|
||||
hillstoneDHCPServerMibObjects OBJECT IDENTIFIER ::= { hillstoneDHCP 1 }
|
||||
|
||||
hillstoneDHCPPoolTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF HillstoneDHCPPoolEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table containing the configuration informations of DHCP
|
||||
server global pools, such as pool type, ip address, mask"
|
||||
::= { hillstoneDHCPServerMibObjects 1 }
|
||||
|
||||
HillstoneDHCPPoolEntry OBJECT-TYPE
|
||||
SYNTAX HillstoneDHCPPoolEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry containing the objects for configuring
|
||||
the network ip or host ip etc. to global pools for
|
||||
DHCP server"
|
||||
INDEX { hillstoneDHCPPoolIndex }
|
||||
::= { hillstoneDHCPPoolTable 1 }
|
||||
|
||||
HillstoneDHCPPoolEntry ::=
|
||||
SEQUENCE {
|
||||
hillstoneDHCPPoolIndex
|
||||
INTEGER,
|
||||
hillstoneDHCPPoolName
|
||||
DisplayString,
|
||||
hillstoneDHCPPoolType
|
||||
INTEGER,
|
||||
hillstoneDHCPPoolNetworkMask
|
||||
IpAddress
|
||||
}
|
||||
|
||||
hillstoneDHCPPoolIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The Index of DHCP pool"
|
||||
::= { HillstoneDHCPPoolEntry 1 }
|
||||
|
||||
hillstoneDHCPPoolName OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The name of DHCP pool"
|
||||
::= { HillstoneDHCPPoolEntry 2 }
|
||||
|
||||
hillstoneDHCPPoolType OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
network(1)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Type of a DHCP global pool. Any operations of
|
||||
this object will be bound with the operations
|
||||
of hillstoneDHCPPOOLNetwork and
|
||||
hillstoneDHCPPOOLNetworkMask or with the
|
||||
operations of hillstoneDHCPPOOLHostIPAddr,
|
||||
hillstoneDHCPPOOLMask and
|
||||
hillstoneDHCPPOOLHostHAddr. That means any
|
||||
operation of this object alone will be regarded
|
||||
as invalid operation.
|
||||
The value means:
|
||||
network(1)- It is a pool with automatic allocation"
|
||||
::= { HillstoneDHCPPoolEntry 3 }
|
||||
|
||||
hillstoneDHCPPoolNetworkMask OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Net mask of a DHCP Server global pool(network).
|
||||
The SET operation to this object ought to be with
|
||||
the SET of hillstoneDHCPPOOLNetwork together, and
|
||||
any SET operation alone to this object will be
|
||||
regarded as an invalid operation.
|
||||
When a network ip of a DHCP server global pool was
|
||||
deleted, the net mask would also be deleted
|
||||
automatically, and no further operation needed"
|
||||
::= { HillstoneDHCPPoolEntry 4 }
|
||||
|
||||
-- pool address table
|
||||
|
||||
hillstoneDHCPPoolAddrTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF HillstoneDHCPPoolAddrEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table for configuring ip to DHCP server, which
|
||||
don't allow to allocate to clients"
|
||||
::= { hillstoneDHCPServerMibObjects 2 }
|
||||
|
||||
HillstoneDHCPPoolAddrEntry OBJECT-TYPE
|
||||
SYNTAX HillstoneDHCPPoolAddrEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry for configuring ip to DHCP
|
||||
server"
|
||||
INDEX { hillstoneDHCPPoolIPIndex,
|
||||
hillstoneDHCPPoolIPStart }
|
||||
::= { hillstoneDHCPPoolAddrTable 1 }
|
||||
|
||||
HillstoneDHCPPoolAddrEntry ::=
|
||||
SEQUENCE {
|
||||
hillstoneDHCPPoolIPIndex
|
||||
INTEGER,
|
||||
hillstoneDHCPPoolIPStart
|
||||
IpAddress,
|
||||
hillstoneDHCPPoolIPEnd
|
||||
IpAddress
|
||||
}
|
||||
|
||||
hillstoneDHCPPoolIPIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The Index of DHCP pool, same with hillstoneDHCPPoolIndex"
|
||||
::= { HillstoneDHCPPoolAddrEntry 1 }
|
||||
|
||||
hillstoneDHCPPoolIPStart OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The start ip address of this ip pool."
|
||||
::= { HillstoneDHCPPoolAddrEntry 2 }
|
||||
|
||||
hillstoneDHCPPoolIPEnd OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The end ip address of this ip pool."
|
||||
::= { HillstoneDHCPPoolAddrEntry 3 }
|
||||
|
||||
-- Part 3: For DHCP server, exclude ip
|
||||
--
|
||||
hillstoneDHCPFreeIPTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF HillstoneDHCPFreeIPEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table for configuring free ip to DHCP server, which
|
||||
don't allow to allocate to clients"
|
||||
::= { hillstoneDHCPServerMibObjects 3 }
|
||||
|
||||
HillstoneDHCPFreeIPEntry OBJECT-TYPE
|
||||
SYNTAX HillstoneDHCPFreeIPEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry for configuring free ip to DHCP
|
||||
server"
|
||||
INDEX { hillstoneDHCPFreeIPIndex,
|
||||
hillstoneDHCPFreeIPStart }
|
||||
::= { hillstoneDHCPFreeIPTable 1 }
|
||||
|
||||
HillstoneDHCPFreeIPEntry ::=
|
||||
SEQUENCE {
|
||||
hillstoneDHCPFreeIPIndex
|
||||
INTEGER,
|
||||
hillstoneDHCPFreeIPStart
|
||||
IpAddress,
|
||||
hillstoneDHCPFreeIPEnd
|
||||
IpAddress
|
||||
}
|
||||
|
||||
hillstoneDHCPFreeIPIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The Index of DHCP pool, same with hillstoneDHCPPoolIndex"
|
||||
::= { HillstoneDHCPFreeIPEntry 1 }
|
||||
|
||||
|
||||
hillstoneDHCPFreeIPStart OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Start ip address of free ip"
|
||||
::= { HillstoneDHCPFreeIPEntry 2 }
|
||||
|
||||
hillstoneDHCPFreeIPEnd OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"End ip address of free ip"
|
||||
::= { HillstoneDHCPFreeIPEntry 3 }
|
||||
|
||||
END
|
175
MIBS/hillstone/HILLSTONE-DNS-MIB
Normal file
175
MIBS/hillstone/HILLSTONE-DNS-MIB
Normal file
@ -0,0 +1,175 @@
|
||||
-- ***********************************************************************
|
||||
-- HILLSTONE-DNS-MIB
|
||||
--
|
||||
-- Copyright (c) 2009 by Hillstone Networks, Inc.
|
||||
-- All rights reserved.
|
||||
--
|
||||
-- Version: V3
|
||||
-- Description: Hillstone Networks DNS MIB Object Identifier Assignments
|
||||
-- ***********************************************************************
|
||||
--
|
||||
|
||||
HILLSTONE-DNS-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
hillstoneDNS
|
||||
FROM HILLSTONE-SMI
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212;
|
||||
|
||||
-- textual conventions
|
||||
|
||||
DisplayString ::=
|
||||
OCTET STRING
|
||||
-- This data type is used to model textual information taken
|
||||
-- from the NVT ASCII character set. By convention, objects
|
||||
-- with this syntax are declared as having
|
||||
--
|
||||
-- SIZE (0..255)
|
||||
|
||||
hillstoneDnsMibObjects OBJECT IDENTIFIER ::= { hillstoneDNS 1 }
|
||||
|
||||
-- dns srv group
|
||||
|
||||
hillstoneDnsSrvWorkMode OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
server(0),
|
||||
client(1),
|
||||
relay(2)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The dns server work mode"
|
||||
::= { hillstoneDnsMibObjects 1 }
|
||||
|
||||
hillstoneDnsDomainTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF HillstoneDnsDomainEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The table is used in domain informatioin of this dns server"
|
||||
::= { hillstoneDnsMibObjects 2 }
|
||||
|
||||
HillstoneDnsDomainEntry OBJECT-TYPE
|
||||
SYNTAX HillstoneDnsDomainEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The entry is used in domain informatioin of this dns server"
|
||||
INDEX { hillstoneDnsDomainIdx }
|
||||
::= { hillstoneDnsDomainTable 1 }
|
||||
|
||||
HillstoneDnsDomainEntry ::=
|
||||
SEQUENCE{
|
||||
hillstoneDnsDomainIdx
|
||||
INTEGER,
|
||||
hillstoneDnsDomainName
|
||||
DisplayString
|
||||
}
|
||||
|
||||
hillstoneDnsDomainIdx OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The index of this table"
|
||||
::= { HillstoneDnsDomainEntry 1 }
|
||||
|
||||
hillstoneDnsDomainName OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Dns domain name."
|
||||
::= { HillstoneDnsDomainEntry 2 }
|
||||
|
||||
|
||||
-- static dns
|
||||
hillstoneStaticDnsServAddressTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF HillstoneStaticDnsServAddressEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The table is used in static domain informatioin of this Static dns server"
|
||||
::= { hillstoneDnsMibObjects 3 }
|
||||
|
||||
HillstoneStaticDnsServAddressEntry OBJECT-TYPE
|
||||
SYNTAX HillstoneStaticDnsServAddressEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The entry is used in ip address informatioin of this Static dns server"
|
||||
INDEX { hillstoneStaticDnsServIdx }
|
||||
::= { hillstoneStaticDnsServAddressTable 1 }
|
||||
|
||||
HillstoneStaticDnsServAddressEntry ::=
|
||||
SEQUENCE{
|
||||
hillstoneStaticDnsServIdx
|
||||
INTEGER,
|
||||
hillstoneStaticDnsIpAddr
|
||||
IpAddress
|
||||
}
|
||||
|
||||
hillstoneStaticDnsServIdx OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The index of this Dns server table."
|
||||
::= { HillstoneStaticDnsServAddressEntry 1 }
|
||||
|
||||
hillstoneStaticDnsIpAddr OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Dns server ip address."
|
||||
::= { HillstoneStaticDnsServAddressEntry 2 }
|
||||
|
||||
|
||||
-- DDns
|
||||
hillstoneDynamicDnsServAddressTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF HillstoneStaticDnsServAddressEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The table is used in static domain informatioin of this Dynamic dns server"
|
||||
::= { hillstoneDnsMibObjects 4 }
|
||||
|
||||
HillstoneStaticDnsServAddressEntry OBJECT-TYPE
|
||||
SYNTAX HillstoneStaticDnsServAddressEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The entry is used in ip address informatioin of this Dynamic dns server"
|
||||
INDEX { hillstoneDynamicDnsServIdx }
|
||||
::= { hillstoneDynamicDnsServAddressTable 1 }
|
||||
|
||||
HillstoneStaticDnsServAddressEntry ::=
|
||||
SEQUENCE{
|
||||
hillstoneDynamicDnsServIdx
|
||||
INTEGER,
|
||||
hillstoneDynamicDnsIpAddr
|
||||
IpAddress
|
||||
}
|
||||
|
||||
hillstoneDynamicDnsServIdx OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The index of this Dns server table."
|
||||
::= { HillstoneStaticDnsServAddressEntry 1 }
|
||||
|
||||
hillstoneDynamicDnsIpAddr OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Dns server ip address."
|
||||
::= { HillstoneStaticDnsServAddressEntry 2 }
|
||||
|
||||
|
||||
END
|
125
MIBS/hillstone/HILLSTONE-FAN-MIB
Normal file
125
MIBS/hillstone/HILLSTONE-FAN-MIB
Normal file
@ -0,0 +1,125 @@
|
||||
-- **************************************************************************
|
||||
-- HILLSTONE-FAN-MIB
|
||||
--
|
||||
-- Copyright (c) 2009 by Hillstone Networks, Inc.
|
||||
-- All rights reserved.
|
||||
--
|
||||
-- Version: V6
|
||||
-- Description: Hillstone Networks FAN MIB Object Identifier Assignments
|
||||
-- **************************************************************************
|
||||
--
|
||||
|
||||
HILLSTONE-FAN-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
hillstoneFan
|
||||
FROM HILLSTONE-SMI
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212
|
||||
RowStatus
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
-- textual conventions
|
||||
|
||||
DisplayString ::=
|
||||
OCTET STRING
|
||||
-- This data type is used to model textual information taken
|
||||
-- from the NVT ASCII character set. By convention, objects
|
||||
-- with this syntax are declared as having
|
||||
--
|
||||
-- SIZE (0..255)
|
||||
|
||||
hillstoneFanObjects OBJECT IDENTIFIER ::= { hillstoneFan 1 }
|
||||
|
||||
hillstoneFanNumber OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of fans."
|
||||
::= { hillstoneFanObjects 1 }
|
||||
|
||||
hillstoneFanTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF HillstoneFanEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table contains all the FAN data."
|
||||
::= { hillstoneFanObjects 2 }
|
||||
|
||||
HillstoneFanEntry OBJECT-TYPE
|
||||
SYNTAX HillstoneFanEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Define the parameters of FAN."
|
||||
INDEX { hillstoneFanIndex }
|
||||
::= { hillstoneFanTable 1 }
|
||||
|
||||
HillstoneFanEntry ::=
|
||||
SEQUENCE {
|
||||
hillstoneFanIndex
|
||||
INTEGER,
|
||||
hillstoneFanDescr
|
||||
DisplayString,
|
||||
hillstoneFanType
|
||||
INTEGER,
|
||||
hillstoneFanSpeed
|
||||
INTEGER,
|
||||
hillstoneFanState
|
||||
INTEGER
|
||||
}
|
||||
|
||||
hillstoneFanIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The slot index of the FAN."
|
||||
::= { HillstoneFanEntry 1 }
|
||||
|
||||
hillstoneFanDescr OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The slot description of the FAN."
|
||||
::= { HillstoneFanEntry 2 }
|
||||
|
||||
hillstoneFanType OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
speed(0),
|
||||
state(1)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The slot type of the FAN.When type is 0,please watch hillstoneFanSpeed.When type is 1,please watch hillstoneFanState.."
|
||||
::= { HillstoneFanEntry 3 }
|
||||
|
||||
hillstoneFanSpeed OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The slot speed of the FAN."
|
||||
::= { HillstoneFanEntry 4 }
|
||||
|
||||
hillstoneFanState OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
fine(0),
|
||||
absent(1),
|
||||
warning(2),
|
||||
fail(3),
|
||||
fail-or-nopower(4)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The FAN state."
|
||||
::= { HillstoneFanEntry 5 }
|
||||
|
||||
|
||||
END
|
258
MIBS/hillstone/HILLSTONE-IF-MIB
Normal file
258
MIBS/hillstone/HILLSTONE-IF-MIB
Normal file
@ -0,0 +1,258 @@
|
||||
-- ***********************************************************************
|
||||
-- HILLSTONE-IF-MIB
|
||||
--
|
||||
-- Copyright (c) 2009 by Hillstone Networks, Inc.
|
||||
-- All rights reserved.
|
||||
--
|
||||
-- Version: V3
|
||||
-- Description: Hillstone Networks IF MIB Object Identifier Assignments
|
||||
-- ***********************************************************************
|
||||
--
|
||||
|
||||
HILLSTONE-IF-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
hillstoneInterface
|
||||
FROM HILLSTONE-SMI
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212;
|
||||
|
||||
-- textual conventions
|
||||
|
||||
DisplayString ::=
|
||||
OCTET STRING
|
||||
-- This data type is used to model textual information taken
|
||||
-- from the NVT ASCII character set. By convention, objects
|
||||
-- with this syntax are declared as having
|
||||
--
|
||||
-- SIZE (0..255)
|
||||
|
||||
hillstoneIfObjects OBJECT IDENTIFIER ::= { hillstoneInterface 1 }
|
||||
|
||||
--
|
||||
-- If Ext MIB Objects
|
||||
--
|
||||
hillstoneWanIfNumber OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of wan interfaces."
|
||||
::= { hillstoneIfObjects 1 }
|
||||
|
||||
hillstoneLanIfNumber OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of lan interfaces."
|
||||
::= { hillstoneIfObjects 2 }
|
||||
|
||||
hillstoneIfAttriTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF HillstoneIfAttriEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The table for representing the interface attribute."
|
||||
::= { hillstoneIfObjects 3 }
|
||||
|
||||
HillstoneIfAttriEntry OBJECT-TYPE
|
||||
SYNTAX HillstoneIfAttriEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { hillstoneIfIndex }
|
||||
::= { hillstoneIfAttriTable 1 }
|
||||
|
||||
HillstoneIfAttriEntry ::=
|
||||
SEQUENCE {
|
||||
hillstoneIfIndex
|
||||
INTEGER,
|
||||
hillstoneIfName
|
||||
DisplayString,
|
||||
hillstoneIfAttribute
|
||||
INTEGER,
|
||||
hillstoneIfNetAddress
|
||||
IpAddress,
|
||||
hillstoneIfNetMask
|
||||
IpAddress,
|
||||
hillstoneIfManageIp
|
||||
IpAddress,
|
||||
hillstoneIfSecIpAddress0
|
||||
IpAddress,
|
||||
hillstoneIfSecNetMask0
|
||||
IpAddress,
|
||||
hillstoneIfSecIpAddress1
|
||||
IpAddress,
|
||||
hillstoneIfSecNetMask1
|
||||
IpAddress,
|
||||
hillstoneIfSecIpAddress2
|
||||
IpAddress,
|
||||
hillstoneIfSecNetMask2
|
||||
IpAddress,
|
||||
hillstoneIfSecIpAddress3
|
||||
IpAddress,
|
||||
hillstoneIfSecNetMask3
|
||||
IpAddress,
|
||||
hillstoneIfSecIpAddress4
|
||||
IpAddress,
|
||||
hillstoneIfSecNetMask4
|
||||
IpAddress,
|
||||
hillstoneIfSecIpAddress5
|
||||
IpAddress,
|
||||
hillstoneIfSecNetMask5
|
||||
IpAddress
|
||||
}
|
||||
hillstoneIfIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"ucIfIndex equals to IfIndex of IF-MIB."
|
||||
::= { HillstoneIfAttriEntry 1 }
|
||||
|
||||
hillstoneIfName OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"ifDescr equals to IfIndex of IF-MIB."
|
||||
::= { HillstoneIfAttriEntry 2 }
|
||||
|
||||
hillstoneIfAttribute OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
unknown(0),
|
||||
lan(1),
|
||||
wan(2)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The Attribute of this interface: 0 for Unknown, 1 for LAN, 2 for WAN."
|
||||
::= { HillstoneIfAttriEntry 3 }
|
||||
|
||||
hillstoneIfNetAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The ip address of the interface."
|
||||
::= { HillstoneIfAttriEntry 4 }
|
||||
|
||||
hillstoneIfNetMask OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The netmask of the interface, ip address and manage ip address of the the interface are in the same subnet."
|
||||
::= { HillstoneIfAttriEntry 5 }
|
||||
|
||||
hillstoneIfManageIp OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The manage ip address of the interface."
|
||||
::= { HillstoneIfAttriEntry 6 }
|
||||
|
||||
hillstoneIfSecIpAddress0 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The second ip address0 of the interface."
|
||||
::= { HillstoneIfAttriEntry 7 }
|
||||
|
||||
hillstoneIfSecNetMask0 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The second ip address0 netmask of the interface."
|
||||
::= { HillstoneIfAttriEntry 8 }
|
||||
|
||||
hillstoneIfSecIpAddress1 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The second ip address1 of the interface."
|
||||
::= { HillstoneIfAttriEntry 9 }
|
||||
|
||||
hillstoneIfSecNetMask1 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The second ip address1 netmask of the interface."
|
||||
::= { HillstoneIfAttriEntry 10 }
|
||||
|
||||
hillstoneIfSecIpAddress2 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The second ip address2 of the interface."
|
||||
::= { HillstoneIfAttriEntry 11 }
|
||||
|
||||
hillstoneIfSecNetMask2 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The second ip address2 netmask of the interface."
|
||||
::= { HillstoneIfAttriEntry 12 }
|
||||
|
||||
hillstoneIfSecIpAddress3 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The second ip address3 of the interface."
|
||||
::= { HillstoneIfAttriEntry 13 }
|
||||
|
||||
hillstoneIfSecNetMask3 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The second ip address3 netmask of the interface."
|
||||
::= { HillstoneIfAttriEntry 14 }
|
||||
|
||||
hillstoneIfSecIpAddress4 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The second ip address4 of the interface."
|
||||
::= { HillstoneIfAttriEntry 15 }
|
||||
|
||||
hillstoneIfSecNetMask4 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The second ip address4 netmask of the interface."
|
||||
::= { HillstoneIfAttriEntry 16 }
|
||||
|
||||
hillstoneIfSecIpAddress5 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The second ip address5 of the interface."
|
||||
::= { HillstoneIfAttriEntry 17 }
|
||||
|
||||
hillstoneIfSecNetMask5 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The second ip address5 netmask of the interface."
|
||||
::= { HillstoneIfAttriEntry 18 }
|
||||
|
||||
|
||||
|
||||
|
||||
END
|
45
MIBS/hillstone/HILLSTONE-IP-MIB
Normal file
45
MIBS/hillstone/HILLSTONE-IP-MIB
Normal file
@ -0,0 +1,45 @@
|
||||
-- **********************************************************************
|
||||
-- HILLSTONE-IP-MIB
|
||||
--
|
||||
-- Copyright (c) 2009 by Hillstone Networks, Inc.
|
||||
-- All rights reserved.
|
||||
--
|
||||
-- Version: V3
|
||||
-- Description: Hillstone Networks IP MIB Object Identifier Assignments
|
||||
-- **********************************************************************
|
||||
--
|
||||
|
||||
HILLSTONE-IP-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
hillstoneIp
|
||||
FROM HILLSTONE-SMI
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212;
|
||||
|
||||
-- textual conventions
|
||||
|
||||
DisplayString ::=
|
||||
OCTET STRING
|
||||
-- This data type is used to model textual information taken
|
||||
-- from the NVT ASCII character set. By convention, objects
|
||||
-- with this syntax are declared as having
|
||||
--
|
||||
-- SIZE (0..255)
|
||||
|
||||
hillstoneIpObjects OBJECT IDENTIFIER ::= { hillstoneIp 1 }
|
||||
|
||||
hillstoneIpAddressFamily OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
ipv4(1),
|
||||
ipv6(2),
|
||||
other(3)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The address family of this interface."
|
||||
::= { hillstoneIpObjects 1 }
|
||||
|
||||
END
|
178
MIBS/hillstone/HILLSTONE-IPSEC-MIB
Normal file
178
MIBS/hillstone/HILLSTONE-IPSEC-MIB
Normal file
@ -0,0 +1,178 @@
|
||||
-- *************************************************************************
|
||||
-- HILLSTONE-IPSEC-MIB
|
||||
--
|
||||
-- Copyright (c) 2009 by Hillstone Networks, Inc.
|
||||
-- All rights reserved.
|
||||
--
|
||||
-- Version: V3
|
||||
-- Description: Hillstone Networks IPSEC MIB Object Identifier Assignments
|
||||
-- *************************************************************************
|
||||
--
|
||||
|
||||
HILLSTONE-IPSEC-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
hillstoneIpsec FROM HILLSTONE-SMI
|
||||
NetworkAddress, IpAddress,
|
||||
Counter, Gauge, TimeTicks FROM RFC1155-SMI
|
||||
OBJECT-TYPE FROM RFC-1212;
|
||||
|
||||
-- textual conventions
|
||||
|
||||
DisplayString ::=
|
||||
OCTET STRING
|
||||
-- This data type is used to model textual information taken
|
||||
-- from the NVT ASCII character set. By convention, objects
|
||||
-- with this syntax are declared as having
|
||||
--
|
||||
-- SIZE (0..255)
|
||||
|
||||
hillstoneIpsecMibObjects OBJECT IDENTIFIER ::= { hillstoneIpsec 1 }
|
||||
|
||||
ipsecTunnelTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF IpsecTunnelEntry
|
||||
ACCESS not-accessible
|
||||
STATUS current
|
||||
::= { hillstoneIpsecMibObjects 1 }
|
||||
|
||||
IpsecTunnelEntry OBJECT-TYPE
|
||||
SYNTAX IpsecTunnelEntry
|
||||
ACCESS not-accessible
|
||||
STATUS current
|
||||
INDEX { ipsecTunnelIndex }
|
||||
::= { ipsecTunnelTable 1}
|
||||
|
||||
IpsecTunnelEntry ::=
|
||||
SEQUENCE{
|
||||
ipsecTunnelIndex
|
||||
INTEGER,
|
||||
ipsecTunnelName
|
||||
DisplayString,
|
||||
ipsecTunnelID
|
||||
INTEGER,
|
||||
ipsecTunnelType
|
||||
INTEGER,
|
||||
ipsecTunnelPeerIp
|
||||
NetworkAddress,
|
||||
ipsecTunnelExIfIndex
|
||||
INTEGER,
|
||||
ipsecTunnelLocalID
|
||||
DisplayString,
|
||||
ipsecTunnelRemoteID
|
||||
DisplayString,
|
||||
ipsecTunnelCryptAlgorithms
|
||||
DisplayString,
|
||||
ipsecTunnelAuthAlgorithms
|
||||
DisplayString,
|
||||
ipsecTunnelLifeTime
|
||||
TimeTicks,
|
||||
ipsecTunnelStatus
|
||||
INTEGER
|
||||
}
|
||||
|
||||
ipsecTunnelIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The index of ipsec tunnel"
|
||||
::= { IpsecTunnelEntry 1 }
|
||||
|
||||
ipsecTunnelName OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The name of ipsec tunnel"
|
||||
::= { IpsecTunnelEntry 2 }
|
||||
|
||||
ipsecTunnelID OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The index of ipsec tunnel"
|
||||
::= { IpsecTunnelEntry 3 }
|
||||
|
||||
ipsecTunnelType OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
normal (1),
|
||||
pnp (2),
|
||||
dail-up (3),
|
||||
manual (4)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The type of tunnel"
|
||||
::= { IpsecTunnelEntry 4 }
|
||||
|
||||
ipsecTunnelPeerIp OBJECT-TYPE
|
||||
SYNTAX NetworkAddress
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The peer ip of a ipsec tunnel"
|
||||
::= { IpsecTunnelEntry 5 }
|
||||
|
||||
ipsecTunnelExIfIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The local interface of a ipsec tunnel"
|
||||
::= { IpsecTunnelEntry 6 }
|
||||
|
||||
ipsecTunnelLocalID OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The local id of a ipsec tunnel"
|
||||
::= { IpsecTunnelEntry 7 }
|
||||
|
||||
ipsecTunnelRemoteID OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The remote id of a ipsec tunnel"
|
||||
::= { IpsecTunnelEntry 8 }
|
||||
|
||||
ipsecTunnelCryptAlgorithms OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The crypt algorithms of a ipsec tunnel"
|
||||
::= { IpsecTunnelEntry 9 }
|
||||
|
||||
ipsecTunnelAuthAlgorithms OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The auth algorithms of a ipsec tunnel"
|
||||
::= { IpsecTunnelEntry 10 }
|
||||
|
||||
ipsecTunnelLifeTime OBJECT-TYPE
|
||||
SYNTAX TimeTicks
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The life time of a ipsec tunnel"
|
||||
::= { IpsecTunnelEntry 11 }
|
||||
|
||||
ipsecTunnelStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
active (1),
|
||||
inactive (2)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The status of tunnel"
|
||||
::= { IpsecTunnelEntry 12 }
|
||||
|
||||
END
|
||||
|
143
MIBS/hillstone/HILLSTONE-MODULE-MIB
Normal file
143
MIBS/hillstone/HILLSTONE-MODULE-MIB
Normal file
@ -0,0 +1,143 @@
|
||||
-- **************************************************************************
|
||||
-- HILLSTONE-MODULE-MIB
|
||||
--
|
||||
-- Copyright (c) 2009 by Hillstone Networks, Inc.
|
||||
-- All rights reserved.
|
||||
--
|
||||
-- Version: V6
|
||||
-- Description: Hillstone Networks MODULE MIB Object Identifier Assignments
|
||||
-- **************************************************************************
|
||||
--
|
||||
|
||||
HILLSTONE-MODULE-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
hillstoneModule
|
||||
FROM HILLSTONE-SMI
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212
|
||||
RowStatus
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
-- textual conventions
|
||||
|
||||
DisplayString ::=
|
||||
OCTET STRING
|
||||
-- This data type is used to model textual information taken
|
||||
-- from the NVT ASCII character set. By convention, objects
|
||||
-- with this syntax are declared as having
|
||||
--
|
||||
-- SIZE (0..255)
|
||||
|
||||
hillstoneModuleObjects OBJECT IDENTIFIER ::= { hillstoneModule 1 }
|
||||
|
||||
hillstoneSlotNumber OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of slots."
|
||||
::= { hillstoneModuleObjects 1 }
|
||||
|
||||
hillstoneModuleTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF HillstoneModuleEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table contains all the module data."
|
||||
::= { hillstoneModuleObjects 2 }
|
||||
|
||||
HillstoneModuleEntry OBJECT-TYPE
|
||||
SYNTAX HillstoneModuleEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Define the parameters of module."
|
||||
INDEX { hillstoneSlotIndex }
|
||||
::= { hillstoneModuleTable 1 }
|
||||
|
||||
HillstoneModuleEntry ::=
|
||||
SEQUENCE {
|
||||
hillstoneSlotIndex
|
||||
INTEGER,
|
||||
hillstoneSlotType
|
||||
INTEGER,
|
||||
hillstoneSlotDescr
|
||||
DisplayString,
|
||||
hillstoneSlotState
|
||||
INTEGER,
|
||||
hillstoneModuleType
|
||||
DisplayString,
|
||||
hillstoneModuleSN
|
||||
DisplayString
|
||||
}
|
||||
|
||||
hillstoneSlotIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The slot index of the module."
|
||||
::= { HillstoneModuleEntry 1 }
|
||||
|
||||
hillstoneSlotType OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
internal(0),
|
||||
external(1)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The slot type of the module."
|
||||
::= { HillstoneModuleEntry 2 }
|
||||
|
||||
hillstoneSlotDescr OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The slot description of the module."
|
||||
::= { HillstoneModuleEntry 3 }
|
||||
|
||||
hillstoneSlotState OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
none(0),
|
||||
empty(1),
|
||||
present(2),
|
||||
online_wait(3),
|
||||
online_init_done(4),
|
||||
online(5),
|
||||
offline_wait(6),
|
||||
offline(7),
|
||||
out_of_con(8),
|
||||
booting(9),
|
||||
loading(10),
|
||||
error(11),
|
||||
unsupported(12)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The slot state of the module."
|
||||
::= { HillstoneModuleEntry 4 }
|
||||
|
||||
hillstoneModuleType OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The module type."
|
||||
::= { HillstoneModuleEntry 5 }
|
||||
|
||||
hillstoneModuleSN OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The module serial number."
|
||||
::= { HillstoneModuleEntry 6 }
|
||||
|
||||
|
||||
END
|
93
MIBS/hillstone/HILLSTONE-NTP-MIB
Normal file
93
MIBS/hillstone/HILLSTONE-NTP-MIB
Normal file
@ -0,0 +1,93 @@
|
||||
-- ***********************************************************************
|
||||
-- HILLSTONE-NTP-MIB
|
||||
--
|
||||
-- Copyright (c) 2009 by Hillstone Networks, Inc.
|
||||
-- All rights reserved.
|
||||
--
|
||||
-- Version: V3
|
||||
-- Description: Hillstone Networks NTP MIB Object Identifier Assignments
|
||||
-- ***********************************************************************
|
||||
--
|
||||
|
||||
HILLSTONE-NTP-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
hillstoneNTP
|
||||
FROM HILLSTONE-SMI
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212;
|
||||
|
||||
-- textual conventions
|
||||
|
||||
DisplayString ::=
|
||||
OCTET STRING
|
||||
-- This data type is used to model textual information taken
|
||||
-- from the NVT ASCII character set. By convention, objects
|
||||
-- with this syntax are declared as having
|
||||
--
|
||||
-- SIZE (0..255)
|
||||
|
||||
hillstoneNTPMibObjects OBJECT IDENTIFIER ::= { hillstoneNTP 1 }
|
||||
|
||||
hillstoneNTPServConfTable OBJECT-TYPE
|
||||
|
||||
SYNTAX SEQUENCE OF HillstoneNTPServConfEntry
|
||||
|
||||
MAX-ACCESS not-accessible
|
||||
|
||||
STATUS current
|
||||
|
||||
DESCRIPTION
|
||||
|
||||
"The table is used in configure the informatioin of this ntp server"
|
||||
|
||||
::= { hillstoneNTPMibObjects 1 }
|
||||
|
||||
HillstoneNTPServConfEntry OBJECT-TYPE
|
||||
|
||||
SYNTAX HillstoneNTPServConfEntry
|
||||
|
||||
MAX-ACCESS not-accessible
|
||||
|
||||
STATUS current
|
||||
|
||||
DESCRIPTION
|
||||
|
||||
"The entry is used in ip address informatioin of this dns server"
|
||||
INDEX { hillstoneNTPServName }
|
||||
|
||||
::= { hillstoneNTPServConfTable 1 }
|
||||
|
||||
HillstoneNTPServConfEntry ::=
|
||||
SEQUENCE{
|
||||
hillstoneNTPServName
|
||||
DisplayString,
|
||||
hillstoneNTPServStatus
|
||||
INTEGER
|
||||
}
|
||||
|
||||
hillstoneNTPServName OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The index of this NTP server table"
|
||||
::= { HillstoneNTPServConfEntry 1 }
|
||||
|
||||
|
||||
hillstoneNTPServStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
sourceMaster(1),
|
||||
sourcePeer(2),
|
||||
selected(3),
|
||||
candidate(4),
|
||||
configured(5)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The status of this NTP server. 1:source(master);2:source(peer);3:selected;4:candidate;5:configured;"
|
||||
::= { HillstoneNTPServConfEntry 2 }
|
||||
|
||||
END
|
102
MIBS/hillstone/HILLSTONE-POWER-MIB
Normal file
102
MIBS/hillstone/HILLSTONE-POWER-MIB
Normal file
@ -0,0 +1,102 @@
|
||||
-- **************************************************************************
|
||||
-- HILLSTONE-POWER-MIB
|
||||
--
|
||||
-- Copyright (c) 2009 by Hillstone Networks, Inc.
|
||||
-- All rights reserved.
|
||||
--
|
||||
-- Version: V6
|
||||
-- Description: Hillstone Networks POWER MIB Object Identifier Assignments
|
||||
-- **************************************************************************
|
||||
--
|
||||
|
||||
HILLSTONE-POWER-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
hillstonePower
|
||||
FROM HILLSTONE-SMI
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212
|
||||
RowStatus
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
-- textual conventions
|
||||
|
||||
DisplayString ::=
|
||||
OCTET STRING
|
||||
-- This data type is used to model textual information taken
|
||||
-- from the NVT ASCII character set. By convention, objects
|
||||
-- with this syntax are declared as having
|
||||
--
|
||||
-- SIZE (0..255)
|
||||
|
||||
hillstonePowerObjects OBJECT IDENTIFIER ::= { hillstonePower 1 }
|
||||
|
||||
hillstonePowerNumber OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of powers."
|
||||
::= { hillstonePowerObjects 1 }
|
||||
|
||||
hillstonePowerTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF HillstonePowerEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table contains all the POWER data."
|
||||
::= { hillstonePowerObjects 2 }
|
||||
|
||||
HillstonePowerEntry OBJECT-TYPE
|
||||
SYNTAX HillstonePowerEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Define the parameters of POWER."
|
||||
INDEX { hillstonePowerIndex }
|
||||
::= { hillstonePowerTable 1 }
|
||||
|
||||
HillstonePowerEntry ::=
|
||||
SEQUENCE {
|
||||
hillstonePowerIndex
|
||||
INTEGER,
|
||||
hillstonePowerDescr
|
||||
DisplayString,
|
||||
hillstonePowerState
|
||||
INTEGER
|
||||
}
|
||||
|
||||
hillstonePowerIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The power index ."
|
||||
::= { HillstonePowerEntry 1 }
|
||||
|
||||
hillstonePowerDescr OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The power description ."
|
||||
::= { HillstonePowerEntry 2 }
|
||||
|
||||
hillstonePowerState OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
fine(0),
|
||||
absent(1),
|
||||
warning(2),
|
||||
fail(3),
|
||||
fail-or-nopower(4),
|
||||
unsupport(5)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The power state ."
|
||||
::= { HillstonePowerEntry 3 }
|
||||
|
||||
|
||||
END
|
64
MIBS/hillstone/HILLSTONE-PRODUCTS-MIB
Normal file
64
MIBS/hillstone/HILLSTONE-PRODUCTS-MIB
Normal file
@ -0,0 +1,64 @@
|
||||
-- ***********************************************************************
|
||||
-- HILLSTONE-PRODUCTS-MIB
|
||||
--
|
||||
-- Copyright (c) 2009 by Hillstone Networks, Inc.
|
||||
-- All rights reserved.
|
||||
--
|
||||
-- Version: V3
|
||||
-- Description: Hillstone Networks Product Object Identifier Assignments
|
||||
-- ***********************************************************************
|
||||
--
|
||||
|
||||
HILLSTONE-PRODUCTS-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY
|
||||
FROM SNMPv2-SMI
|
||||
hillstoneProducts
|
||||
FROM HILLSTONE-SMI;
|
||||
|
||||
hillstoneSA5020 OBJECT IDENTIFIER ::= { hillstoneProducts 1 }
|
||||
hillstoneSA5040 OBJECT IDENTIFIER ::= { hillstoneProducts 2 }
|
||||
hillstoneSA5050 OBJECT IDENTIFIER ::= { hillstoneProducts 3 }
|
||||
hillstoneSA2005 OBJECT IDENTIFIER ::= { hillstoneProducts 4 }
|
||||
hillstoneSA2010 OBJECT IDENTIFIER ::= { hillstoneProducts 5 }
|
||||
hillstoneSR550 OBJECT IDENTIFIER ::= { hillstoneProducts 6 }
|
||||
hillstoneSR530 OBJECT IDENTIFIER ::= { hillstoneProducts 7 }
|
||||
hillstoneSR330 OBJECT IDENTIFIER ::= { hillstoneProducts 8 }
|
||||
hillstoneSA2003 OBJECT IDENTIFIER ::= { hillstoneProducts 9 }
|
||||
hillstoneSA2001 OBJECT IDENTIFIER ::= { hillstoneProducts 10 }
|
||||
hillstoneSR320 OBJECT IDENTIFIER ::= { hillstoneProducts 11 }
|
||||
hillstoneMS10 OBJECT IDENTIFIER ::= { hillstoneProducts 12 }
|
||||
hillstoneSR520 OBJECT IDENTIFIER ::= { hillstoneProducts 13 }
|
||||
hillstoneSA5180 OBJECT IDENTIFIER ::= { hillstoneProducts 17 }
|
||||
hillstoneSA5160 OBJECT IDENTIFIER ::= { hillstoneProducts 18 }
|
||||
SG-6000-X5100 OBJECT IDENTIFIER ::= { hillstoneProducts 21 }
|
||||
SG-6000-G6100 OBJECT IDENTIFIER ::= { hillstoneProducts 22 }
|
||||
SG-6000-G3100 OBJECT IDENTIFIER ::= { hillstoneProducts 23 }
|
||||
SG-6000-M3100 OBJECT IDENTIFIER ::= { hillstoneProducts 24 }
|
||||
SG-6000-M2100 OBJECT IDENTIFIER ::= { hillstoneProducts 25 }
|
||||
SG-6000-G5150 OBJECT IDENTIFIER ::= { hillstoneProducts 28 }
|
||||
SG-6000-G3150 OBJECT IDENTIFIER ::= { hillstoneProducts 29 }
|
||||
SG-6000-G2120 OBJECT IDENTIFIER ::= { hillstoneProducts 31 }
|
||||
VR5600T OBJECT IDENTIFIER ::= { hillstoneProducts 32 }
|
||||
SG-6000-NAV10 OBJECT IDENTIFIER ::= { hillstoneProducts 33 }
|
||||
SG-6000-NAV20 OBJECT IDENTIFIER ::= { hillstoneProducts 34 }
|
||||
SG-6000-NAV30 OBJECT IDENTIFIER ::= { hillstoneProducts 35 }
|
||||
SG-6000-G2110 OBJECT IDENTIFIER ::= { hillstoneProducts 36 }
|
||||
SG-6000-NAV50 OBJECT IDENTIFIER ::= { hillstoneProducts 37 }
|
||||
SG-6000-NAV200 OBJECT IDENTIFIER ::= { hillstoneProducts 38 }
|
||||
SG-6000-NAV300 OBJECT IDENTIFIER ::= { hillstoneProducts 39 }
|
||||
SG-6000-NAV500 OBJECT IDENTIFIER ::= { hillstoneProducts 40 }
|
||||
SG-6000-X6150 OBJECT IDENTIFIER ::= { hillstoneProducts 43 }
|
||||
SG-6000-M2105 OBJECT IDENTIFIER ::= { hillstoneProducts 45 }
|
||||
SR-320 OBJECT IDENTIFIER ::= { hillstoneProducts 47 }
|
||||
SR-520 OBJECT IDENTIFIER ::= { hillstoneProducts 48 }
|
||||
SG-6000-M6110 OBJECT IDENTIFIER ::= { hillstoneProducts 49 }
|
||||
SG-6000-M6115 OBJECT IDENTIFIER ::= { hillstoneProducts 50 }
|
||||
SG-6000-M3105 OBJECT IDENTIFIER ::= { hillstoneProducts 51 }
|
||||
SC-1000-M3108 OBJECT IDENTIFIER ::= { hillstoneProducts 52 }
|
||||
SG-6000-BANFF OBJECT IDENTIFIER ::= { hillstoneProducts 54 }
|
||||
SG-6000-BANFF-DEMO OBJECT IDENTIFIER ::= { hillstoneProducts 55 }
|
||||
|
||||
END
|
||||
|
367
MIBS/hillstone/HILLSTONE-SMI
Normal file
367
MIBS/hillstone/HILLSTONE-SMI
Normal file
@ -0,0 +1,367 @@
|
||||
-- ********************************************************************************
|
||||
-- HILLSTONE-SMI
|
||||
--
|
||||
-- Copyright (c) 2010 by Hillstone Networks, Inc.
|
||||
-- All rights reserved.
|
||||
--
|
||||
-- Version: V5
|
||||
-- Description: Hillstone Networks Enterprise Structure of Management Information
|
||||
-- ********************************************************************************
|
||||
--
|
||||
|
||||
HILLSTONE-SMI DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY,
|
||||
OBJECT-IDENTITY,
|
||||
enterprises
|
||||
FROM SNMPv2-SMI
|
||||
TRAP-TYPE
|
||||
FROM RFC-1215;
|
||||
|
||||
|
||||
|
||||
hillstone MODULE-IDENTITY
|
||||
LAST-UPDATED "200706150000Z"
|
||||
ORGANIZATION "Hillstone Networks, Inc."
|
||||
CONTACT-INFO
|
||||
" Hillstone Networks, Inc.
|
||||
|
||||
Postal: 113 Road Zhichun
|
||||
Haidian, Beijing 100086
|
||||
CHN
|
||||
|
||||
Tel: +86 10-62614767
|
||||
|
||||
E-mail: nmo&hillstonenet.com"
|
||||
DESCRIPTION
|
||||
"The Structure of Management Information for Hillstone Networks"
|
||||
::= { enterprises 28557 } -- assigned by IANA
|
||||
|
||||
hillstoneProducts OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The root of Hillstone's Product OIDs."
|
||||
::= { hillstone 1 }
|
||||
|
||||
hillstoneMibs OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The root of Hillstone's MIB objects."
|
||||
::= { hillstone 2 }
|
||||
|
||||
hillstoneTraps OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The root of Hillstone's Trap OIDs."
|
||||
::= { hillstone 3 }
|
||||
|
||||
hillstoneIpsec OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The root of Hillstone's VPN OIDs."
|
||||
::= { hillstoneMibs 1 }
|
||||
|
||||
hillstoneSys OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The root of Hillstone's system OIDs."
|
||||
::= { hillstoneMibs 2 }
|
||||
|
||||
hillstoneStatistics OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The Hillstone statistics OIDs."
|
||||
::= { hillstoneMibs 3 }
|
||||
|
||||
hillstoneDNS OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone DNS OIDs."
|
||||
::= { hillstoneMibs 4 }
|
||||
|
||||
hillstoneDHCP OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone DHCP OIDs."
|
||||
::= { hillstoneMibs 5 }
|
||||
|
||||
hillstoneInterface OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone interface extend OIDs."
|
||||
::= { hillstoneMibs 6 }
|
||||
|
||||
hillstoneIp OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone ip extend OIDs."
|
||||
::= { hillstoneMibs 7 }
|
||||
|
||||
hillstoneNTP OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone ntp OIDs."
|
||||
::= { hillstoneMibs 8 }
|
||||
|
||||
hillstoneZONE OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone ZONE OIDs."
|
||||
::= { hillstoneMibs 9 }
|
||||
|
||||
hillstoneAV OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone AV OIDs."
|
||||
::= { hillstoneMibs 10 }
|
||||
|
||||
hillstoneServiceBook OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone Service Book OIDs."
|
||||
::= { hillstoneMibs 11 }
|
||||
|
||||
hillstoneServiceBookMember OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone Service Book member OIDs."
|
||||
::= { hillstoneMibs 12 }
|
||||
|
||||
hillstoneServiceGroup OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone Service Group OIDs."
|
||||
::= { hillstoneMibs 13 }
|
||||
|
||||
hillstoneServiceGroupMember OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone Service Group member OIDs."
|
||||
::= { hillstoneMibs 14 }
|
||||
|
||||
hillstoneAddressBook OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone Address Book OIDs."
|
||||
::= { hillstoneMibs 15 }
|
||||
|
||||
hillstoneAddressBookMember OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone Address Book OIDs."
|
||||
::= { hillstoneMibs 16 }
|
||||
|
||||
hillstoneSchedule OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone Schedule OIDs."
|
||||
::= { hillstoneMibs 17 }
|
||||
|
||||
hillstoneSchedulePeriodicMember OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone Schedule OIDs."
|
||||
::= { hillstoneMibs 18 }
|
||||
|
||||
hillstonePolicy OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone Policy OIDs."
|
||||
::= { hillstoneMibs 19 }
|
||||
|
||||
hillstonePolicySourceAddress OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone Policy Source Address OIDs."
|
||||
::= { hillstoneMibs 20 }
|
||||
|
||||
hillstonePolicyDestinationAddress OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone Policy Destination Address OIDs."
|
||||
::= { hillstoneMibs 21 }
|
||||
|
||||
hillstonePolicyService OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone Policy Service OIDs."
|
||||
::= { hillstoneMibs 22 }
|
||||
|
||||
hillstonePolicySchedule OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone Policy Schedule OIDs."
|
||||
::= { hillstoneMibs 23 }
|
||||
|
||||
hillstonePolicyMovement OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone Policy Movement OIDs."
|
||||
::= { hillstoneMibs 24 }
|
||||
|
||||
hillstoneModule OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone Module OIDs."
|
||||
::= { hillstoneMibs 25 }
|
||||
|
||||
hillstoneFan OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone Fan OIDs."
|
||||
::= { hillstoneMibs 26 }
|
||||
|
||||
hillstonePower OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone Power OIDs."
|
||||
::= { hillstoneMibs 27 }
|
||||
|
||||
hillstoneTemperature OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The hillstone Temperature OIDs."
|
||||
::= { hillstoneMibs 28 }
|
||||
|
||||
-- trap message
|
||||
hillstoneCPUStatus OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The CPU status trap OIDs."
|
||||
::= {hillstoneTraps 1}
|
||||
|
||||
hillstoneFANStatus OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The FAN status trap OIDs."
|
||||
::= {hillstoneTraps 2}
|
||||
|
||||
hillstoneTempStatus OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The temperature trap OIDs."
|
||||
::= {hillstoneTraps 3}
|
||||
|
||||
hillstoneMemoryStatus OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The memory trap OIDs."
|
||||
::= {hillstoneTraps 4}
|
||||
|
||||
hillstoneHAStatus OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The HA status trap OIDs."
|
||||
::= {hillstoneTraps 5}
|
||||
|
||||
hillstoneADType OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The Attack type trap OIDs."
|
||||
::= {hillstoneTraps 6}
|
||||
|
||||
hillstoneVPNDown OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The vpn tunnel trap OIDs."
|
||||
::= {hillstoneTraps 7}
|
||||
|
||||
hillstoneVPNUp OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The VPN up trap OIDs."
|
||||
::= {hillstoneTraps 8}
|
||||
|
||||
hillstoneIfIpChange OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The interface ipaddress change trap OIDs."
|
||||
::= {hillstoneTraps 9}
|
||||
|
||||
hillstoneDeviceNameChange OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The device name change trap OIDs."
|
||||
::= {hillstoneTraps 10}
|
||||
|
||||
hillstoneIPSStatus OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The IPS status trap OIDs."
|
||||
::= {hillstoneTraps 11}
|
||||
|
||||
hillstoneAVStatus OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The AV status trap OIDs."
|
||||
::= {hillstoneTraps 12}
|
||||
|
||||
hillstoneSystemReboot OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The system reboot trap OIDs."
|
||||
::= {hillstoneTraps 13}
|
||||
|
||||
hillstoneDiskSpaceStatus OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The system disk space low trap OIDs."
|
||||
::= {hillstoneTraps 14}
|
||||
|
||||
hillstoneSessionOverThreshold OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The session count over threshold trap OIDs."
|
||||
::= {hillstoneTraps 15}
|
||||
|
||||
hillstoneLogOverThreshold OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The log size over threshold trap OIDs."
|
||||
::= {hillstoneTraps 16}
|
||||
|
||||
hillstoneBandwidthOverThreshold OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The bandwidth over threshold trap OIDs."
|
||||
::= {hillstoneTraps 17}
|
||||
|
||||
hillstonePolicyCountOverThreshold OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The policy count over threshold trap OIDs."
|
||||
::= {hillstoneTraps 18}
|
||||
|
||||
hillstoneConfigurationChange OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The configuration change trap OIDs."
|
||||
::= {hillstoneTraps 19}
|
||||
|
||||
hillstoneSlotUp OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The slot up trap OIDs."
|
||||
::= {hillstoneTraps 20}
|
||||
|
||||
hillstoneSlotDown OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The slot down trap OIDs."
|
||||
::= {hillstoneTraps 21}
|
||||
|
||||
hillstoneSlotDown OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The slot down trap OIDs."
|
||||
::= {hillstoneTraps 21}
|
||||
|
||||
hillstoneSlotDown OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The slot down trap OIDs."
|
||||
::= {hillstoneTraps 21}
|
||||
|
||||
END
|
||||
|
2026
MIBS/hillstone/HILLSTONE-STATISTICS-MIB
Normal file
2026
MIBS/hillstone/HILLSTONE-STATISTICS-MIB
Normal file
File diff suppressed because it is too large
Load Diff
164
MIBS/hillstone/HILLSTONE-SYSTEM-MIB
Normal file
164
MIBS/hillstone/HILLSTONE-SYSTEM-MIB
Normal file
@ -0,0 +1,164 @@
|
||||
-- **********************************************************************
|
||||
-- HILLSTONE-SYSTEM-MIB
|
||||
--
|
||||
-- Copyright (c) 2009 by Hillstone Networks, Inc.
|
||||
-- All rights reserved.
|
||||
--
|
||||
-- Version: V3
|
||||
-- Description: Hillstone Networks SYSTEM MIB Object Identifier Assignments
|
||||
-- **********************************************************************
|
||||
--
|
||||
|
||||
HILLSTONE-SYSTEM-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY FROM SNMPv2-SMI
|
||||
NetworkAddress, IpAddress,
|
||||
Counter, Gauge, TimeTicks FROM RFC1155-SMI
|
||||
TruthValue FROM SNMPv2-TC
|
||||
hillstoneSys FROM HILLSTONE-SMI;
|
||||
|
||||
-- textual conventions
|
||||
|
||||
DisplayString ::=
|
||||
OCTET STRING
|
||||
-- This data type is used to model textual information taken
|
||||
-- from the NVT ASCII character set. By convention, objects
|
||||
-- with this syntax are declared as having
|
||||
--
|
||||
-- SIZE (0..255)
|
||||
|
||||
hillstoneSysMibObjects OBJECT IDENTIFIER ::= { hillstoneSys 1 }
|
||||
|
||||
-- hillstone systems
|
||||
sysSerialNumber OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
::= { hillstoneSysMibObjects 1 }
|
||||
|
||||
sysSoftware OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
::= { hillstoneSysMibObjects 2 }
|
||||
|
||||
sysCPU OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
::= { hillstoneSysMibObjects 3 }
|
||||
|
||||
sysTotalMemory OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
::= { hillstoneSysMibObjects 4 }
|
||||
|
||||
sysCurMemory OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
::= { hillstoneSysMibObjects 5 }
|
||||
|
||||
sysTotalSession OBJECT-TYPE
|
||||
SYNTAX Counter
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
::= { hillstoneSysMibObjects 6 }
|
||||
|
||||
sysCurSession OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
::= { hillstoneSysMibObjects 7 }
|
||||
|
||||
sysHAStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
none (0),
|
||||
init (1),
|
||||
hello (2),
|
||||
backup (3),
|
||||
master (4),
|
||||
slase (5),
|
||||
AA-mode (6)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
::= { hillstoneSysMibObjects 8 }
|
||||
|
||||
sysSnmpStackStatus OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The running status of snmp Stack."
|
||||
::= { hillstoneSysMibObjects 9 }
|
||||
|
||||
sysTr069StackStatus OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The running status of tr069 stack."
|
||||
::= { hillstoneSysMibObjects 10 }
|
||||
|
||||
sysVedorOUI OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The oui code of the Tr069 stack.."
|
||||
::= { hillstoneSysMibObjects 11 }
|
||||
|
||||
sysLogStackStatus OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The running status of syslog stack."
|
||||
::= { hillstoneSysMibObjects 12 }
|
||||
|
||||
sysLogServerAddress1 OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The syslog receiver addrees 1."
|
||||
::= { hillstoneSysMibObjects 13 }
|
||||
|
||||
sysLogServerAddress2 OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The syslog receiver addrees 2."
|
||||
::= { hillstoneSysMibObjects 14 }
|
||||
|
||||
sysDeviceReloadAction OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
reloadUnAvailable(1),
|
||||
reloadAtOnce(2)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The actioin of reloading the device. when the value is set to 2,the device will reboot at once."
|
||||
::= { hillstoneSysMibObjects 15 }
|
||||
|
||||
sysStatisticsPeriod OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
oneDay(1)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The period of statistics. default statistics period is 24hours"
|
||||
::= { hillstoneSysMibObjects 16 }
|
||||
|
||||
|
||||
END
|
||||
|
94
MIBS/hillstone/HILLSTONE-TEMPERATURE-MIB
Normal file
94
MIBS/hillstone/HILLSTONE-TEMPERATURE-MIB
Normal file
@ -0,0 +1,94 @@
|
||||
-- **************************************************************************
|
||||
-- HILLSTONE-TEMPERATURE-MIB
|
||||
--
|
||||
-- Copyright (c) 2009 by Hillstone Networks, Inc.
|
||||
-- All rights reserved.
|
||||
--
|
||||
-- Version: V6
|
||||
-- Description: Hillstone Networks TEMPERATURE MIB Object Identifier Assignments
|
||||
-- **************************************************************************
|
||||
--
|
||||
|
||||
HILLSTONE-TEMPERATURE-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
hillstoneTemperature
|
||||
FROM HILLSTONE-SMI
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212
|
||||
RowStatus
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
-- textual conventions
|
||||
|
||||
DisplayString ::=
|
||||
OCTET STRING
|
||||
-- This data type is used to model textual information taken
|
||||
-- from the NVT ASCII character set. By convention, objects
|
||||
-- with this syntax are declared as having
|
||||
--
|
||||
-- SIZE (0..255)
|
||||
|
||||
hillstoneTemperatureObjects OBJECT IDENTIFIER ::= { hillstoneTemperature 1 }
|
||||
|
||||
hillstoneTemperatureNumber OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of temperatures."
|
||||
::= { hillstoneTemperatureObjects 1 }
|
||||
|
||||
hillstoneTemperatureTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF HillstoneTemperatureEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table contains all the TEMPERATURE data."
|
||||
::= { hillstoneTemperatureObjects 2 }
|
||||
|
||||
HillstoneTemperatureEntry OBJECT-TYPE
|
||||
SYNTAX HillstoneTemperatureEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Define the parameters of TEMPERATURE."
|
||||
INDEX { hillstoneTemperatureIndex }
|
||||
::= { hillstoneTemperatureTable 1 }
|
||||
|
||||
HillstoneTemperatureEntry ::=
|
||||
SEQUENCE {
|
||||
hillstoneTemperatureIndex
|
||||
INTEGER,
|
||||
hillstoneTemperatureDescr
|
||||
DisplayString,
|
||||
hillstoneTemperatureValue
|
||||
INTEGER
|
||||
}
|
||||
|
||||
hillstoneTemperatureIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The TEMPERATURE index ."
|
||||
::= { HillstoneTemperatureEntry 1 }
|
||||
|
||||
hillstoneTemperatureDescr OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The TEMPERATURE description ."
|
||||
::= { HillstoneTemperatureEntry 2 }
|
||||
|
||||
hillstoneTemperatureValue OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The TEMPERATURE value ."
|
||||
::= { HillstoneTemperatureEntry 3 }
|
||||
|
||||
|
||||
END
|
152
MIBS/hillstone/HILLSTONE-ZONE-MIB
Normal file
152
MIBS/hillstone/HILLSTONE-ZONE-MIB
Normal file
@ -0,0 +1,152 @@
|
||||
-- **************************************************************************
|
||||
-- HILLSTONE-ZONE-MIB
|
||||
--
|
||||
-- Copyright (c) 2009 by Hillstone Networks, Inc.
|
||||
-- All rights reserved.
|
||||
--
|
||||
-- Version: V3
|
||||
-- Description: Hillstone Networks ZONE MIB Object Identifier Assignments
|
||||
-- **************************************************************************
|
||||
--
|
||||
|
||||
HILLSTONE-ZONE-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
hillstoneZONE
|
||||
FROM HILLSTONE-SMI
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212
|
||||
RowStatus
|
||||
FROM SNMPv2-TC;
|
||||
-- textual conventions
|
||||
|
||||
DisplayString ::=
|
||||
OCTET STRING
|
||||
-- This data type is used to model textual information taken
|
||||
-- from the NVT ASCII character set. By convention, objects
|
||||
-- with this syntax are declared as having
|
||||
--
|
||||
-- SIZE (0..255)
|
||||
|
||||
hillstoneZoneObjects OBJECT IDENTIFIER ::= { hillstoneZONE 1 }
|
||||
|
||||
hillstoneZoneTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF HillstoneZoneEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table contains all the security zones defined in the system."
|
||||
::= { hillstoneZoneObjects 1 }
|
||||
|
||||
HillstoneZoneEntry OBJECT-TYPE
|
||||
SYNTAX HillstoneZoneEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Define the parameters of security zone."
|
||||
INDEX { hillstoneZoneZoneIdx }
|
||||
::= { hillstoneZoneTable 1 }
|
||||
|
||||
HillstoneZoneEntry ::=
|
||||
SEQUENCE {
|
||||
hillstoneZoneZoneIdx
|
||||
Counter,
|
||||
hillstoneZoneZoneName
|
||||
OCTET STRING,
|
||||
hillstoneZoneType
|
||||
INTEGER,
|
||||
hillstoneZoneRowStatus
|
||||
RowStatus
|
||||
}
|
||||
|
||||
hillstoneZoneZoneIdx OBJECT-TYPE
|
||||
SYNTAX Counter
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"
|
||||
An internal number to distinguish security zone.
|
||||
Different zone has different number.
|
||||
"
|
||||
::= { HillstoneZoneEntry 1 }
|
||||
|
||||
hillstoneZoneZoneName OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE (1..255))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"
|
||||
The name of security zone.
|
||||
Different zone has different name."
|
||||
::= { HillstoneZoneEntry 2 }
|
||||
|
||||
hillstoneZoneType OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
lever-2(1),
|
||||
lever-3(2)
|
||||
}
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"
|
||||
The priority of security zone.
|
||||
Different zone has different priority.
|
||||
"
|
||||
::= { HillstoneZoneEntry 3 }
|
||||
|
||||
hillstoneZoneRowStatus OBJECT-TYPE
|
||||
SYNTAX RowStatus
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The status of this address book row. support: active, createandgo, destory"
|
||||
::= { HillstoneZoneEntry 4 }
|
||||
|
||||
hillstoneZoneIFTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF hillstoneZoneIFEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"
|
||||
This table define the interfaces belong to which security zone.
|
||||
An interface can only belong to one security zone."
|
||||
::= { hillstoneZoneObjects 2 }
|
||||
|
||||
hillstoneZoneIFEntry OBJECT-TYPE
|
||||
SYNTAX hillstoneZoneIFEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
" "
|
||||
INDEX { hillstoneZoneIdx,
|
||||
hillstoneZoneIfIndex }
|
||||
::= { hillstoneZoneIFTable 1 }
|
||||
|
||||
hillstoneZoneIFEntry ::=
|
||||
SEQUENCE {
|
||||
hillstoneZoneIdx
|
||||
Counter,
|
||||
hillstoneZoneIfIndex
|
||||
Counter
|
||||
}
|
||||
|
||||
hillstoneZoneIdx OBJECT-TYPE
|
||||
SYNTAX Counter
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An internal number to distinguish security zone.
|
||||
Different zone has different number."
|
||||
::= { hillstoneZoneIFEntry 1 }
|
||||
|
||||
hillstoneZoneIfIndex OBJECT-TYPE
|
||||
SYNTAX Counter
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"hillstoneZoneIfIndex equals to ifindex of IF-MIB"
|
||||
::= { hillstoneZoneIFEntry 2 }
|
||||
|
||||
|
||||
END
|
Reference in New Issue
Block a user