INTERFACE_T¶
Network Interface ID
This topic lists the expressions that are provided by this class.
EQ ( text_t id)
Returns Boolean TRUE if the interface's ID matches the argument. The input string cannot be bigger than 9 characters. If Cluster is enabled then it will support 3-tuple interface ID too [Local-node,controller,unit].
Examples: CLIENT.INTERFACE.ID.EQ("1/1") SERVER.INTERFACE.ID.EQ("LA/1") CLIENT.INTERFACE.ID.EQ("0/1/1") SERVER.INTERFACE.ID.EQ("1/LA/1") CONNECTION.INTF.EQ("1/1")
Parameters (expressions not allowed):
id - Interface ID
Returns: bool_at
NE ( text_t id)
Returns Boolean TRUE if the interface's ID doesn't match the argument. The input string cannot be bigger than 9 characters. If Cluster is enabled then it will support 3-tuple interface ID too [Local-node,controller,unit].
Examples: CLIENT.INTERFACE.ID.NE("1/1") SERVER.INTERFACE.ID.NE("LA/1") CLIENT.INTERFACE.ID.NE("0/1/1") SERVER.INTERFACE.ID.NE("1/LA/1") CONNECTION.INTF.NE("LO/1")
Parameters (expressions not allowed):
id - Interface ID
Returns: bool_at