Hi,
are you running server on Windows?
Best regards,
Victor
are you running server on Windows?
Best regards,
Victor
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
switch($node->vendor)
{
case "Mikrotik":
switch($node->productName)
{
case "60ghz": oid = ".1.3.6.1.4.1.14988.1.1.1.8.1.6.1";
}
break;
case "Ubiquity":
switch($node->productName)
{
case "AirMAX": oid = ".1.3.6.1.4.1.41112.1.4.1.1.4.1";
case "AirFiber": oid = ".1.3.6.1.4.1.41112.1.3.1.1.5.1";
}
break;
}
if (oid == null)
return null; // OID was not selected, null will mark DCI as unsupported
snmp = $node->createSNMPTransport();
if (snmp == null)
abort;
return SNMPGetValue(snmp, oid);
oids = %( ".1.3.6.1.4.1.41112.1.4.1.1.4.1", ".1.3.6.1.4.1.41112.1.3.1.1.5.1", ".1.3.6.1.4.1.14988.1.1.1.8.1.6.1" );
snmp = $node->createSNMPTransport();
if (snmp != null)
{
for(oid : oids)
{
if (SNMPGetValue(snmp, oid) != null) // You may use more sophisticated checks here if needed
{
selectedOID = oid;
break;
}
}
}
SetCustomAttribute($node, "WirelessCenterFrequencyOID", selectedOID);
oid = GetCustomAttribute($node, "WirelessCenterFrequencyOID");
if (oid == null)
return null; // No OID selected, mark as unsupported
snmp = $node->createSNMPTransport();
if (snmp == null)
abort;
return SNMPGetValue(snmp, oid);
oid = ".1.3.6.1.2.1.1.1.0";
snmp = $node->createSNMPTransport();
if (snmp == null)
abort;
return SNMPGetValue(snmp, oid);
return $node->productName ~= "ePMP3000 \\(FCC\\)";
diff --git a/src/java/netxms-eclipse/Product/nxmc.product b/src/java/netxms-eclipse/Product/nxmc.product
index 2cdd05dee0..79a110983b 100644
--- a/src/java/netxms-eclipse/Product/nxmc.product
+++ b/src/java/netxms-eclipse/Product/nxmc.product
@@ -597,9 +597,9 @@ Copyright (c) 2003-2020 Raden Solutions
<plugin id="org.eclipse.ui.workbench.texteditor.nl_pt_BR" fragment="true"/>
<plugin id="org.eclipse.ui.workbench.texteditor.nl_ru" fragment="true"/>
<plugin id="org.mozilla.javascript"/>
- <plugin id="org.netxms.gef4.zest.core"/>
- <plugin id="org.netxms.gef4.zest.jface"/>
- <plugin id="org.netxms.gef4.zest.layouts"/>
+ <plugin id="org.netxms.gef4.zest.core" version="2.0.6"/>
+ <plugin id="org.netxms.gef4.zest.jface" version="2.0.6"/>
+ <plugin id="org.netxms.gef4.zest.layouts" version="2.0.6"/>
<plugin id="org.netxms.ui.base"/>
<plugin id="org.netxms.ui.eclipse.actionmanager"/>
<plugin id="org.netxms.ui.eclipse.agentmanager"/>