Files

14 lines
382 B
PHP
Raw Permalink Normal View History

2012-03-20 16:50:16 +00:00
<?php
if (preg_match('/^Cisco IOS XR Software \(Cisco ([^\)]+)\),\s+Version ([^\[]+)\[([^\]]+)\]/', $device['sysDescr'], $regexp_result)) {
2015-07-13 20:10:26 +02:00
$hardware = $regexp_result[1];
$features = $regexp_result[3];
$version = $regexp_result[2];
} else {
2015-07-13 20:10:26 +02:00
// It is not an IOS-XR ... What should we do ?
2012-03-20 16:50:16 +00:00
}
$serial = get_main_serial($device);
echo "\n".$device['sysDescr']."\n";