mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
17 lines
346 B
PHP
17 lines
346 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
if (preg_match('/^Cisco IOS XR Software \(Cisco ([^\)]+)\),\s+Version ([^\[]+)\[([^\]]+)\]/', $poll_device['sysDescr'], $regexp_result))
|
||
|
|
{
|
||
|
|
$hardware = $regexp_result[1];
|
||
|
|
$features = $regexp_result[3];
|
||
|
|
$version = $regexp_result[2];
|
||
|
|
}
|
||
|
|
else
|
||
|
|
{
|
||
|
|
# It is not an IOS-XR ... What should we do ?
|
||
|
|
}
|
||
|
|
|
||
|
|
echo("\n".$poll_device['sysDescr']."\n");
|
||
|
|
|
||
|
|
?>
|