SNMP Teil hinzugefügt
This commit is contained in:
parent
aeba728564
commit
e3691c35f2
@ -7,7 +7,7 @@ declare(strict_types=1);
|
||||
return [
|
||||
'ldap' => [
|
||||
// LDAP-URL des Domain Controllers
|
||||
'server' => 'ITFA-PROJ-SRV.ITFA-PROJ-DOM.local',
|
||||
'server' => 'itfa-proj-srv.itfa-proj-dom.local',
|
||||
'port' => 389,
|
||||
|
||||
// wird an den Benutzernamen angehängt (z.B. "admin" + "@ITFA-PROJ-DOM.local")
|
||||
@ -24,4 +24,19 @@ return [
|
||||
// Session-Key unter dem der eingeloggte Admin gespeichert wird
|
||||
'session_key_user' => 'admin_user',
|
||||
],
|
||||
|
||||
'snmp' => [
|
||||
'host' => 'itfa-proj-srv.itfa-proj-dom.local',
|
||||
'community' => 'public_ro', // später: sinnvoller Community-String
|
||||
'timeout' => 2, // Sekunden
|
||||
'retries' => 1, // Anzahl Wiederholungen
|
||||
|
||||
// Platzhalter für OIDs – später können wir die auf echte Werte setzen
|
||||
'oids' => [
|
||||
'uptime' => '1.3.6.1.2.1.1.3.0',
|
||||
'cpu_usage' => '1.3.6.1.4.1.example.cpu.0',
|
||||
'memory_usage' => '1.3.6.1.4.1.example.memory.0',
|
||||
'disk_c' => '1.3.6.1.4.1.example.diskc.0',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
Loading…
Reference in New Issue
Block a user