2009-10-09 08:33:01 +00:00
|
|
|
<?php
|
|
|
|
|
2010-08-09 23:25:29 +00:00
|
|
|
echo("Cisco Catalyst OS\n");
|
|
|
|
|
2010-08-02 21:56:55 +00:00
|
|
|
#Cisco Systems, Inc. WS-C2948 Cisco Catalyst Operating System Software, Version 4.5(9) Copyright (c) 1995-2000 by Cisco Systems, Inc.
|
|
|
|
#Cisco Systems WS-C5509 Cisco Catalyst Operating System Software, Version 5.5(19) Copyright (c) 1995-2003 by Cisco Systems
|
|
|
|
#Cisco Systems WS-C5500 Cisco Catalyst Operating System Software, Version 5.5(18) Copyright (c) 1995-2002 by Cisco Systems
|
|
|
|
#Cisco Systems, Inc. WS-C2948 Cisco Catalyst Operating System Software, Version 8.4(11)GLX Copyright (c) 1995-2006 by Cisco Systems, Inc.
|
|
|
|
#Cisco Systems, Inc. WS-C2948 Cisco Catalyst Operating System Software, Version 5.5(11) Copyright (c) 1995-2001 by Cisco Systems, Inc.
|
|
|
|
#Cisco Systems, Inc. WS-C4003 Cisco Catalyst Operating System Software, Version 6.4(13) Copyright (c) 1995-2004 by Cisco Systems, Inc.
|
|
|
|
#Cisco Systems, Inc. WS-C4006 Cisco Catalyst Operating System Software, Version 6.3(9) Copyright (c) 1995-2002 by Cisco Systems, Inc.
|
|
|
|
|
|
|
|
|
2009-10-09 08:33:01 +00:00
|
|
|
if(strstr($ciscomodel, "OID")){ unset($ciscomodel); }
|
|
|
|
if(!strstr($ciscomodel, " ") && strlen($ciscomodel) >= '3') {
|
|
|
|
$hardware = $ciscomodel;
|
|
|
|
}
|
|
|
|
|
2010-08-09 23:25:29 +00:00
|
|
|
$sysDescr = str_replace(", Inc.", "", $sysDescr); ## Make the two formats the same
|
|
|
|
$sysDescr = str_replace("\n", " ", $sysDescr);
|
|
|
|
|
|
|
|
list(,,$hardware,,,,,,,$version,,,$features) = explode(" ", $sysDescr);
|
2009-10-09 08:33:01 +00:00
|
|
|
list(,$features) = explode("-", $features);
|
|
|
|
|
|
|
|
|
|
|
|
?>
|