Class: IControl::Networking::FilterAction

Inherits:
Base::Enumeration
  • Object
show all
Defined in:
lib/icontrol/networking.rb,
lib/icontrol/networking.rb

Overview

An enumeration of filter actions.

Constant Summary collapse

FILTER_ACTION_NONE =

Invalid state.

:FILTER_ACTION_NONE
FILTER_ACTION_ACCEPT =

Accept the packet.

:FILTER_ACTION_ACCEPT
FILTER_ACTION_DISCARD =

Drop the packet.

:FILTER_ACTION_DISCARD
FILTER_ACTION_REJECT =

Drop the packet and return an ICMP response to the sender indicating the packet was refused .

:FILTER_ACTION_REJECT
FILTER_ACTION_CONTINUE =

No action. It can be used for pure accounting or logging purposes without making a decision on how to handle the traffic. Traffic matching this action will continue to be evaluated by the filter rule list, starting with the next rule in the list.

:FILTER_ACTION_CONTINUE