94 lines
3.2 KiB
Plaintext
94 lines
3.2 KiB
Plaintext
-- =================================================================
|
|
-- Copyright (c) 2010-2013 Hewlett-Packard Development Company, L.P.
|
|
--
|
|
-- Description: Ip broadcast mib
|
|
-- Reference:
|
|
-- Version: V1.0
|
|
-- History:
|
|
-- V1.0 Created by Gao Long and Zhou Xin
|
|
-- Initial version 2004-12-13
|
|
-- =================================================================
|
|
HPN-ICF-IP-BROADCAST-MIB DEFINITIONS ::= BEGIN
|
|
|
|
IMPORTS
|
|
hpnicfCommon
|
|
FROM HPN-ICF-OID-MIB
|
|
Integer32, Unsigned32, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
|
|
FROM SNMPv2-SMI;
|
|
|
|
hpnicfIpBroadcast MODULE-IDENTITY
|
|
LAST-UPDATED "200412131936Z" -- December 13, 2004 at 19:36 GMT
|
|
ORGANIZATION
|
|
""
|
|
CONTACT-INFO
|
|
""
|
|
DESCRIPTION
|
|
"This MIB is objects used to describe IP broadcast features or
|
|
functions.
|
|
|
|
Some objects in this may be used only for some specific products,
|
|
so users should refer to the related documents to acquire more
|
|
detail information.
|
|
"
|
|
REVISION "200412131936Z" -- December 13, 2004 at 19:36 GMT
|
|
DESCRIPTION
|
|
"The initial revision of this MIB module."
|
|
::= { hpnicfCommon 33 }
|
|
|
|
|
|
--
|
|
-- Node definitions
|
|
--
|
|
|
|
-- Scalar MIB objects, which are considered as global variables
|
|
-- in a device, are defined in this section.
|
|
hpnicfIpBdstScalarGroup OBJECT IDENTIFIER ::= { hpnicfIpBroadcast 1 }
|
|
|
|
hpnicfIpBdstForwardBroadcast OBJECT-TYPE
|
|
SYNTAX INTEGER
|
|
{
|
|
forwarding(1), -- forwarding direct broadcast
|
|
notForwarding(2) -- not forwarding direct broadcast
|
|
}
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION "This object indicates whether a device forwards direct
|
|
broadcast datagrams or not.
|
|
More details of this object, please refers to RFC2644.
|
|
"
|
|
::= { hpnicfIpBdstScalarGroup 1 }
|
|
|
|
hpnicfIpReceiveBroadcast OBJECT-TYPE
|
|
SYNTAX INTEGER
|
|
{
|
|
receive(1), -- receiving direct broadcast
|
|
notReceive(2) -- not receiving direct broadcast
|
|
}
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION "This objects indicates whether a device receives direct
|
|
broadcast datagrams or not.
|
|
More details of this object, please refers to RFC2644.
|
|
"
|
|
::= { hpnicfIpBdstScalarGroup 2 }
|
|
|
|
|
|
-- =================================================================
|
|
-- All other groups are defined below. Of course, scalar objects can
|
|
-- also be defined in a sub section, but they must be one part of
|
|
-- that sub section.
|
|
-- Note that a scalar group should be defined firstly and all
|
|
-- scalar objects are placed under that group when doing so.
|
|
hpnicfIpBdstGroup OBJECT IDENTIFIER ::= { hpnicfIpBroadcast 2 }
|
|
|
|
|
|
-- =================================================================
|
|
-- Traps are defined below.
|
|
hpnicfIpBdstTrap OBJECT IDENTIFIER ::= { hpnicfIpBroadcast 3 }
|
|
|
|
-- All traps should be placed under this object.
|
|
hpnicfIpBdstTrapPrex OBJECT IDENTIFIER ::= { hpnicfIpBdstTrap 0 }
|
|
|
|
|
|
END
|