This website requires JavaScript.
Explore
Help
Sign In
mirror
/
librenms-librenms
Watch
1
Star
0
Fork
0
You've already forked librenms-librenms
mirror of
https://github.com/librenms/librenms.git
synced
2024-10-07 16:52:45 +00:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
librenms-librenms
/
includes
/
discovery
/
os
/
nos.inc.php
8 lines
93 B
PHP
Raw
Normal View
History
Unescape
Escape
Added basic detection for Brocade
2015-07-07 19:16:36 +01:00
<
?
php
if
(
!
$os
)
{
Remove some detection logic from Brocade NOS foo Remove one overly-broad and one overly-narrow detection check for nos devices.
2016-01-08 14:30:55 -07:00
if
(
strstr
(
$sysDescr
,
"
Brocade VDX
"
))
{
Added discovery and polling support for brocade VDX devices. Removed an obsolete value and check for ifAlias (in definitions and ports) since VDX nowdays report correct from ifAlias. Removed printing of interface numbers for vdx devices in the interface list since VDX devices do not report the expected ifIndex value like other switches do
2015-12-04 15:35:02 +01:00
$os
=
"
nos
"
;
Added basic detection for Brocade
2015-07-07 19:16:36 +01:00
}
}
Reference in New Issue
Copy Permalink