NXSL:SetInterfaceExpectedState

Revision as of 20:30, 20 February 2013 by Victor (talk | contribs) (Created page with "__NOTOC__ Set expected state for given interface. '''Since:''' 1.2.6 == Syntax == SetInterfaceExpectedState(''interface'', ''state''); == Parameters == :{| |- | ''interf...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Set expected state for given interface.

Since: 1.2.6

Syntax

SetInterfaceExpectedState(interface, state);


Parameters

interface Interface object. Can be obtained using GetNodeInterfaces or GetInterfaceObject.
state New expected state for interface. Can be specified as integer code or state name. Possible values are:
Code Name
0 UP
1 DOWN
2 IGNORE


Return Value

None.


Examples

// Set expected state to "ignore" for all interfaces of given node
interfaces = GetNodeInterfaces($node);
foreach(i : interfaces)
{
	SetInterfaceExpectedState(i, "IGNORE");
}