Hi,
what you get if you run nxsnmpget on OID .1.3.6.1.2.1.1.2.0 from command line?
Best regards,
Victor
what you get if you run nxsnmpget on OID .1.3.6.1.2.1.1.2.0 from command line?
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
println($node->sysDescription);
if ($node->sysDescription ~= "^DES|^D-Link DES-3028")
{
println "Node passed filter";
foreach(i : GetNodeInterfaces($node))
{
if (i->slot == 1 && i->port <= 24)
{
SetInterfaceExpectedState(i, "IGNORE");
}
else if (i->port >= 25 && i->port <= 28 && i->slot == 1)
{
i->setStatusPropagation(4,1,2,3,3);
}
}
}
if (rindex($1,":")>0)
{
type = AgentReadParameter($node, "FileSystem.Type(" . $1 . ")");
// exclude CDs:
return (value != null) && (value != "CDFS");
// if only NTFS systems are of interest (usual situation):
// return value == "NTFS";
}
return false;