blob: 43e6cb803cf150c1e85425f054df348490edc07c (
plain)
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
|
SYSLOG DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY, IpAddress
FROM SNMPv2-SMI
DisplayString
FROM SNMPv2-TC
SyslogEnableT, SyslogFilterSelectT
FROM ExaltComm
radioConfig
FROM ExaltComProducts;
advSystemConfig OBJECT-IDENTITY
STATUS current
DESCRIPTION "This is the device specific advanced configuration section."
::= { radioConfig 5 }
syslogCfg OBJECT-IDENTITY
STATUS current
DESCRIPTION "Syslog remote logging configuration."
::= { advSystemConfig 6 }
syslogEnable OBJECT-TYPE
SYNTAX SyslogEnableT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "this mib to enable/disable the Syslog remote logging in the radio.
0 - disbale Syslog remote logging.
1 - enable Syslog remote logging."
::= { syslogCfg 1 }
syslogRemoteIpAddr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "IP address of the remote host the Syslog event messages being sent to.
IP address is in xxx.xxx.xxx.xxx format"
::= { syslogCfg 2 }
syslogFilterSelect OBJECT-TYPE
SYNTAX SyslogFilterSelectT
MAX-ACCESS read-write
STATUS current
DESCRIPTION "logging filter selection.
0 - All - send all event messages to remote
1 - Minor - Minor only
2 - Minor, Major and critical
3 - Major only
4 - Major and Critical
5 - Critical only."
::= { syslogCfg 3 }
commitSyslogSettings OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This command allows saving or clear the Syslog configuration.
Option strings to be written are: save, clear, correspondingly saving changes to
configuration to the persistent storage or clearing unsaved changes."
::= { syslogCfg 1000 }
END
|