Difference between revisions of "NXSL:SetInterfaceExpectedState"
Jump to navigation
Jump to search
(Created page with "__NOTOC__ Set expected state for given interface. '''Since:''' 1.2.6 == Syntax == SetInterfaceExpectedState(''interface'', ''state''); == Parameters == :{| |- | ''interf...") |
(No difference)
|
Revision as of 18:30, 20 February 2013
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"); }