diff --git a/app/Services/Snmp/SnmpServerStatusService.php b/app/Services/Snmp/SnmpServerStatusService.php index 32a2d27..56ae54a 100644 --- a/app/Services/Snmp/SnmpServerStatusService.php +++ b/app/Services/Snmp/SnmpServerStatusService.php @@ -39,7 +39,7 @@ class SnmpServerStatusService public function getServerStatus(): array { // --- 1. Konfiguration auslesen --- - $host = (string)($this->config['host'] ?? 'itfa-proj-srv.itfa-proj-dom.local'); + $host = (string)($this->config['host'] ?? '127.0.0.1'); $community = (string)($this->config['community'] ?? ''); $oids = $this->config['oids'] ?? []; $timeout = (int)($this->config['timeout'] ?? 1) * 1_000_000; // in Mikrosekunden