diff options
| author | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
|---|---|---|
| committer | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
| commit | 98a672123c7872f6b9b75a9a2b6bb3aea504de6a (patch) | |
| tree | 9b13bd7f563c3198047bd359195327cf28b3caf0 /MIBS/exalt/SYSLOG | |
| download | mibs-main.tar.gz mibs-main.zip | |
Diffstat (limited to 'MIBS/exalt/SYSLOG')
| -rwxr-xr-x | MIBS/exalt/SYSLOG | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/MIBS/exalt/SYSLOG b/MIBS/exalt/SYSLOG new file mode 100755 index 0000000..43e6cb8 --- /dev/null +++ b/MIBS/exalt/SYSLOG @@ -0,0 +1,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 |