The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Farly::Rules - Convert a firewall rule configuration into a raw rule set

DESCRIPTION

Farly::Rules converts a firewall rule configuration into a raw rule set. The raw ruleset is an Object::KVC::List<Object::KVC::Hash> containing all firewall rules.

A raw rule set has no references to other firewall objects. The expanded firewall rule is for specific packet to firewall rule matching.

METHODS

new()

The constructor. The firewall configuration is provided.

  $rule_expander = Farly::Rules->new( <Object::KVC::List> );

expand_all()

Returns an Object::KVC::List<Object::KVC::Hash> container of all raw expanded firewall rules in the current Farly firewall model.

  $expanded_ruleset = $rule_expander->expand_all();

COPYRIGHT AND LICENCE

Farly::Rules Copyright (C) 2012 Trystan Johnson

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.