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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
|
-- ==========================================================================
-- Copyright (c) 2004-2014 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: Syslog MIB
-- Reference: RFC5424
-- Version: V1.5
-- History:
-- V1.0 Initial version 2005-08-20 by wangrui
-- V1.1 added hh3cSyslogLoghostIpaddressPort by jinyi
-- V1.2 2010-06-09 added hh3cSyslogLogGlobalLevel by haoyan
-- added hh3cSyslogLoghostTAddress by jinyi
-- V1.3 2012-06-06 added hh3cSyslogLogbufContTable, hh3cSyslogLogbufContEntry,
-- hh3cLogbufContIndex, hh3cLogbufContDescription by jixugang
-- V1.4 2013-09-13 added hh3cSyslogState2 by duyanbing
-- V1.5 2014-03-04 repalce hh3cSyslogLogGlobalLevel by hh3cSyslogLogGlobalLevelRfc by chengpengxing
-- ==========================================================================
HH3C-SYSLOG-MIB DEFINITIONS ::= BEGIN
IMPORTS
hh3cCommon
FROM HH3C-OID-MIB
DisplayString, TruthValue, RowStatus, TAddress, TEXTUAL-CONVENTION
FROM SNMPv2-TC
Integer32, Counter32, Unsigned32, OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB;
hh3cSyslog MODULE-IDENTITY
LAST-UPDATED "201006091050Z"
ORGANIZATION
"New H3C Technologies Co., Ltd."
CONTACT-INFO
"Platform Team New H3C Technologies Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.h3c.com
Zip:100085"
DESCRIPTION
"All the configuration of the syslog can be managed
by syslog Mib."
REVISION "201006091050Z"
DESCRIPTION
"The initial revision of this MIB module."
::= { hh3cCommon 63 }
--
-- Textual conventions
--
MessageLevelType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specify severity level of message."
SYNTAX INTEGER
{
emergency(1),
alert(2),
critical(3),
error(4),
warning(5),
notice(6),
informational(7),
debug(8),
invalid(9)
}
TimeStampType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specify operation types on time stamp of message.
none: no time stamp information in message.
date: the time stamp type of message is date.
boot: the time stamp type of message is the time from
uptime of system.
dateWithoutYear: the time stamp type of message is date
without year information."
SYNTAX INTEGER
{
none(1),
date(2),
boot(3),
dateWithoutYear(4)
}
FacilityType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specify loghost facility which generates messages."
SYNTAX INTEGER
{
kernel(0),
userLevel(1),
mailSystem(2),
systemDaemons(3),
securityAuthorization(4),
internallyMessages(5),
linePrinter(6),
networkNews(7),
uucp(8),
clockDaemon(9),
securityAuthorization2(10),
ftpDaemon(11),
ntp(12),
logAudit(13),
logAlert(14),
clockDaemon2(15),
local0(16),
local1(17),
local2(18),
local3(19),
local4(20),
local5(21),
local6(22),
local7(23)
}
--
-- Node definitions
--
hh3cSyslogObjects OBJECT IDENTIFIER ::= { hh3cSyslog 1 }
hh3cSyslogObject OBJECT IDENTIFIER ::= { hh3cSyslogObjects 1 }
hh3cSyslogState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The state of syslog: true(1):enable.
false(2):disable."
::= { hh3cSyslogObject 1 }
hh3cSyslogMaxLoghost OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object shows the maximum number of rows in
hh3cLoghostTable."
::= { hh3cSyslogObject 2 }
hh3cSyslogMaxChannel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object shows the maximum number of channels in
hh3cSyslogChannelTable."
::= { hh3cSyslogObject 3 }
hh3cSyslogMaxLogbufferSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of messages that can be stored
in logbuffer."
::= { hh3cSyslogObject 4 }
hh3cSyslogMaxTrapbufferSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of messages that can be stored
in trapbuffer."
::= { hh3cSyslogObject 5 }
hh3cSyslogState2 OBJECT-TYPE
SYNTAX INTEGER
{
off(0),
on(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Status of syslog, on for enabled or off for disabled.
This node differs from hh3cSyslogState in value."
::= { hh3cSyslogObject 6 }
hh3cSyslogConsole OBJECT IDENTIFIER ::= { hh3cSyslogObjects 2 }
hh3cSyslogConsoleChannel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The channel number of console."
DEFVAL { 0 }
::= { hh3cSyslogConsole 1 }
hh3cSyslogMonitor OBJECT IDENTIFIER ::= { hh3cSyslogObjects 3 }
hh3cSyslogMonitorChannel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The channel number of monitor."
DEFVAL { 1 }
::= { hh3cSyslogMonitor 1 }
hh3cSyslogSnmp OBJECT IDENTIFIER ::= { hh3cSyslogObjects 4 }
hh3cSyslogSnmpChannel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The channel number of snmp."
DEFVAL { 5 }
::= { hh3cSyslogSnmp 1 }
hh3cSyslogLogbuffer OBJECT IDENTIFIER ::= { hh3cSyslogObjects 5 }
hh3cSyslogLogbufferChannel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The channel number of logbuffer."
DEFVAL { 4 }
::= { hh3cSyslogLogbuffer 1 }
hh3cSyslogLogbufferSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The capacity of logbuffer which can be customized by users.
The valid range is from 0 to hh3cSyslogMaxLogbufferSize."
DEFVAL { 512 }
::= { hh3cSyslogLogbuffer 2 }
hh3cSyslogLogbufferTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cSyslogLogbufferEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of logbuffer."
::= { hh3cSyslogLogbuffer 3 }
hh3cSyslogLogbufferEntry OBJECT-TYPE
SYNTAX Hh3cSyslogLogbufferEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The logbuffer entry of syslog."
INDEX { hh3cLogbufferIndex }
::= { hh3cSyslogLogbufferTable 1 }
Hh3cSyslogLogbufferEntry ::=
SEQUENCE {
hh3cLogbufferIndex Integer32,
hh3cLogbufferCurrentMessages Unsigned32,
hh3cLogbufferOverwrittenMessages Counter32,
hh3cLogbufferDroppedMessages Counter32
}
hh3cLogbufferIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table."
::= { hh3cSyslogLogbufferEntry 1 }
hh3cLogbufferCurrentMessages OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of log messages stored in logbuffer."
::= { hh3cSyslogLogbufferEntry 2 }
hh3cLogbufferOverwrittenMessages OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of log messages overwritten in logbuffer."
::= { hh3cSyslogLogbufferEntry 3 }
hh3cLogbufferDroppedMessages OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of log messages dropped in logbuffer."
::= { hh3cSyslogLogbufferEntry 4 }
hh3cSyslogLogbufContTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cSyslogLogbufContEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of logbuffer contents."
::= { hh3cSyslogLogbuffer 4 }
hh3cSyslogLogbufContEntry OBJECT-TYPE
SYNTAX Hh3cSyslogLogbufContEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The contens entry of logbuffer."
INDEX { hh3cLogbufContIndex }
::= { hh3cSyslogLogbufContTable 1 }
Hh3cSyslogLogbufContEntry ::=
SEQUENCE {
hh3cLogbufContIndex Integer32,
hh3cLogbufContDescription DisplayString
}
hh3cLogbufContIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table."
::= { hh3cSyslogLogbufContEntry 1 }
hh3cLogbufContDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..1600))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The contents of logbuffer."
::= { hh3cSyslogLogbufContEntry 2 }
hh3cSyslogTrapbuffer OBJECT IDENTIFIER ::= { hh3cSyslogObjects 6 }
hh3cSyslogTrapbufferChannel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The channel number of trapbuffer."
DEFVAL { 3 }
::= { hh3cSyslogTrapbuffer 1 }
hh3cSyslogTrapbufferSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The capacity of the trapbuffer which can be customized by users.
The valid range is from 0 to hh3cSyslogMaxTrapbufferSize."
DEFVAL { 256 }
::= { hh3cSyslogTrapbuffer 2 }
hh3cSyslogTrapbufferTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cSyslogTrapbufferEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of trapbuffer."
::= { hh3cSyslogTrapbuffer 3 }
hh3cSyslogTrapbufferEntry OBJECT-TYPE
SYNTAX Hh3cSyslogTrapbufferEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The trapbuffer entry of syslog."
INDEX { hh3cTrapbufferIndex }
::= { hh3cSyslogTrapbufferTable 1 }
Hh3cSyslogTrapbufferEntry ::=
SEQUENCE {
hh3cTrapbufferIndex Integer32,
hh3cTrapbufferCurrentMessages Unsigned32,
hh3cTrapbufferOverwrittenMessages Counter32,
hh3cTrapbufferDroppedMessages Counter32
}
hh3cTrapbufferIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table."
::= { hh3cSyslogTrapbufferEntry 1 }
hh3cTrapbufferCurrentMessages OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of trap messages stored in trapbuffer."
::= { hh3cSyslogTrapbufferEntry 2 }
hh3cTrapbufferOverwrittenMessages OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of trap messages overwritten in trapbuffer."
::= { hh3cSyslogTrapbufferEntry 3 }
hh3cTrapbufferDroppedMessages OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of trap messages dropped in trapbuffer."
::= { hh3cSyslogTrapbufferEntry 4 }
hh3cSyslogLoghost OBJECT IDENTIFIER ::= { hh3cSyslogObjects 7 }
hh3cSyslogLoghostSourceInterface OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The source interface which sends message to loghost.
All loghosts use the same source interface."
::= { hh3cSyslogLoghost 1 }
hh3cSyslogLoghostTimestampType OBJECT-TYPE
SYNTAX TimeStampType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time stamp type of message sent to loghost."
DEFVAL { date }
::= { hh3cSyslogLoghost 2 }
hh3cSyslogLoghostTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cSyslogLoghostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of loghost."
::= { hh3cSyslogLoghost 3 }
hh3cSyslogLoghostEntry OBJECT-TYPE
SYNTAX Hh3cSyslogLoghostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The loghost entry of syslog."
INDEX { hh3cSyslogLoghostIndex }
::= { hh3cSyslogLoghostTable 1 }
Hh3cSyslogLoghostEntry ::=
SEQUENCE {
hh3cSyslogLoghostIndex Integer32,
hh3cSyslogLoghostChannel Integer32,
hh3cSyslogLoghostIpaddressType InetAddressType,
hh3cSyslogLoghostIpaddress InetAddress,
hh3cSyslogLoghostFacility FacilityType,
hh3cSyslogLoghostLanguage INTEGER,
hh3cSyslogLoghostOperateRowStatus RowStatus,
hh3cSyslogLoghostIpaddressPort Integer32,
hh3cSyslogLoghostTAddress TAddress
}
hh3cSyslogLoghostIndex OBJECT-TYPE
SYNTAX Integer32(1..64)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table."
::= { hh3cSyslogLoghostEntry 1 }
hh3cSyslogLoghostChannel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The channel number of loghost."
DEFVAL { 2 }
::= { hh3cSyslogLoghostEntry 2 }
hh3cSyslogLoghostIpaddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ip address type of loghost."
DEFVAL { ipv4 }
::= { hh3cSyslogLoghostEntry 3 }
hh3cSyslogLoghostIpaddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ip address of loghost."
::= { hh3cSyslogLoghostEntry 4 }
hh3cSyslogLoghostFacility OBJECT-TYPE
SYNTAX FacilityType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The operations staff can selectively filter the messages
with priority which consists of facility that generates
the message and severity of the message.
"
DEFVAL { local7 }
::= { hh3cSyslogLoghostEntry 5 }
hh3cSyslogLoghostLanguage OBJECT-TYPE
SYNTAX INTEGER {
chinese(1),
english(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The language of the message sent to the loghost."
DEFVAL { english }
::= { hh3cSyslogLoghostEntry 6 }
hh3cSyslogLoghostOperateRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry."
::= { hh3cSyslogLoghostEntry 7 }
hh3cSyslogLoghostIpaddressPort OBJECT-TYPE
SYNTAX Integer32(1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The loghost server port."
DEFVAL { 514 }
::= { hh3cSyslogLoghostEntry 8 }
hh3cSyslogLoghostTAddress OBJECT-TYPE
SYNTAX TAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The loghost server transport address."
::= { hh3cSyslogLoghostEntry 9 }
hh3cSyslogChannel OBJECT IDENTIFIER ::= { hh3cSyslogObjects 8 }
hh3cSyslogChannelTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cSyslogChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of syslog channel."
::= { hh3cSyslogChannel 1 }
hh3cSyslogChannelEntry OBJECT-TYPE
SYNTAX Hh3cSyslogChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The channel entry of syslog."
INDEX { hh3cSyslogChannelIndex }
::= { hh3cSyslogChannelTable 1 }
Hh3cSyslogChannelEntry ::=
SEQUENCE {
hh3cSyslogChannelIndex Integer32,
hh3cSyslogChannelName DisplayString
}
hh3cSyslogChannelIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table."
::= { hh3cSyslogChannelEntry 1 }
hh3cSyslogChannelName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..30))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of channel.
The channel name must be different from each other."
::= { hh3cSyslogChannelEntry 2 }
hh3cSyslogModule OBJECT IDENTIFIER ::= { hh3cSyslogObjects 9 }
hh3cSyslogModuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cSyslogModuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of syslog module."
::= { hh3cSyslogModule 1 }
hh3cSyslogModuleEntry OBJECT-TYPE
SYNTAX Hh3cSyslogModuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The module entry of syslog."
INDEX { hh3cSyslogModuleIndex }
::= { hh3cSyslogModuleTable 1 }
Hh3cSyslogModuleEntry ::=
SEQUENCE {
hh3cSyslogModuleIndex Integer32,
hh3cSyslogModuleName DisplayString
}
hh3cSyslogModuleIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table."
::= { hh3cSyslogModuleEntry 1 }
hh3cSyslogModuleName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of module."
::= { hh3cSyslogModuleEntry 2 }
hh3cSyslogLog OBJECT IDENTIFIER ::= { hh3cSyslogObjects 10 }
hh3cSyslogLogTimestampType OBJECT-TYPE
SYNTAX TimeStampType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time stamp type of log message."
DEFVAL { date }
::= { hh3cSyslogLog 1 }
hh3cSyslogLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cSyslogLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of syslog module."
::= { hh3cSyslogLog 2 }
hh3cSyslogLogEntry OBJECT-TYPE
SYNTAX Hh3cSyslogLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The log entry of syslog."
INDEX { hh3cSyslogChannelIndex,
hh3cSyslogModuleIndex
}
::= { hh3cSyslogLogTable 1 }
Hh3cSyslogLogEntry ::=
SEQUENCE {
hh3cSyslogLogState TruthValue,
hh3cSyslogLogLevel MessageLevelType,
hh3cSyslogLogRowStatus RowStatus
}
hh3cSyslogLogState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The switch state of log."
::= { hh3cSyslogLogEntry 1 }
hh3cSyslogLogLevel OBJECT-TYPE
SYNTAX MessageLevelType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The level of log message."
::= { hh3cSyslogLogEntry 2 }
hh3cSyslogLogRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry."
::= { hh3cSyslogLogEntry 3 }
hh3cSyslogLogGlobalLevel OBJECT-TYPE
SYNTAX MessageLevelType
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"The global level of log message. This object is replaced by
hh3cSyslogLogGlobalLevelRfc because its value does not accord
with RFC5424."
::= { hh3cSyslogLog 3 }
hh3cSyslogLogGlobalLevelRfc OBJECT-TYPE
SYNTAX INTEGER {
emergency(0),
alert(1),
critical(2),
error(3),
warning(4),
notice(5),
informational(6),
debug(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The global level of log message. This object replaces
hh3cSyslogLogGlobalLevel because it observes the terms of RFC5424."
::= { hh3cSyslogLog 4 }
hh3cSyslogTrap OBJECT IDENTIFIER ::= { hh3cSyslogObjects 11 }
hh3cSyslogTrapTimestampType OBJECT-TYPE
SYNTAX TimeStampType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time stamp type of trap message."
DEFVAL { date }
::= { hh3cSyslogTrap 1 }
hh3cSyslogTrapTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cSyslogTrapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of syslog module."
::= { hh3cSyslogTrap 2 }
hh3cSyslogTrapEntry OBJECT-TYPE
SYNTAX Hh3cSyslogTrapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The trap entry of syslog."
INDEX { hh3cSyslogChannelIndex,
hh3cSyslogModuleIndex
}
::= { hh3cSyslogTrapTable 1 }
Hh3cSyslogTrapEntry ::=
SEQUENCE {
hh3cSyslogTrapState TruthValue,
hh3cSyslogTrapLevel MessageLevelType,
hh3cSyslogTrapRowStatus RowStatus
}
hh3cSyslogTrapState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The switch state of trap."
::= { hh3cSyslogTrapEntry 1 }
hh3cSyslogTrapLevel OBJECT-TYPE
SYNTAX MessageLevelType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The level of trap message."
::= { hh3cSyslogTrapEntry 2 }
hh3cSyslogTrapRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry."
::= { hh3cSyslogTrapEntry 3 }
hh3cSyslogDebug OBJECT IDENTIFIER ::= { hh3cSyslogObjects 12 }
hh3cSyslogDebugTimestampType OBJECT-TYPE
SYNTAX TimeStampType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time stamp type of debug message."
DEFVAL { boot }
::= { hh3cSyslogDebug 1 }
hh3cSyslogDebugTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cSyslogDebugEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of syslog module."
::= { hh3cSyslogDebug 2 }
hh3cSyslogDebugEntry OBJECT-TYPE
SYNTAX Hh3cSyslogDebugEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The debug entry of syslog."
INDEX { hh3cSyslogChannelIndex,
hh3cSyslogModuleIndex
}
::= { hh3cSyslogDebugTable 1 }
Hh3cSyslogDebugEntry ::=
SEQUENCE {
hh3cSyslogDebugState TruthValue,
hh3cSyslogDebugLevel MessageLevelType,
hh3cSyslogDebugRowStatus RowStatus
}
hh3cSyslogDebugState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The switch state of debug."
::= { hh3cSyslogDebugEntry 1 }
hh3cSyslogDebugLevel OBJECT-TYPE
SYNTAX MessageLevelType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The level of debug message."
::= { hh3cSyslogDebugEntry 2 }
hh3cSyslogDebugRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry."
::= { hh3cSyslogDebugEntry 3 }
END
|