Syslog hook examples and documentation for Procurve devices (#13397)

* Add support for Procurve devices

Syslog hook support added for automatic Oxidized backups of devices running Procurve

* Add documentation for HPE/Aruba Procurve devices

Update documentation to support configuration of example Syslog hooks for HPE and Aruba devices running Procurve
This commit is contained in:
nq5
2021-10-21 08:45:16 +01:00
committed by GitHub
parent bc8efedc83
commit 5854244f5a
2 changed files with 19 additions and 0 deletions

View File

@@ -24,4 +24,6 @@ if (preg_match('/(SYS-(SW[0-9]+-)?5-CONFIG_I|VSHD-5-VSHD_SYSLOG_CONFIG_I): Confi
oxidized_node_update($hostname, $msg, $matches['user']); //Alliedware Plus devices. Requires at least V5.4.8-2.1
} elseif (preg_match('/System configuration saved/', $msg, $matches)) {
oxidized_node_update($hostname, $msg); //ScreenOS
} elseif (preg_match('/Running Config Change/', $msg, $matches)) {
oxidized_node_update($hostname, $msg); //HPE and Aruba Procurve devices
}