Hi,
are those nodes related somehow (proxy, source node for DCI, same zone)?
Best regards,
Victor
are those nodes related somehow (proxy, source node for DCI, same zone)?
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
snmp = CreateSNMPTransport($node);
if (snmp == null)
return false; // node does not support SNMP or transport cannot be created
ifName = SNMPGetValue(snmp, ".1.3.6.1.2.1.2.2.1.2." . $1);
if (ifName == null)
return false; // cannot read from node
ifXName = SNMPGetValue(snmp, ".1.3.6.1.2.1.31.1.1.1.18." . $1);
if (ifXName != null)
{
ifName .= " " . ifXName;
}
if (ifName ~= "Loopback.*") {
return %(false, $1, ifName);
} else {
return %(true, $1, ifName);
}