Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
plugins-20250600 source code.tar.gz | 2025-06-13 | 4.9 MB | |
plugins-20250600 source code.zip | 2025-06-13 | 12.7 MB | |
README.md | 2025-06-13 | 4.8 kB | |
Totals: 3 Items | 17.5 MB | 0 |
New connectors
- Juniper M-Series Netconf - Initial release of Juniper M-series with Netconf.
Enhancements
- F5 BigIP - Added new certificates mode, from a The Watch idea.
- Fortinet Fortigate SNMP - Added uptime service template.
- Juniper EX Series - Reworked plugin path to be more explicit with the initial release of Juniper M-series with Netconf.
- Juniper GGSN - Reworked plugin path to be more explicit with the initial release of Juniper M-series with Netconf.
- Juniper ISG - Reworked plugin path to be more explicit with the initial release of Juniper M-series with Netconf.
- Juniper M-Series - Reworked plugin path to be more explicit with the initial release of Juniper M-series with Netconf.
- Juniper Mag - Reworked plugin path to be more explicit with the initial release of Juniper M-series with Netconf.
- Juniper SA - Reworked plugin path to be more explicit with the initial release of Juniper M-series with Netconf.
- Juniper SRX - Reworked plugin path to be more explicit with the initial release of Juniper M-series with Netconf.
- Juniper SSG - Reworked plugin path to be more explicit with the initial release of Juniper M-series with Netconf.
- Juniper Trapeze - Reworked plugin path to be more explicit with the initial release of Juniper M-series with Netconf.
- Nmap CLI - Enhanced secure execution of commands.
- Pure Storage FlashArray Rest API v2 - Added performance counters in arrays mode, based on community contribution PR 5355.
- Qnap - Added QuTS Operating System handling for hardware, pools and volumes modes, from community contribution PR 5564.
Bug fixes
- Office 365 OneDrive - Fixed service discovery mode for site-usage.
- Rubrik Rest API - Fixed an issue affecting token renewal.
- VMware ESX - Fixed the Vsan-Cluster-Usage
Cannot get response (timeout received)
error. See the notice below to apply the patch. - VMware vCenter v6 - Fixed the Vsan-Cluster-Usage
Cannot get response (timeout received)
error. See the notice below to apply the patch. - VMware vCenter - Fixed the Vsan-Cluster-Usage
Cannot get response (timeout received)
error. See the notice below to apply the patch. - VMware VM - Fixed the Vsan-Cluster-Usage
Cannot get response (timeout received)
error. See the notice below to apply the patch.
How to patch the VSAN bug on Debian 11 & 12 and Alma/RHEL/Oracle 9?
-
Locate the file that must be patched.
:::bash find /usr/ -name VICommon.pm
It should be /usr/local/share/perl5/5.32/VMware/VICommon.pm
on EL9, /usr/local/share/perl/5.32.1/VMware/VICommon.pm
on Debian 11 and /usr/local/share/perl/5.36.0/VMware/VICommon.pm
on Debian 12.
-
Run the following command to apply the patch (replace "FILE_TO_PATCH" with the results of the previous command):
:::bash patch --backup FILE_TO_PATCH <<'EOF' --- lib/VMware/share/VMware/VICommon.pm 2025-04-24 17:18:24.938290503 +0200 +++ VICommon.pm 2025-04-24 17:18:18.690399614 +0200 @@ -2319,6 +2319,8 @@ my $user_agent = $self->{user_agent}; $user_agent->cookie_jar->as_string =~ m/(.)vmware_soap_session=\"\\"(0-9a-zA-Z-+)\\"\"(.)/; + $user_agent->cookie_jar->as_string + =~ m/(.)vmware_soap_session=[\\"]([0-9a-zA-Z-]+)/ unless $2; return $2; } EOF
The results of this command should be patching file /usr/your/path/to/VICommon.pm
.
3. Then restart the daemon:
:::bash
systemctl restart centreon_vmware