Add support for Infinera-Coriant Groove (#9843)

* Add support for Infinera Groove
This commit is contained in:
Nick Hilliard
2019-03-04 16:31:53 +00:00
committed by TheGreatDoc
parent 411f36a9a1
commit 09caced7ef
16 changed files with 22336 additions and 0 deletions

View File

@@ -312,6 +312,10 @@ if ($device['os'] == 'timos') {
require_once 'ports/timos.inc.php';
}
if ($device['os'] == 'infinera-groove') {
require_once 'ports/infinera-groove.inc.php';
}
if ($config['enable_ports_adsl']) {
$device['xdsl_count'] = dbFetchCell("SELECT COUNT(*) FROM `ports` WHERE `device_id` = ? AND `ifType` in ('adsl','vdsl')", [$device['device_id']]);
}