-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBROCADE-SYSLOG-MIB
137 lines (119 loc) · 4.72 KB
/
BROCADE-SYSLOG-MIB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
BROCADE-SYSLOG-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Counter32, Unsigned32
FROM SNMPv2-SMI -- [RFC2578]
RowStatus
FROM SNMPv2-TC -- [RFC2579]
InetAddress, InetAddressType
FROM INET-ADDRESS-MIB -- [RFC4001]
brcdSysLog
FROM FOUNDRY-SN-ROOT-MIB; -- [snroo101]
brocadeSysLogMIB MODULE-IDENTITY
LAST-UPDATED "201111040000Z" -- Novemeber 4, 2011
ORGANIZATION "Brocade Communications Systems, Inc."
CONTACT-INFO
"Technical Support Center
130 Holger Way,
San Jose, CA 95134
Email: [email protected]
Phone: 1-800-752-8061
URL: www.brocade.com"
DESCRIPTION
"This MIB module contains the managed object definitions for
syslog
Copyright 1996-2011 Brocade Communications Systems, Inc.
All rights reserved.
This Brocade Communications Systems SNMP Management Information
Base Specification embodies Brocade Communications Systems'
confidential and proprietary intellectual property.
Brocade Communications Systems retains all title and ownership
in the Specification, including any revisions.
This Specification is supplied AS IS, and Brocade Communications
Systems makes no warranty, either express or implied, as to the
use, operation, condition, or performance of the specification,
and any unintended consequence it may on the user environment."
REVISION "201111040000Z" -- November 04, 2011
DESCRIPTION
"Initial revision"
::= { brcdSysLog 1 }
--
-- Top level components of this MIB.
--
brcdSysLogGroup OBJECT IDENTIFIER ::= { brocadeSysLogMIB 1 }
--
-- IPv4/IPv6 SysLog Server table
--
-- snAgSysLogServerTable will be deprecated and will be replaced by
-- brcdSysLogServerTable.
brcdSysLogServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF BrcdSysLogServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"System Log Server table."
::= { brcdSysLogGroup 1 }
brcdSysLogServerEntry OBJECT-TYPE
SYNTAX BrcdSysLogServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the System Log Server table."
INDEX {
brcdSysLogServerAddrType,
brcdSysLogServerAddr,
brcdSysLogServerUDPPort
}
::= { brcdSysLogServerTable 1 }
BrcdSysLogServerEntry ::= SEQUENCE {
brcdSysLogServerAddrType
InetAddressType,
brcdSysLogServerAddr
InetAddress,
brcdSysLogServerUDPPort
Unsigned32,
brcdSysLogServerOutPkts
Counter32,
brcdSysLogServerRowStatus
RowStatus
}
brcdSysLogServerAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The syslog server address type. The supported address types
are ipv4(1) and ipv6(2)."
::= { brcdSysLogServerEntry 1 }
brcdSysLogServerAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IP address of syslog server."
::= { brcdSysLogServerEntry 2 }
brcdSysLogServerUDPPort OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"UDP port number of syslog server."
::= { brcdSysLogServerEntry 3 }
brcdSysLogServerOutPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of sylog packets sent to this syslog server."
::= { brcdSysLogServerEntry 4 }
brcdSysLogServerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Setting this object to createAndGo(4) results in addition
of new row. Setting this object to destroy( 6)results in
removal of a row. The value active(1) is returned for
get and get-next requests.
Other values in the enumeration are not used."
::= { brcdSysLogServerEntry 5 }
END