From e4d206d4faee5c5a63ad1b0e1c687b1d451d0424 Mon Sep 17 00:00:00 2001 From: Rosiak Date: Tue, 28 Jul 2015 19:15:20 +0200 Subject: [PATCH] Add RB260GS detection As stated in the title. --- includes/discovery/os/routeros.inc.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/discovery/os/routeros.inc.php b/includes/discovery/os/routeros.inc.php index 323cc6257..5e35eb7f7 100644 --- a/includes/discovery/os/routeros.inc.php +++ b/includes/discovery/os/routeros.inc.php @@ -14,4 +14,8 @@ if (!$os) { if (preg_match('/^RouterOS/', $sysDescr)) { $os = 'routeros'; } + + if ($sysDescr == 'RB260GS') { + $os = 'routeros'; + } }