1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2025-10-15 23:18:51 +02:00

see #2057 detection of loops in branching rules ; see #2124 some error messages appeared multiple times in generated script

This commit is contained in:
Vadim Kurland 2011-02-20 20:12:18 -08:00
parent 344010c873
commit 2b342aa67d
215 changed files with 684 additions and 540 deletions

View File

@ -86,7 +86,7 @@ bool RoutingCompiler_iosacl::PrintRule::processNext()
compiler->output << "! " << endl;
}
string err = rule->getStr(".error_msg");
string err = rule->getCompilerMessage();
if (!err.empty()) compiler->output << "# " << err << endl;
if( rule->getRuleType() != RoutingRule::MultiPath )

View File

@ -78,7 +78,7 @@ bool RoutingCompiler_pix::PrintRule::processNext()
compiler->output << "! " << endl;
}
string err = rule->getStr(".error_msg");
string err = rule->getCompilerMessage();
if (!err.empty()) compiler->output << "# " << err << endl;
if( rule->getRuleType() != RoutingRule::MultiPath )

View File

@ -654,6 +654,9 @@ void CompilerDriver::findImportedRuleSets(Firewall *fw,
RuleSet *branch_ruleset = rule->getBranch();
if (branch_ruleset!=NULL)
{
// qDebug() << "ruleset=" << ruleset->getName().c_str()
// << "branch=" << branch_ruleset->getName().c_str();
map<FWObject*, int> referenced_branch_rulesets;
_findImportedRuleSetsRecursively(
@ -666,12 +669,18 @@ void CompilerDriver::findImportedRuleSets(Firewall *fw,
RuleSet *branch_ruleset = RuleSet::cast(it->first);
int counter = it->second;
// qDebug() << " "
// << "branch=" << branch_ruleset->getName().c_str()
// << "counter=" << counter;
if (counter > 1)
{
QString err("Rule set %1 of firewall %2 has branching rule that loops back to it");
QString err(
"Rule branches to rule set %1 which branches "
"back to it, creating a loop");
warning(ruleset->getParent(), ruleset, rule,
err.arg(ruleset->getName().c_str())
.arg(fw->getName().c_str()).toStdString());
err.arg(branch_ruleset->getName().c_str())
.toStdString());
}
if (branch_ruleset->isChildOf(fw)) continue;
@ -702,6 +711,9 @@ void CompilerDriver::findImportedRuleSets(Firewall *fw,
void CompilerDriver::_findImportedRuleSetsRecursively(
Firewall *fw, RuleSet *branch_ruleset, map<FWObject*, int> &branch_rulesets)
{
// multiple rules in the rule set may branch to the same branch rule set
map<FWObject*, int> local_branch_ruleset_counters;
int c = branch_rulesets[branch_ruleset];
branch_rulesets[branch_ruleset] = ++c;
if (c > 1) return; // we have seen this one already
@ -712,9 +724,12 @@ void CompilerDriver::_findImportedRuleSetsRecursively(
if (rule == NULL) continue; // skip RuleSetOptions object
RuleSet *next_branch_ruleset = rule->getBranch();
if (next_branch_ruleset!=NULL)
if (next_branch_ruleset!=NULL &&
local_branch_ruleset_counters.count(next_branch_ruleset)==0)
{
_findImportedRuleSetsRecursively(fw, next_branch_ruleset, branch_rulesets);
local_branch_ruleset_counters[next_branch_ruleset] = 1;
_findImportedRuleSetsRecursively(
fw, next_branch_ruleset, branch_rulesets);
}
}
}

View File

@ -185,7 +185,7 @@ string NATCompiler_ipt::PrintRule::_printRuleLabel(NATRule *rule)
current_rule_label=rl;
}
string err = rule->getStr(".error_msg");
string err = rule->getCompilerMessage();
if (!err.empty()) res << "# " << err << endl;
return res.str();

View File

@ -204,7 +204,7 @@ string PolicyCompiler_ipt::PrintRule::_printRuleLabel(PolicyRule *rule)
current_rule_label = rl;
string err = rule->getStr(".error_msg");
string err = rule->getCompilerMessage();
if (!err.empty()) res << "# " << err << endl;
return res.str();

View File

@ -193,7 +193,7 @@ bool RoutingCompiler_ipt::PrintRule::processNext()
current_rule_label = rl;
}
string err = rule->getStr(".error_msg");
string err = rule->getCompilerMessage();
if (!err.empty()) compiler->output << "# " << err << endl;
string command_line = RoutingRuleToString(rule);

View File

@ -89,6 +89,7 @@ FWObject& Rule::shallowDuplicate(const FWObject *x,
label = rx->label;
unique_id = rx->unique_id;
abs_rule_number = rx->abs_rule_number;
compiler_message = rx->compiler_message;
return FWObject::shallowDuplicate(x,preserve_id);
}

View File

@ -62,6 +62,10 @@ class Rule : public Group
std::string unique_id;
int abs_rule_number;
/* compilers store warnings and errors associated with this rule here.
*/
std::string compiler_message;
public:
Rule();
@ -79,6 +83,9 @@ class Rule : public Group
void setPosition(int n);
int getPosition() const;
void setCompilerMessage(const std::string &msg) { compiler_message = msg; }
std::string getCompilerMessage() { return compiler_message; }
void disable();
void enable();
bool isDisabled() const;

View File

@ -125,7 +125,8 @@ void BaseCompiler::message(const std::string &level,
{
string str = setLevel(level, stdErrorMessage(fw, ruleset, rule, errstr));
printError(str);
if (rule && Rule::cast(rule)) rule->setStr(".error_msg", str);
Rule *cast_rule = Rule::cast(rule);
if (cast_rule) cast_rule->setCompilerMessage(str);
}
void BaseCompiler::printError(const string &errstr)

View File

@ -1571,7 +1571,7 @@ string Compiler::printComment(Rule *rule, string &prev_rule_label,
}
prev_rule_label = rl;
}
string err = rule->getStr(".error_msg");
string err = rule->getCompilerMessage();
if (!err.empty()) res << prefix << " " << err << endl;
return res.str();
}

View File

@ -112,9 +112,6 @@ bool NATCompiler_pf::PrintRule::processNext()
compiler->output << compiler->printComment(rule, current_rule_label, "#");
// string err = rule->getStr(".error_msg");
// if (!err.empty()) compiler->output << "# " << err << endl;
RuleElementOSrc *osrcrel = rule->getOSrc();
RuleElementODst *odstrel = rule->getODst();
RuleElementTSrc *tsrcrel = rule->getTSrc();

View File

@ -332,9 +332,6 @@ bool PolicyCompiler_ipf::PrintRule::processNext()
compiler->output << compiler->printComment(rule, current_rule_label, "#");
// string err = rule->getStr(".error_msg");
// if (!err.empty()) compiler->output << "# " << err << endl;
RuleElementSrc *srcrel=rule->getSrc();
Address *src =compiler->getFirstSrc(rule); assert(src);
RuleElementDst *dstrel=rule->getDst();

View File

@ -526,9 +526,6 @@ bool PolicyCompiler_ipfw::PrintRule::processNext()
compiler->output << compiler->printComment(rule, current_rule_label, "#");
// string err = rule->getStr(".error_msg");
// if (!err.empty()) compiler->output << "# " << err << endl;
RuleElementSrc *srcrel=rule->getSrc();
Address *src =compiler->getFirstSrc(rule); assert(src);
RuleElementDst *dstrel=rule->getDst();

View File

@ -925,9 +925,6 @@ bool PolicyCompiler_pf::PrintRule::processNext()
compiler->output << compiler->printComment(rule, current_rule_label, "#");
// string err = rule->getStr(".error_msg");
// if (!err.empty()) compiler->output << "# " << err << endl;
RuleElementSrc *srcrel=rule->getSrc();
// Address *src =compiler->getFirstSrc(rule); assert(src);
RuleElementDst *dstrel=rule->getDst();

View File

@ -192,7 +192,7 @@ bool RoutingCompiler_openbsd::PrintRule::processNext()
current_rule_label = rl;
}
string err = rule->getStr(".error_msg");
string err = rule->getCompilerMessage();
if (!err.empty()) compiler->output << "# " << err << endl;
string command_line = RoutingRuleToString(rule);

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:15 2011 PST by vadim
# Generated Sun Feb 20 20:08:49 2011 PST by vadim
#
# files: * cluster1_secuwall-1.fw /etc/cluster1_secuwall-1.fw
#
@ -588,7 +588,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:15 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:49 2011 by vadim"
log "Database was cluster-tests.fwb"
check_tools
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:34 2011 PST by vadim
# Generated Sun Feb 20 20:07:08 2011 PST by vadim
#
# files: * firewall-base-rulesets.fw /etc/fw/firewall-base-rulesets.fw
#
@ -445,7 +445,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:34 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:07:08 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:57 2011 PST by vadim
# Generated Sun Feb 20 20:07:32 2011 PST by vadim
#
# files: * firewall-ipv6-1.fw /etc/firewall-ipv6-1.fw
#
@ -687,7 +687,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:57 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:07:32 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:23:00 2011 PST by vadim
# Generated Sun Feb 20 20:07:34 2011 PST by vadim
#
# files: * firewall-ipv6-2.fw /etc/firewall-ipv6-2.fw
#
@ -930,7 +930,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:23:00 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:07:34 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:23:23 2011 PST by vadim
# Generated Sun Feb 20 20:07:57 2011 PST by vadim
#
# files: * firewall-ipv6-3.fw /etc/firewall-ipv6-3.fw
#
@ -592,7 +592,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:23:23 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:07:57 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:23:48 2011 PST by vadim
# Generated Sun Feb 20 20:08:23 2011 PST by vadim
#
# files: * firewall-ipv6-4-1.fw /etc/firewall-ipv6-4-1.fw
#
@ -539,7 +539,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:23:48 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:23 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:23:26 2011 PST by vadim
# Generated Sun Feb 20 20:08:00 2011 PST by vadim
#
# files: * firewall-ipv6-4.fw /etc/firewall-ipv6-4.fw
#
@ -577,7 +577,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:23:26 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:00 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:23:29 2011 PST by vadim
# Generated Sun Feb 20 20:08:03 2011 PST by vadim
#
# files: * firewall-ipv6-5.fw /etc/firewall-ipv6-5.fw
#
@ -412,7 +412,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:23:29 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:03 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:23:33 2011 PST by vadim
# Generated Sun Feb 20 20:08:07 2011 PST by vadim
#
# files: * firewall-ipv6-6.fw /etc/firewall-ipv6-6.fw
#
@ -399,7 +399,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:23:33 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:07 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:23:37 2011 PST by vadim
# Generated Sun Feb 20 20:08:11 2011 PST by vadim
#
# files: * firewall-ipv6-7.fw /etc/firewall-ipv6-7.fw
#
@ -443,7 +443,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:23:37 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:11 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:23:41 2011 PST by vadim
# Generated Sun Feb 20 20:08:15 2011 PST by vadim
#
# files: * firewall-ipv6-8.fw /etc/firewall-ipv6-8.fw
#
@ -484,7 +484,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:23:41 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:15 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:23:45 2011 PST by vadim
# Generated Sun Feb 20 20:08:19 2011 PST by vadim
#
# files: * firewall-ipv6-ipt-reset-prolog-after-flush.fw /etc/firewall-ipv6-ipt-reset-prolog-after-flush.fw
#
@ -450,7 +450,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:23:45 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:19 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:23:49 2011 PST by vadim
# Generated Sun Feb 20 20:08:23 2011 PST by vadim
#
# files: * firewall-ipv6-ipt-reset-prolog-after-interfaces.fw /etc/firewall-ipv6-ipt-reset-prolog-after-interfaces.fw
#
@ -450,7 +450,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:23:49 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:23 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:23:52 2011 PST by vadim
# Generated Sun Feb 20 20:08:27 2011 PST by vadim
#
# files: * firewall-ipv6-ipt-reset-prolog-top.fw /etc/firewall-ipv6-ipt-reset-prolog-top.fw
#
@ -450,7 +450,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:23:52 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:27 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:23:53 2011 PST by vadim
# Generated Sun Feb 20 20:08:27 2011 PST by vadim
#
# files: * firewall-ipv6-prolog-after-flush.fw /etc/firewall-ipv6-prolog-after-flush.fw
#
@ -420,7 +420,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:23:53 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:27 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:23:57 2011 PST by vadim
# Generated Sun Feb 20 20:08:31 2011 PST by vadim
#
# files: * firewall-ipv6-prolog-after-interfaces.fw /etc/firewall-ipv6-prolog-after-interfaces.fw
#
@ -420,7 +420,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:23:57 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:31 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:23:57 2011 PST by vadim
# Generated Sun Feb 20 20:08:32 2011 PST by vadim
#
# files: * firewall-ipv6-prolog-top.fw /etc/firewall-ipv6-prolog-top.fw
#
@ -420,7 +420,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:23:57 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:32 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:00 2011 PST by vadim
# Generated Sun Feb 20 20:08:35 2011 PST by vadim
#
# files: * firewall-server-1-s.fw /etc/fw/firewall-server-1-s.fw
#
@ -393,7 +393,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:00 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:35 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:19:37 2011 PST by vadim
# Generated Sun Feb 20 20:04:17 2011 PST by vadim
#
# files: * firewall.fw /etc/fw/firewall.fw
#
@ -1341,7 +1341,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:19:37 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:17 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:19:40 2011 PST by vadim
# Generated Sun Feb 20 20:04:19 2011 PST by vadim
#
# files: * firewall1.fw /etc/fw/firewall1.fw
#
@ -1252,7 +1252,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:19:40 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:19 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:19:41 2011 PST by vadim
# Generated Sun Feb 20 20:04:20 2011 PST by vadim
#
# files: * firewall10.fw /etc/fw/firewall10.fw
#
@ -473,7 +473,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:19:41 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:20 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:19:43 2011 PST by vadim
# Generated Sun Feb 20 20:04:22 2011 PST by vadim
#
# files: * firewall11.fw /etc/fw/firewall11.fw
#
@ -589,7 +589,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:19:43 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:22 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:19:44 2011 PST by vadim
# Generated Sun Feb 20 20:04:23 2011 PST by vadim
#
# files: * firewall12.fw /etc/fw/firewall12.fw
#
@ -511,7 +511,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:19:44 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:23 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:19:46 2011 PST by vadim
# Generated Sun Feb 20 20:04:25 2011 PST by vadim
#
# files: * firewall13.fw /etc/fw/firewall13.fw
#
@ -385,7 +385,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:19:46 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:25 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:19:47 2011 PST by vadim
# Generated Sun Feb 20 20:04:27 2011 PST by vadim
#
# files: * firewall14.fw /etc/fw/firewall14.fw
#
@ -404,7 +404,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:19:47 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:27 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:19:49 2011 PST by vadim
# Generated Sun Feb 20 20:04:28 2011 PST by vadim
#
# files: * firewall15.fw /etc/fw/firewall15.fw
#
@ -388,7 +388,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:19:49 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:28 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:19:50 2011 PST by vadim
# Generated Sun Feb 20 20:04:30 2011 PST by vadim
#
# files: * firewall16.fw /etc/fw/firewall16.fw
#
@ -492,7 +492,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:19:50 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:30 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:19:52 2011 PST by vadim
# Generated Sun Feb 20 20:04:31 2011 PST by vadim
#
# files: * firewall17.fw /etc/fw/firewall17.fw
#
@ -471,7 +471,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:19:52 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:31 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:19:53 2011 PST by vadim
# Generated Sun Feb 20 20:04:33 2011 PST by vadim
#
# files: * firewall18.fw /etc/fw/firewall18.fw
#
@ -504,7 +504,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:19:53 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:33 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:19:55 2011 PST by vadim
# Generated Sun Feb 20 20:04:35 2011 PST by vadim
#
# files: * firewall19.fw /etc/fw/firewall19.fw
#
@ -509,7 +509,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:19:55 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:35 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:06 2011 PST by vadim
# Generated Sun Feb 20 20:04:45 2011 PST by vadim
#
# files: * firewall2-1.fw /etc/fw/firewall2-1.fw
#
@ -1420,7 +1420,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:06 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:45 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:10 2011 PST by vadim
# Generated Sun Feb 20 20:04:49 2011 PST by vadim
#
# files: * firewall2-2.fw /etc/fw/firewall2-2.fw
#
@ -1249,7 +1249,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:10 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:49 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:14 2011 PST by vadim
# Generated Sun Feb 20 20:04:53 2011 PST by vadim
#
# files: * firewall2-3.fw /etc/fw/firewall2-3.fw
#
@ -1120,7 +1120,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:14 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:53 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:18 2011 PST by vadim
# Generated Sun Feb 20 20:04:57 2011 PST by vadim
#
# files: * firewall2-4.fw /etc/fw/firewall2-4.fw
#
@ -424,7 +424,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:18 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:57 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:21 2011 PST by vadim
# Generated Sun Feb 20 20:05:00 2011 PST by vadim
#
# files: * firewall2-5.fw /etc/fw/firewall2-5.fw
#
@ -453,7 +453,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:21 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:00 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:33:58 2011 PST by vadim
# Generated Sun Feb 20 20:05:04 2011 PST by vadim
#
# files: * firewall2-6.fw /etc/fw/firewall2-6.fw
#
@ -566,7 +566,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:33:58 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:04 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:29 2011 PST by vadim
# Generated Sun Feb 20 20:05:07 2011 PST by vadim
#
# files: * firewall2-7.fw /etc/fw/firewall2-7.fw
#
@ -424,7 +424,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:29 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:07 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:19:58 2011 PST by vadim
# Generated Sun Feb 20 20:04:37 2011 PST by vadim
#
# files: * firewall2.fw /etc/fw/firewall2.fw
#
@ -1470,7 +1470,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:19:58 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:37 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:01 2011 PST by vadim
# Generated Sun Feb 20 20:04:40 2011 PST by vadim
#
# files: * firewall20-ipv6.fw /etc/fw/firewall20-ipv6.fw
#
@ -456,7 +456,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:01 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:40 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:19:58 2011 PST by vadim
# Generated Sun Feb 20 20:04:38 2011 PST by vadim
#
# files: * firewall20.fw /etc/fw/firewall20.fw
#
@ -674,7 +674,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:19:58 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:38 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:05 2011 PST by vadim
# Generated Sun Feb 20 20:04:44 2011 PST by vadim
#
# files: * firewall21-1.fw /etc/fw/firewall21-1.fw
#
@ -470,7 +470,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:05 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:44 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:02 2011 PST by vadim
# Generated Sun Feb 20 20:04:41 2011 PST by vadim
#
# files: * firewall21.fw /etc/fw/firewall21.fw
#
@ -469,7 +469,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:02 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:41 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:09 2011 PST by vadim
# Generated Sun Feb 20 20:04:47 2011 PST by vadim
#
# files: * firewall22.fw /etc/fw/firewall22.fw
#
@ -390,7 +390,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:09 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:47 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:15 2011 PST by vadim
# Generated Sun Feb 20 20:04:54 2011 PST by vadim
#
# files: * firewall23-1.fw /etc/fw/firewall23-1.fw
#
@ -564,7 +564,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:15 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:54 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:12 2011 PST by vadim
# Generated Sun Feb 20 20:04:51 2011 PST by vadim
#
# files: * firewall23.fw /etc/fw/firewall23.fw
#
@ -476,7 +476,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:12 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:51 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:17 2011 PST by vadim
# Generated Sun Feb 20 20:04:56 2011 PST by vadim
#
# files: * firewall24.fw /etc/fw/firewall24.fw
#
@ -493,7 +493,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:17 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:04:56 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:22 2011 PST by vadim
# Generated Sun Feb 20 20:05:00 2011 PST by vadim
#
# files: * firewall25.fw /etc/fw/firewall25.fw
#
@ -687,7 +687,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:22 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:00 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:25 2011 PST by vadim
# Generated Sun Feb 20 20:05:03 2011 PST by vadim
#
# files: * firewall26.fw /etc/fw/firewall26.fw
#
@ -562,7 +562,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:25 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:03 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:28 2011 PST by vadim
# Generated Sun Feb 20 20:05:06 2011 PST by vadim
#
# files: * firewall27.fw /etc/fw/firewall27.fw
#
@ -546,7 +546,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:28 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:06 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:32 2011 PST by vadim
# Generated Sun Feb 20 20:05:09 2011 PST by vadim
#
# files: * firewall28.fw /etc/fw/firewall28.fw
#
@ -407,7 +407,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:32 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:09 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:32 2011 PST by vadim
# Generated Sun Feb 20 20:05:10 2011 PST by vadim
#
# files: * firewall29.fw /etc/fw/firewall29.fw
#
@ -440,7 +440,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:32 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:10 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:35 2011 PST by vadim
# Generated Sun Feb 20 20:05:13 2011 PST by vadim
#
# files: * firewall3.fw /etc/fw/firewall3.fw
#
@ -578,7 +578,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:35 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:13 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:35 2011 PST by vadim
# Generated Sun Feb 20 20:05:13 2011 PST by vadim
#
# files: * firewall30.fw /etc/fw/firewall30.fw
#
@ -375,7 +375,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:35 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:13 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:38 2011 PST by vadim
# Generated Sun Feb 20 20:05:16 2011 PST by vadim
#
# files: * firewall31.fw /etc/fw/firewall31.fw
#
@ -445,7 +445,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:38 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:16 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:39 2011 PST by vadim
# Generated Sun Feb 20 20:05:17 2011 PST by vadim
#
# files: * firewall32.fw /etc/fw/firewall32.fw
#
@ -416,7 +416,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:39 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:17 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:54 2011 PST by vadim
# Generated Sun Feb 20 20:05:31 2011 PST by vadim
#
# files: * firewall33-1.fw /etc/fw/firewall33-1.fw
#
@ -522,7 +522,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:54 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:31 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:53 2011 PST by vadim
# Generated Sun Feb 20 20:05:31 2011 PST by vadim
#
# files: * firewall33.fw /etc/fw/firewall33.fw
#
@ -571,7 +571,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:53 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:31 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:57 2011 PST by vadim
# Generated Sun Feb 20 20:05:35 2011 PST by vadim
#
# files: * firewall34.fw /etc/fw/firewall34.fw
#
@ -648,7 +648,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:57 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:35 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:20:58 2011 PST by vadim
# Generated Sun Feb 20 20:05:35 2011 PST by vadim
#
# files: * firewall35.fw /etc/fw/firewall35.fw
#
@ -540,7 +540,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:20:58 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:35 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:01 2011 PST by vadim
# Generated Sun Feb 20 20:05:39 2011 PST by vadim
#
# files: * firewall36-1.fw /etc/firewall36-1.fw
#
@ -433,7 +433,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:01 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:39 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:04 2011 PST by vadim
# Generated Sun Feb 20 20:05:41 2011 PST by vadim
#
# files: * firewall36-2.fw /etc/firewall36-2.fw
#
@ -433,7 +433,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:04 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:41 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:01 2011 PST by vadim
# Generated Sun Feb 20 20:05:38 2011 PST by vadim
#
# files: * firewall36.fw /etc/firewall36.fw
#
@ -535,7 +535,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:01 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:38 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:08 2011 PST by vadim
# Generated Sun Feb 20 20:05:45 2011 PST by vadim
#
# files: * firewall37-1.fw /etc/fw/firewall37-1.fw
#
@ -769,7 +769,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:08 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:45 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:16 2011 PST by vadim
# Generated Sun Feb 20 20:05:54 2011 PST by vadim
#
# files: * firewall37.fw /etc/fw/firewall37.fw
#
@ -1049,7 +1049,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:16 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:54 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:10 2011 PST by vadim
# Generated Sun Feb 20 20:05:47 2011 PST by vadim
#
# files: * firewall38.fw /etc/fw/firewall38.fw
#
@ -498,7 +498,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:10 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:47 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:21 2011 PST by vadim
# Generated Sun Feb 20 20:05:55 2011 PST by vadim
#
# files: * firewall39.fw /etc/fw/firewall39.fw
#
@ -14,7 +14,8 @@
# normal script mode (not using iptables-restore)
# firewall39:Policy:14: warning: Rule branches to rule set rule6_branch which branches back to it, creating a loop
# firewall39:rule6_branch:0: warning: Rule branches to rule set Policy which branches back to it, creating a loop
FWBDEBUG=""
@ -624,6 +625,16 @@ script_body() {
$IPTABLES -A rule4_branch -i eth0 -j In_rule4_branch_1
$IPTABLES -A In_rule4_branch_1 -j LOG --log-level info --log-prefix "RULE 1 -- BRANCH "
$IPTABLES -A In_rule4_branch_1 -j rule_4_1_branch
# ================ Table 'filter', rule set rule6_branch
#
# Rule rule6_branch 0 (global)
#
echo "Rule rule6_branch 0 (global)"
#
# firewall39:rule6_branch:0: warning: Rule branches to rule set Policy which branches back to it, creating a loop
$IPTABLES -N rule6_branch
$IPTABLES -N Policy
$IPTABLES -A rule6_branch -j Policy
# ================ Table 'filter', rule set Policy
#
# Rule 0 (global)
@ -797,30 +808,42 @@ script_body() {
#
echo "Rule 14 (global)"
#
$IPTABLES -A INPUT -s 192.168.1.0/24 -j TCPMSS --set-mss 1400
$IPTABLES -A OUTPUT -s 192.168.1.0/24 -j TCPMSS --set-mss 1400
$IPTABLES -A FORWARD -s 192.168.1.0/24 -j TCPMSS --set-mss 1400
# testing loop in branching rules
# firewall39:Policy:14: warning: Rule branches to rule set rule6_branch which branches back to it, creating a loop
$IPTABLES -A INPUT -s 192.168.1.0/24 -j rule6_branch
# firewall39:Policy:14: warning: Rule branches to rule set rule6_branch which branches back to it, creating a loop
$IPTABLES -A OUTPUT -s 192.168.1.0/24 -j rule6_branch
# firewall39:Policy:14: warning: Rule branches to rule set rule6_branch which branches back to it, creating a loop
$IPTABLES -A FORWARD -s 192.168.1.0/24 -j rule6_branch
#
# Rule 15 (global)
#
echo "Rule 15 (global)"
#
$IPTABLES -N RULE_15
$IPTABLES -A INPUT -s 222.222.222.0/24 -j RULE_15
$IPTABLES -A FORWARD -s 222.222.222.0/24 -j RULE_15
$IPTABLES -A RULE_15 -j LOG --log-level info --log-prefix "RULE 15 -- CUSTOM "
$IPTABLES -A RULE_15 -j TARPIT
$IPTABLES -A INPUT -s 192.168.1.0/24 -j TCPMSS --set-mss 1400
$IPTABLES -A OUTPUT -s 192.168.1.0/24 -j TCPMSS --set-mss 1400
$IPTABLES -A FORWARD -s 192.168.1.0/24 -j TCPMSS --set-mss 1400
#
# Rule 16 (global)
#
echo "Rule 16 (global)"
#
$IPTABLES -N RULE_16
$IPTABLES -A OUTPUT -j RULE_16
$IPTABLES -A INPUT -j RULE_16
$IPTABLES -A FORWARD -j RULE_16
$IPTABLES -A RULE_16 -j LOG --log-level info --log-prefix "RULE 16 -- DENY "
$IPTABLES -A RULE_16 -j DROP
$IPTABLES -A INPUT -s 222.222.222.0/24 -j RULE_16
$IPTABLES -A FORWARD -s 222.222.222.0/24 -j RULE_16
$IPTABLES -A RULE_16 -j LOG --log-level info --log-prefix "RULE 16 -- CUSTOM "
$IPTABLES -A RULE_16 -j TARPIT
#
# Rule 17 (global)
#
echo "Rule 17 (global)"
#
$IPTABLES -N RULE_17
$IPTABLES -A OUTPUT -j RULE_17
$IPTABLES -A INPUT -j RULE_17
$IPTABLES -A FORWARD -j RULE_17
$IPTABLES -A RULE_17 -j LOG --log-level info --log-prefix "RULE 17 -- DENY "
$IPTABLES -A RULE_17 -j DROP
}
ip_forward() {
@ -876,7 +899,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:21 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:55 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:20 2011 PST by vadim
# Generated Sun Feb 20 20:05:57 2011 PST by vadim
#
# files: * firewall4.fw /etc/fw/firewall4.fw
#
@ -710,7 +710,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:20 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:57 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:25 2011 PST by vadim
# Generated Sun Feb 20 20:06:01 2011 PST by vadim
#
# files: * firewall40-1.fw /etc/firewall40-1.fw
#
@ -450,7 +450,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:25 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:01 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:26 2011 PST by vadim
# Generated Sun Feb 20 20:06:01 2011 PST by vadim
#
# files: * firewall40-2.fw /etc/firewall40-2.fw
#
@ -437,7 +437,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:26 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:01 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:23 2011 PST by vadim
# Generated Sun Feb 20 20:05:58 2011 PST by vadim
#
# files: * firewall40.fw /etc/firewall40.fw
#
@ -439,7 +439,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:23 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:05:58 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:29 2011 PST by vadim
# Generated Sun Feb 20 20:06:04 2011 PST by vadim
#
# files: * firewall41-1.fw /etc/firewall41-1.fw
#
@ -575,7 +575,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:29 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:04 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:33 2011 PST by vadim
# Generated Sun Feb 20 20:06:09 2011 PST by vadim
#
# files: * firewall41.fw /etc/firewall41.fw
#
@ -456,7 +456,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:33 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:09 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:35 2011 PST by vadim
# Generated Sun Feb 20 20:06:10 2011 PST by vadim
#
# files: * firewall42.fw /etc/fw/firewall42.fw
#
@ -382,7 +382,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:35 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:10 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:36 2011 PST by vadim
# Generated Sun Feb 20 20:06:12 2011 PST by vadim
#
# files: * firewall5.fw /etc/fw/firewall5.fw
#
@ -622,7 +622,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:36 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:12 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:39 2011 PST by vadim
# Generated Sun Feb 20 20:06:14 2011 PST by vadim
#
# files: * firewall50.fw /etc/fw/firewall50.fw
#
@ -407,7 +407,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:39 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:14 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:42 2011 PST by vadim
# Generated Sun Feb 20 20:06:18 2011 PST by vadim
#
# files: * firewall51.fw /etc/fw/firewall51.fw
#
@ -491,7 +491,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:42 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:18 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:42 2011 PST by vadim
# Generated Sun Feb 20 20:06:17 2011 PST by vadim
#
# files: * firewall6.fw /etc/fw/firewall6.fw
#
@ -513,7 +513,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:42 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:17 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:45 2011 PST by vadim
# Generated Sun Feb 20 20:06:20 2011 PST by vadim
#
# files: * firewall60.fw /etc/firewall60.fw
#
@ -419,7 +419,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:45 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:20 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:47 2011 PST by vadim
# Generated Sun Feb 20 20:06:22 2011 PST by vadim
#
# files: * firewall61-1.2.5.fw /etc/firewall61-1.2.5.fw
#
@ -499,7 +499,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:47 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:22 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:50 2011 PST by vadim
# Generated Sun Feb 20 20:06:25 2011 PST by vadim
#
# files: * firewall61-1.2.6.fw /etc/firewall61-1.2.6.fw
#
@ -505,7 +505,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:50 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:25 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:51 2011 PST by vadim
# Generated Sun Feb 20 20:06:26 2011 PST by vadim
#
# files: * firewall61-1.3.x.fw /etc/firewall61-1.3.x.fw
#
@ -492,7 +492,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:51 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:26 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:54 2011 PST by vadim
# Generated Sun Feb 20 20:06:29 2011 PST by vadim
#
# files: * firewall61-1.4.fw /etc/firewall61-1.4.fw
#
@ -493,7 +493,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:54 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:29 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:54 2011 PST by vadim
# Generated Sun Feb 20 20:06:29 2011 PST by vadim
#
# files: * firewall62.fw /etc/firewall62.fw
#
@ -543,7 +543,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:54 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:29 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:58 2011 PST by vadim
# Generated Sun Feb 20 20:06:32 2011 PST by vadim
#
# files: * firewall63.fw /etc/firewall63.fw
#
@ -389,7 +389,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:58 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:32 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:58 2011 PST by vadim
# Generated Sun Feb 20 20:06:33 2011 PST by vadim
#
# files: * firewall7.fw /etc/fw/firewall7.fw
#
@ -473,7 +473,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:21:58 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:33 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:03 2011 PST by vadim
# Generated Sun Feb 20 20:06:37 2011 PST by vadim
#
# files: * firewall70.fw iptables.sh
#
@ -412,7 +412,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:03 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:37 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:03 2011 PST by vadim
# Generated Sun Feb 20 20:06:37 2011 PST by vadim
#
# files: * firewall71.fw /etc/fw/firewall71.fw
#
@ -428,7 +428,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:03 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:37 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:06 2011 PST by vadim
# Generated Sun Feb 20 20:06:40 2011 PST by vadim
#
# files: * firewall72-1.3.x.fw /etc/fw/firewall72-1.3.x.fw
#
@ -555,7 +555,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:06 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:40 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:06 2011 PST by vadim
# Generated Sun Feb 20 20:06:41 2011 PST by vadim
#
# files: * firewall72-1.4.3.fw /etc/fw/firewall72-1.4.3.fw
#
@ -555,7 +555,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:06 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:41 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:10 2011 PST by vadim
# Generated Sun Feb 20 20:06:43 2011 PST by vadim
#
# files: * firewall73.fw /etc/fw/firewall73.fw
#
@ -523,7 +523,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:10 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:43 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:10 2011 PST by vadim
# Generated Sun Feb 20 20:06:44 2011 PST by vadim
#
# files: * firewall74.fw /etc/fw/firewall74.fw
#
@ -375,7 +375,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:10 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:44 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:13 2011 PST by vadim
# Generated Sun Feb 20 20:06:47 2011 PST by vadim
#
# files: * firewall8.fw /etc/fw/firewall8.fw
#
@ -358,7 +358,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:13 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:47 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:14 2011 PST by vadim
# Generated Sun Feb 20 20:06:48 2011 PST by vadim
#
# files: * firewall80.fw /etc/fw/firewall80.fw
#
@ -399,7 +399,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:14 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:48 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:18 2011 PST by vadim
# Generated Sun Feb 20 20:06:51 2011 PST by vadim
#
# files: * firewall81.fw /etc/fw/firewall81.fw
#
@ -419,7 +419,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:18 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:51 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:18 2011 PST by vadim
# Generated Sun Feb 20 20:06:52 2011 PST by vadim
#
# files: * firewall82.fw /etc/firewall82.fw
#
@ -13,7 +13,7 @@
# This firewall has two interfaces. Eth0 faces outside and has a dynamic address; eth1 faces inside.
# Policy includes basic rules to permit unrestricted outbound access and anti-spoofing rules. Access to the firewall is permitted only from internal network and only using SSH. The firewall uses one of the machines on internal network for DNS. Internal network is configured with address 192.168.1.0/255.255.255.0
# firewall82:Policy:0: warning: Rule set Policy of firewall firewall82 has branching rule that loops back to it
# firewall82:Policy:0: warning: Rule branches to rule set Policy_A which branches back to it, creating a loop
FWBDEBUG=""
@ -353,11 +353,11 @@ script_body() {
#
echo "Rule 0 (global)"
#
# firewall82:Policy:0: warning: Rule set Policy of firewall firewall82 has branching rule that loops back to it
# firewall82:Policy:0: warning: Rule branches to rule set Policy_A which branches back to it, creating a loop
$IPTABLES -A OUTPUT -j Policy_A
# firewall82:Policy:0: warning: Rule set Policy of firewall firewall82 has branching rule that loops back to it
# firewall82:Policy:0: warning: Rule branches to rule set Policy_A which branches back to it, creating a loop
$IPTABLES -A INPUT -j Policy_A
# firewall82:Policy:0: warning: Rule set Policy of firewall firewall82 has branching rule that loops back to it
# firewall82:Policy:0: warning: Rule branches to rule set Policy_A which branches back to it, creating a loop
$IPTABLES -A FORWARD -j Policy_A
}
@ -414,7 +414,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:18 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:52 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:22 2011 PST by vadim
# Generated Sun Feb 20 20:06:55 2011 PST by vadim
#
# files: * firewall82_A.fw /etc/fw/firewall82_A.fw
#
@ -12,9 +12,9 @@
#
# this object is used to hold branch rulesets for firewall82
# firewall82_A:Policy_A:1: warning: Rule set Policy_A of firewall firewall82_A has branching rule that loops back to it
# firewall82_A:Policy_A:1: warning: Rule set Policy_A of firewall firewall82_A has branching rule that loops back to it
# firewall82_A:Policy_A:2: warning: Rule set Policy_A of firewall firewall82_A has branching rule that loops back to it
# firewall82_A:Policy_A:1: warning: Rule branches to rule set Policy_A which branches back to it, creating a loop
# firewall82_A:Policy_A:1: warning: Rule branches to rule set Policy which branches back to it, creating a loop
# firewall82_A:Policy_A:2: warning: Rule branches to rule set Policy_A which branches back to it, creating a loop
FWBDEBUG=""
@ -334,22 +334,22 @@ script_body() {
echo "Rule Policy_A 1 (global)"
#
# recursive branching
# firewall82_A:Policy_A:1: warning: Rule set Policy_A of firewall firewall82_A has branching rule that loops back to it
# firewall82_A:Policy_A:1: warning: Rule branches to rule set Policy which branches back to it, creating a loop
$IPTABLES -A OUTPUT -j Policy
# firewall82_A:Policy_A:1: warning: Rule set Policy_A of firewall firewall82_A has branching rule that loops back to it
# firewall82_A:Policy_A:1: warning: Rule branches to rule set Policy which branches back to it, creating a loop
$IPTABLES -A INPUT -j Policy
# firewall82_A:Policy_A:1: warning: Rule set Policy_A of firewall firewall82_A has branching rule that loops back to it
# firewall82_A:Policy_A:1: warning: Rule branches to rule set Policy which branches back to it, creating a loop
$IPTABLES -A FORWARD -j Policy
#
# Rule Policy_A 2 (global)
#
echo "Rule Policy_A 2 (global)"
#
# firewall82_A:Policy_A:2: warning: Rule set Policy_A of firewall firewall82_A has branching rule that loops back to it
# firewall82_A:Policy_A:2: warning: Rule branches to rule set Policy_A which branches back to it, creating a loop
$IPTABLES -A OUTPUT -j Policy_A
# firewall82_A:Policy_A:2: warning: Rule set Policy_A of firewall firewall82_A has branching rule that loops back to it
# firewall82_A:Policy_A:2: warning: Rule branches to rule set Policy_A which branches back to it, creating a loop
$IPTABLES -A INPUT -j Policy_A
# firewall82_A:Policy_A:2: warning: Rule set Policy_A of firewall firewall82_A has branching rule that loops back to it
# firewall82_A:Policy_A:2: warning: Rule branches to rule set Policy_A which branches back to it, creating a loop
$IPTABLES -A FORWARD -j Policy_A
}
@ -406,7 +406,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:22 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:55 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:21 2011 PST by vadim
# Generated Sun Feb 20 20:06:55 2011 PST by vadim
#
# files: * firewall82_B.fw /etc/fw/firewall82_B.fw
#
@ -363,7 +363,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:21 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:55 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:24 2011 PST by vadim
# Generated Sun Feb 20 20:06:58 2011 PST by vadim
#
# files: * firewall9.fw /etc/fw/firewall9.fw
#
@ -633,7 +633,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:24 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:58 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:25 2011 PST by vadim
# Generated Sun Feb 20 20:06:58 2011 PST by vadim
#
# files: * firewall90.fw /etc/fw/firewall90.fw
#
@ -383,7 +383,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:25 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:58 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:28 2011 PST by vadim
# Generated Sun Feb 20 20:07:02 2011 PST by vadim
#
# files: * firewall91.fw /etc/fw/firewall91.fw
#
@ -383,7 +383,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:28 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:07:02 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:29 2011 PST by vadim
# Generated Sun Feb 20 20:07:03 2011 PST by vadim
#
# files: * firewall92.fw /etc/fw/firewall92.fw
#
@ -419,7 +419,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:29 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:07:03 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:22:31 2011 PST by vadim
# Generated Sun Feb 20 20:07:06 2011 PST by vadim
#
# files: * firewall93.fw /etc/fw/firewall93.fw
#
@ -458,7 +458,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:22:31 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:07:06 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:04 2011 PST by vadim
# Generated Sun Feb 20 20:08:38 2011 PST by vadim
#
# files: * fw-A.fw /sw/FWbuilder/fw-A.fw
#
@ -722,7 +722,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:04 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:38 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:01 2011 PST by vadim
# Generated Sun Feb 20 20:08:35 2011 PST by vadim
#
# files: * fw1.fw /etc/fw1.fw
#
@ -519,7 +519,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:01 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:35 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:21:32 2011 PST by vadim
# Generated Sun Feb 20 20:06:07 2011 PST by vadim
#
# files: * fwbuilder.fw /etc/init.d/fwbuilder.fw
#
@ -483,7 +483,7 @@ status_action() {
}
start() {
log "Activating firewall script generated Sun Feb 20 17:21:32 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:06:07 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:16 2011 PST by vadim
# Generated Sun Feb 20 20:08:51 2011 PST by vadim
#
# files: * heartbeat_cluster_1_d_linux-1-d.fw firewall.sh
#
@ -720,7 +720,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:16 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:51 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:17 2011 PST by vadim
# Generated Sun Feb 20 20:08:51 2011 PST by vadim
#
# files: * heartbeat_cluster_1_d_linux-2-d.fw firewall.sh
#
@ -723,7 +723,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:17 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:51 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:15 2011 PST by vadim
# Generated Sun Feb 20 20:08:50 2011 PST by vadim
#
# files: * heartbeat_cluster_1_linux-1.fw /etc/heartbeat_cluster_1_linux-1.fw
#
@ -843,7 +843,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:15 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:50 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:16 2011 PST by vadim
# Generated Sun Feb 20 20:08:50 2011 PST by vadim
#
# files: * heartbeat_cluster_1_linux-2.fw /etc/heartbeat_cluster_1_linux-2.fw
#
@ -741,7 +741,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:16 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:50 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:17 2011 PST by vadim
# Generated Sun Feb 20 20:08:52 2011 PST by vadim
#
# files: * heartbeat_cluster_2_linux-1.fw /etc/heartbeat_cluster_2_linux-1.fw
#
@ -707,7 +707,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:17 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:52 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:18 2011 PST by vadim
# Generated Sun Feb 20 20:08:52 2011 PST by vadim
#
# files: * heartbeat_cluster_2_linux-2.fw /etc/heartbeat_cluster_2_linux-2.fw
#
@ -620,7 +620,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:18 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:52 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:04 2011 PST by vadim
# Generated Sun Feb 20 20:08:38 2011 PST by vadim
#
# files: * host.fw /etc/fw/host.fw
#
@ -422,7 +422,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:04 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:38 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE FWObjectDatabase SYSTEM "fwbuilder.dtd">
<FWObjectDatabase xmlns="http://www.fwbuilder.org/1.0/" version="18" lastModified="1298251959" id="root">
<FWObjectDatabase xmlns="http://www.fwbuilder.org/1.0/" version="18" lastModified="1298254540" id="root">
<Library id="syslib000" color="#d4f8ff" name="Standard" comment="Standard objects" ro="True">
<AnyNetwork id="sysid0" name="Any" comment="Any Network" ro="False" address="0.0.0.0" netmask="0.0.0.0"/>
<AnyIPService id="sysid1" protocol_num="0" name="Any" comment="Any IP Service" ro="False"/>
@ -3887,6 +3887,30 @@
<Interface id="id1908540X19416" dedicated_failover="False" dyn="False" security_level="0" unnum="False" unprotected="False" name="eth1" comment="" ro="False">
<InterfaceOptions/>
</Interface>
<Policy id="id464C29A83999" name="rule0_branch" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="False">
<RuleSetOptions/>
</Policy>
<Policy id="id464C29BA3999" name="rule1_branch" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="False">
<RuleSetOptions/>
</Policy>
<Policy id="id464C29CC3999" name="rule2_branch" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="False">
<RuleSetOptions/>
</Policy>
<Policy id="id464C58AC3999" name="rule3_branch" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="False">
<RuleSetOptions/>
</Policy>
<Policy id="id464C29DE3999" name="rule3_branch" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="False">
<RuleSetOptions/>
</Policy>
<Policy id="id464C58BE3999" name="rule3_branch" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="False">
<RuleSetOptions/>
</Policy>
<Policy id="id464C29F03999" name="rule4_branch" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="False">
<RuleSetOptions/>
</Policy>
<Policy id="id464C2A023999" name="rule5_branch" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="False">
<RuleSetOptions/>
</Policy>
</Library>
<Library id="syslib001" color="#d2ffd0" name="User" comment="User defined objects" ro="False">
<ObjectGroup id="stdid01_1_clusters" name="Clusters" comment="" ro="False"/>
@ -29623,7 +29647,7 @@ echo '%FWBPROMPT%'; sh /tmp/%FWSCRIPT%
<Option name="verify_interfaces">False</Option>
</FirewallOptions>
</Firewall>
<Firewall id="id445DA2F330753" host_OS="linux24" inactive="False" lastCompiled="1272404497" lastInstalled="1146967632" lastModified="1208753886" platform="iptables" version="" name="firewall39" comment="testing branching rules&#10;&#10;normal script mode (not using iptables-restore)" ro="False">
<Firewall id="id445DA2F330753" host_OS="linux24" inactive="False" lastCompiled="1272404497" lastInstalled="1146967632" lastModified="1298254709" platform="iptables" version="" name="firewall39" comment="testing branching rules&#10;&#10;normal script mode (not using iptables-restore)" ro="False">
<NAT id="id445DA35A30753" name="NAT" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
<NATRule id="id445DA35B30753" disabled="False" group="" position="0" action="Translate" comment="">
<OSrc neg="False">
@ -30181,7 +30205,65 @@ echo '%FWBPROMPT%'; sh /tmp/%FWSCRIPT%
<Option name="ulog_nlgroup">1</Option>
</PolicyRuleOptions>
</PolicyRule>
<PolicyRule id="id445DA34230753" disabled="False" group="" log="False" position="14" action="Custom" direction="Both" comment="">
<PolicyRule id="id99075X19289" disabled="False" group="" log="False" position="14" action="Branch" direction="Both" comment="testing loop in branching rules">
<Src neg="False">
<ObjectRef ref="net-Internal_net"/>
</Src>
<Dst neg="False">
<ObjectRef ref="sysid0"/>
</Dst>
<Srv neg="False">
<ServiceRef ref="sysid1"/>
</Srv>
<Itf neg="False">
<ObjectRef ref="sysid0"/>
</Itf>
<When neg="False">
<IntervalRef ref="sysid2"/>
</When>
<PolicyRuleOptions>
<Option name="action_on_reject"></Option>
<Option name="branch_id">id99127X19289</Option>
<Option name="branch_name">rule5_branch</Option>
<Option name="classify_str">1:2</Option>
<Option name="color">#C86E6E</Option>
<Option name="custom_str">-j TCPMSS --set-mss 1400</Option>
<Option name="firewall_is_part_of_any_and_networks"></Option>
<Option name="ipf_route_opt_addr"></Option>
<Option name="ipf_route_opt_if"></Option>
<Option name="ipf_route_option">route_copy_through</Option>
<Option name="ipfw_classify_method">2</Option>
<Option name="ipfw_pipe_method">0</Option>
<Option name="ipfw_pipe_port_num">0</Option>
<Option name="ipfw_pipe_queue_num">0</Option>
<Option name="ipt_branch_in_mangle">False</Option>
<Option name="ipt_continue">False</Option>
<Option name="ipt_gw"></Option>
<Option name="ipt_iif"></Option>
<Option name="ipt_mark_connections">False</Option>
<Option name="ipt_mark_prerouting">False</Option>
<Option name="ipt_oif"></Option>
<Option name="ipt_tee">False</Option>
<Option name="limit_burst">0</Option>
<Option name="limit_suffix"></Option>
<Option name="limit_value">0</Option>
<Option name="log_level"></Option>
<Option name="log_prefix"></Option>
<Option name="pf_classify_str"></Option>
<Option name="pf_classify_terminating">False</Option>
<Option name="pf_fastroute">False</Option>
<Option name="pf_route_load_option">none</Option>
<Option name="pf_route_opt_addr"></Option>
<Option name="pf_route_opt_if"></Option>
<Option name="pf_route_option">route_through</Option>
<Option name="pf_tag_terminating">False</Option>
<Option name="rule_name_accounting"></Option>
<Option name="stateless">True</Option>
<Option name="tagvalue"></Option>
<Option name="ulog_nlgroup">1</Option>
</PolicyRuleOptions>
</PolicyRule>
<PolicyRule id="id445DA34230753" disabled="False" group="" log="False" position="15" action="Custom" direction="Both" comment="">
<Src neg="False">
<ObjectRef ref="net-Internal_net"/>
</Src>
@ -30208,7 +30290,7 @@ echo '%FWBPROMPT%'; sh /tmp/%FWSCRIPT%
<Option name="tagvalue"></Option>
</PolicyRuleOptions>
</PolicyRule>
<PolicyRule id="id451DA7EF4163" disabled="False" group="" log="True" position="15" action="Custom" direction="Both" comment="">
<PolicyRule id="id451DA7EF4163" disabled="False" group="" log="True" position="16" action="Custom" direction="Both" comment="">
<Src neg="False">
<ObjectRef ref="id3CEBFCAE"/>
</Src>
@ -30249,7 +30331,7 @@ echo '%FWBPROMPT%'; sh /tmp/%FWSCRIPT%
<Option name="stateless">True</Option>
</PolicyRuleOptions>
</PolicyRule>
<PolicyRule id="id445DA34E30753" disabled="False" group="" log="True" position="16" action="Deny" direction="Both" comment="">
<PolicyRule id="id445DA34E30753" disabled="False" group="" log="True" position="17" action="Deny" direction="Both" comment="">
<Src neg="False">
<ObjectRef ref="sysid0"/>
</Src>
@ -30517,9 +30599,6 @@ echo '%FWBPROMPT%'; sh /tmp/%FWSCRIPT%
</PolicyRule>
<RuleSetOptions/>
</Policy>
<Policy id="id464C58AC3999" name="rule3_branch" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="False">
<RuleSetOptions/>
</Policy>
<Policy id="id445DCB2E30753" name="rule4_branch" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="False">
<PolicyRule id="id45514D0211228" disabled="False" group="" log="True" position="0" action="Branch" direction="Inbound" comment="">
<Src neg="False">
@ -30632,26 +30711,56 @@ echo '%FWBPROMPT%'; sh /tmp/%FWSCRIPT%
</PolicyRule>
<RuleSetOptions/>
</Policy>
<Policy id="id464C29A83999" name="rule0_branch" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="False">
<RuleSetOptions/>
</Policy>
<Policy id="id464C29BA3999" name="rule1_branch" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="False">
<RuleSetOptions/>
</Policy>
<Policy id="id464C29CC3999" name="rule2_branch" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="False">
<RuleSetOptions/>
</Policy>
<Policy id="id464C29DE3999" name="rule3_branch" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="False">
<RuleSetOptions/>
</Policy>
<Policy id="id464C58BE3999" name="rule3_branch" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="False">
<RuleSetOptions/>
</Policy>
<Policy id="id464C29F03999" name="rule4_branch" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="False">
<RuleSetOptions/>
</Policy>
<Policy id="id464C2A023999" name="rule5_branch" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="False">
<RuleSetOptions/>
<Policy id="id99127X19289" name="rule6_branch" comment="" ro="False" ipv4_rule_set="True" ipv6_rule_set="False" top_rule_set="False">
<PolicyRule id="id99185X19289" disabled="False" group="" log="False" position="0" action="Branch" direction="Both" comment="">
<Src neg="False">
<ObjectRef ref="sysid0"/>
</Src>
<Dst neg="False">
<ObjectRef ref="sysid0"/>
</Dst>
<Srv neg="False">
<ServiceRef ref="sysid1"/>
</Srv>
<Itf neg="False">
<ObjectRef ref="sysid0"/>
</Itf>
<When neg="False">
<IntervalRef ref="sysid2"/>
</When>
<PolicyRuleOptions>
<Option name="action_on_reject"></Option>
<Option name="branch_id">id445DA2F930753</Option>
<Option name="classify_str"></Option>
<Option name="custom_str"></Option>
<Option name="ipf_route_opt_addr"></Option>
<Option name="ipf_route_opt_if"></Option>
<Option name="ipf_route_option">route_through</Option>
<Option name="ipfw_classify_method">2</Option>
<Option name="ipfw_pipe_port_num">0</Option>
<Option name="ipfw_pipe_queue_num">0</Option>
<Option name="ipt_branch_in_mangle">False</Option>
<Option name="ipt_continue">False</Option>
<Option name="ipt_gw"></Option>
<Option name="ipt_iif"></Option>
<Option name="ipt_mark_connections">False</Option>
<Option name="ipt_oif"></Option>
<Option name="ipt_tee">False</Option>
<Option name="pf_classify_str"></Option>
<Option name="pf_classify_terminating">False</Option>
<Option name="pf_fastroute">False</Option>
<Option name="pf_route_load_option">none</Option>
<Option name="pf_route_opt_addr"></Option>
<Option name="pf_route_opt_if"></Option>
<Option name="pf_route_option">none</Option>
<Option name="pf_tag_terminating">False</Option>
<Option name="rule_name_accounting"></Option>
<Option name="stateless">True</Option>
</PolicyRuleOptions>
</PolicyRule>
<RuleSetOptions>
<Option name="mangle_only_rule_set">False</Option>
</RuleSetOptions>
</Policy>
<Routing id="id445DA36A30753" name="Routing" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
<RuleSetOptions/>

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:18 2011 PST by vadim
# Generated Sun Feb 20 20:08:53 2011 PST by vadim
#
# files: * openais_cluster_1_linux-1.fw /etc/openais_cluster_1_linux-1.fw
#
@ -707,7 +707,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:18 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:53 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:19 2011 PST by vadim
# Generated Sun Feb 20 20:08:53 2011 PST by vadim
#
# files: * openais_cluster_1_linux-2.fw /etc/openais_cluster_1_linux-2.fw
#
@ -611,7 +611,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:19 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:53 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 18:08:08 2011 PST by vadim
# Generated Sun Feb 20 20:08:42 2011 PST by vadim
#
# files: * rc.firewall.local /etc/rc.d//rc.firewall.local
#

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:08 2011 PST by vadim
# Generated Sun Feb 20 20:08:42 2011 PST by vadim
#
# files: * rh90.fw /etc/rh90.fw
#
@ -421,7 +421,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:08 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:42 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:18 2011 PST by vadim
# Generated Sun Feb 20 20:08:53 2011 PST by vadim
#
# files: * secuwall_cluster_1_secuwall-1.fw /etc/secuwall_cluster_1_secuwall-1.fw
#
@ -405,7 +405,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:18 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:53 2011 by vadim"
log "Database was cluster-tests.fwb"
check_tools
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:19 2011 PST by vadim
# Generated Sun Feb 20 20:08:53 2011 PST by vadim
#
# files: * server-cluster-1_server-1.fw /etc/fw/server-cluster-1_server-1.fw
#
@ -398,7 +398,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:19 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:53 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:19 2011 PST by vadim
# Generated Sun Feb 20 20:08:54 2011 PST by vadim
#
# files: * server-cluster-1_server-2.fw /etc/fw/server-cluster-1_server-2.fw
#
@ -397,7 +397,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:19 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:54 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:11 2011 PST by vadim
# Generated Sun Feb 20 20:08:46 2011 PST by vadim
#
# files: * test-shadowing-1.fw /etc/test-shadowing-1.fw
#
@ -461,7 +461,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:11 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:46 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:14 2011 PST by vadim
# Generated Sun Feb 20 20:08:49 2011 PST by vadim
#
# files: * test-shadowing-2.fw /etc/test-shadowing-2.fw
#
@ -423,7 +423,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:14 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:49 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:18 2011 PST by vadim
# Generated Sun Feb 20 20:08:52 2011 PST by vadim
#
# files: * test-shadowing-3.fw /etc/test-shadowing-3.fw
#
@ -474,7 +474,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:18 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:52 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:12 2011 PST by vadim
# Generated Sun Feb 20 20:08:47 2011 PST by vadim
#
# files: * test_fw.fw /etc/test_fw.fw
#
@ -570,7 +570,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:12 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:47 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:19 2011 PST by vadim
# Generated Sun Feb 20 20:08:54 2011 PST by vadim
#
# files: * vrrp_cluster_1_linux-1.fw /etc/vrrp_cluster_1_linux-1.fw
#
@ -710,7 +710,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:19 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:54 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:20 2011 PST by vadim
# Generated Sun Feb 20 20:08:54 2011 PST by vadim
#
# files: * vrrp_cluster_1_linux-2.fw /etc/vrrp_cluster_1_linux-2.fw
#
@ -615,7 +615,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:20 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:54 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:19 2011 PST by vadim
# Generated Sun Feb 20 20:08:54 2011 PST by vadim
#
# files: * vrrp_cluster_2_linux-1.fw /etc/vrrp_cluster_2_linux-1.fw
#
@ -642,7 +642,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:19 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:54 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:20 2011 PST by vadim
# Generated Sun Feb 20 20:08:55 2011 PST by vadim
#
# files: * vrrp_cluster_2_linux-2.fw /etc/vrrp_cluster_2_linux-2.fw
#
@ -547,7 +547,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:20 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:55 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -4,7 +4,7 @@
#
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sun Feb 20 17:24:20 2011 PST by vadim
# Generated Sun Feb 20 20:08:55 2011 PST by vadim
#
# files: * vrrp_cluster_2_linux-3.fw /etc/vrrp_cluster_2_linux-3.fw
#
@ -523,7 +523,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sun Feb 20 17:24:20 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:08:55 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:32:02 2011 PST by vadim
# Generated Sun Feb 20 20:10:18 2011 PST by vadim
#
# files: * firewall-base-rulesets.fw /etc/fw/firewall-base-rulesets.fw
# files: firewall-base-rulesets.conf /etc/fw/firewall-base-rulesets.conf
@ -163,7 +163,7 @@ configure_interfaces() {
update_addresses_of_interface "en2 192.168.100.1/0xffffff00" ""
}
log "Activating firewall script generated Sat Feb 19 15:32:02 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:18 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:32:02 2011 PST by vadim
# Generated Sun Feb 20 20:10:18 2011 PST by vadim
#
# files: * firewall-ipv6-1.fw pf-ipv6.fw
# files: firewall-ipv6-1.conf /etc/fw/pf-ipv6.conf
@ -175,7 +175,7 @@ configure_interfaces() {
update_addresses_of_interface "lo ::1/128 127.0.0.1/0xff000000" ""
}
log "Activating firewall script generated Sat Feb 19 15:32:02 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:18 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:32:03 2011 PST by vadim
# Generated Sun Feb 20 20:10:19 2011 PST by vadim
#
# files: * firewall-ipv6-2.fw pf.fw
# files: firewall-ipv6-2.conf pf.conf
@ -179,7 +179,7 @@ configure_interfaces() {
update_addresses_of_interface "lo ::1/128 127.0.0.1/0xff000000" ""
}
log "Activating firewall script generated Sat Feb 19 15:32:03 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:19 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -1,9 +1,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:32:03 2011 PST by vadim
# Generated Sun Feb 20 20:10:19 2011 PST by vadim
#
# files: * firewall-ipv6-3.fw /etc/firewall-ipv6-3.fw
# files: firewall-ipv6-3.conf /etc/firewall-ipv6-3.conf

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:26 2011 PST by vadim
# Generated Sun Feb 20 20:09:41 2011 PST by vadim
#
# files: * firewall.fw /etc/pf.fw
# files: firewall.conf /etc/pf.conf
@ -167,7 +167,7 @@ configure_interfaces() {
update_addresses_of_interface "lo 127.0.0.1/0xff000000" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:26 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:41 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:26 2011 PST by vadim
# Generated Sun Feb 20 20:09:41 2011 PST by vadim
#
# files: * firewall1.fw /etc/fw/firewall1.fw
# files: firewall1.conf /etc/fw/firewall1.conf
@ -76,7 +76,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:26 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:41 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:28 2011 PST by vadim
# Generated Sun Feb 20 20:09:43 2011 PST by vadim
#
# files: * firewall10-1.fw /etc/fw/firewall10-1.fw
# files: firewall10-1.conf /etc/fw/firewall10-1.conf
@ -74,7 +74,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:28 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:43 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:29 2011 PST by vadim
# Generated Sun Feb 20 20:09:44 2011 PST by vadim
#
# files: * firewall10-2.fw /etc/fw/firewall10-2.fw
# files: firewall10-2.conf /etc/fw/firewall10-2.conf
@ -74,7 +74,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:29 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:44 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:30 2011 PST by vadim
# Generated Sun Feb 20 20:09:46 2011 PST by vadim
#
# files: * firewall10-3.fw /etc/fw/firewall10-3.fw
# files: firewall10-3.conf /etc/fw/firewall10-3.conf
@ -76,7 +76,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:30 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:46 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:33 2011 PST by vadim
# Generated Sun Feb 20 20:09:48 2011 PST by vadim
#
# files: * firewall10-4.fw /etc/fw/firewall10-4.fw
# files: firewall10-4.conf /etc/fw/firewall10-4.conf
@ -76,7 +76,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:33 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:48 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:35 2011 PST by vadim
# Generated Sun Feb 20 20:09:50 2011 PST by vadim
#
# files: * firewall10-5.fw /etc/fw/firewall10-5.fw
# files: firewall10-5.conf /etc/fw/firewall10-5.conf
@ -77,7 +77,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:35 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:50 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:36 2011 PST by vadim
# Generated Sun Feb 20 20:09:51 2011 PST by vadim
#
# files: * firewall10-6.fw /etc/fw/firewall10-6.fw
# files: firewall10-6.conf /etc/fw/firewall10-6.conf
@ -77,7 +77,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:36 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:51 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:27 2011 PST by vadim
# Generated Sun Feb 20 20:09:42 2011 PST by vadim
#
# files: * firewall100.fw /etc/fw/pf.fw
# files: firewall100.conf /etc/fw/path\ with\ space/pf.conf
@ -161,7 +161,7 @@ configure_interfaces() {
update_addresses_of_interface "em1 10.1.1.81/0xffffff00" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:27 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:42 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:27 2011 PST by vadim
# Generated Sun Feb 20 20:09:43 2011 PST by vadim
#
# files: * firewall101.fw /etc/fw/pf.fw
# files: firewall101.conf /etc/fw/path\ with\ space/pf.conf
@ -164,7 +164,7 @@ configure_interfaces() {
update_addresses_of_interface "em1 10.1.1.81/0xffffff00" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:27 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:43 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -1,9 +1,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:29 2011 PST by vadim
# Generated Sun Feb 20 20:09:44 2011 PST by vadim
#
# files: * firewall102.fw /etc/fw/pf.fw
# files: firewall102.conf /etc/fw/path\ with\ space/pf.conf

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:31 2011 PST by vadim
# Generated Sun Feb 20 20:09:46 2011 PST by vadim
#
# files: * firewall103-1.fw /etc/fw/pf.fw
# files: firewall103-1.conf /etc/fw/path\ with\ space/pf.conf
@ -388,7 +388,7 @@ configure_interfaces() {
update_addresses_of_interface "bridge0 192.168.1.1/0xffffff00" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:31 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:46 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:32 2011 PST by vadim
# Generated Sun Feb 20 20:09:47 2011 PST by vadim
#
# files: * firewall103-2.fw /etc/fw/pf.fw
# files: firewall103-2.conf /etc/fw/path\ with\ space/pf.conf
@ -388,7 +388,7 @@ configure_interfaces() {
update_addresses_of_interface "bridge0 192.168.1.1/0xffffff00" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:32 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:47 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:30 2011 PST by vadim
# Generated Sun Feb 20 20:09:45 2011 PST by vadim
#
# files: * firewall103.fw /etc/fw/pf.fw
# files: firewall103.conf /etc/fw/path\ with\ space/pf.conf
@ -391,7 +391,7 @@ configure_interfaces() {
update_addresses_of_interface "bridge0 192.168.1.1/0xffffff00" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:30 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:45 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:33 2011 PST by vadim
# Generated Sun Feb 20 20:09:49 2011 PST by vadim
#
# files: * firewall104-1.fw /etc/fw/pf.fw
# files: firewall104-1.conf /etc/fw/path\ with\ space/pf.conf
@ -387,7 +387,7 @@ configure_interfaces() {
$IFCONFIG bridge0 -stp em3
}
log "Activating firewall script generated Sat Feb 19 15:31:33 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:49 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:32 2011 PST by vadim
# Generated Sun Feb 20 20:09:47 2011 PST by vadim
#
# files: * firewall104.fw /etc/fw/pf.fw
# files: firewall104.conf /etc/fw/path\ with\ space/pf.conf
@ -390,7 +390,7 @@ configure_interfaces() {
$IFCONFIG bridge0 stp em3
}
log "Activating firewall script generated Sat Feb 19 15:31:32 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:47 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -1,9 +1,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:34 2011 PST by vadim
# Generated Sun Feb 20 20:09:49 2011 PST by vadim
#
# files: * firewall105.fw /etc/fw/pf.fw
# files: firewall105.conf /etc/fw/path\ with\ space/pf.conf

View File

@ -1,9 +1,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:35 2011 PST by vadim
# Generated Sun Feb 20 20:09:50 2011 PST by vadim
#
# files: * firewall106.fw /etc/fw/pf.fw
# files: firewall106.conf /etc/fw/path\ with\ space/pf.conf

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:36 2011 PST by vadim
# Generated Sun Feb 20 20:09:51 2011 PST by vadim
#
# files: * firewall107.fw /etc/fw/pf.fw
# files: firewall107.conf /etc/fw/path\ with\ space/pf.conf
@ -389,7 +389,7 @@ configure_interfaces() {
update_addresses_of_interface "vlan102 192.168.102.1/0xffffff00" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:36 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:51 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -1,9 +1,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:37 2011 PST by vadim
# Generated Sun Feb 20 20:09:52 2011 PST by vadim
#
# files: * firewall108.fw /etc/fw/pf.fw
# files: firewall108.conf /etc/fw/path\ with\ space/pf.conf

View File

@ -1,9 +1,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:38 2011 PST by vadim
# Generated Sun Feb 20 20:09:53 2011 PST by vadim
#
# files: * firewall109-1.fw /etc/fw/pf.fw
# files: firewall109-1.conf /etc/fw/path\ with\ space/pf.conf

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:39 2011 PST by vadim
# Generated Sun Feb 20 20:09:54 2011 PST by vadim
#
# files: * firewall109-2.fw /etc/fw/pf.fw
# files: firewall109-2.conf /etc/fw/path\ with\ space/pf.conf
@ -394,7 +394,7 @@ configure_interfaces() {
update_addresses_of_interface "bridge0 192.168.1.1/0xffffff00" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:39 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:54 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -1,9 +1,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:39 2011 PST by vadim
# Generated Sun Feb 20 20:09:55 2011 PST by vadim
#
# files: * firewall109-3.fw /etc/fw/pf.fw
# files: firewall109-3.conf /etc/fw/path\ with\ space/pf.conf

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:37 2011 PST by vadim
# Generated Sun Feb 20 20:09:53 2011 PST by vadim
#
# files: * firewall109.fw /etc/fw/pf.fw
# files: firewall109.conf /etc/fw/path\ with\ space/pf.conf
@ -395,7 +395,7 @@ configure_interfaces() {
update_addresses_of_interface "bridge0 192.168.1.1/0xffffff00" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:37 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:53 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:40 2011 PST by vadim
# Generated Sun Feb 20 20:09:55 2011 PST by vadim
#
# files: * firewall11.fw /etc/firewall11.fw
# files: firewall11.conf /etc/firewall11.conf
@ -77,7 +77,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:40 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:55 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:40 2011 PST by vadim
# Generated Sun Feb 20 20:09:56 2011 PST by vadim
#
# files: * firewall110.fw /etc/fw/firewall110.fw
# files: firewall110.conf /etc/fw/firewall110.conf
@ -76,7 +76,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:40 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:56 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:41 2011 PST by vadim
# Generated Sun Feb 20 20:09:56 2011 PST by vadim
#
# files: * firewall12.fw /etc/fw/firewall12.fw
# files: firewall12.conf /etc/fw/firewall12.conf
@ -159,7 +159,7 @@ configure_interfaces() {
update_addresses_of_interface "lo0 127.0.0.1/0xff000000" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:41 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:56 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:42 2011 PST by vadim
# Generated Sun Feb 20 20:09:57 2011 PST by vadim
#
# files: * firewall13.fw /etc/fw/firewall13.fw
# files: firewall13.conf /etc/fw/firewall13.conf
@ -88,7 +88,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:42 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:57 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:43 2011 PST by vadim
# Generated Sun Feb 20 20:09:58 2011 PST by vadim
#
# files: * firewall14-1.fw /etc/firewall14-1.fw
# files: firewall14-1.conf /etc/firewall14-1.conf
@ -242,7 +242,7 @@ configure_interfaces() {
update_addresses_of_interface "vlan103 10.100.103.1/0xffffff00" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:43 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:58 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:42 2011 PST by vadim
# Generated Sun Feb 20 20:09:57 2011 PST by vadim
#
# files: * firewall14.fw /etc/firewall14.fw
# files: firewall14.conf /etc/firewall14.conf
@ -242,7 +242,7 @@ configure_interfaces() {
update_addresses_of_interface "vlan103 10.100.103.1/0xffffff00" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:42 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:57 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:45 2011 PST by vadim
# Generated Sun Feb 20 20:10:00 2011 PST by vadim
#
# files: * firewall2-1.fw /etc/fw/firewall2-1.fw
# files: firewall2-1.conf /etc/fw/firewall2-1.conf
@ -13,7 +13,7 @@
#
# testing different errors in NATCompiler_pf::VerifyRules
# firewall2-1:NAT:17: warning: Rule set NAT of firewall firewall2-1 has branching rule that loops back to it
# firewall2-1:NAT:17: warning: Rule branches to rule set NAT which branches back to it, creating a loop
# firewall2-1:NAT:1: error: Negation in original service is not supported.
# firewall2-1:NAT:2: error: Can not translate 'any' into a specific service.
@ -88,7 +88,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:45 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:00 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:46 2011 PST by vadim
# Generated Sun Feb 20 20:10:02 2011 PST by vadim
#
# files: * firewall2-6.fw /etc/firewall2-6.fw
# files: firewall2-6.conf /etc/firewall2-6.conf
@ -164,7 +164,7 @@ configure_interfaces() {
update_addresses_of_interface "lo 127.0.0.1/0xff000000" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:46 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:02 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:43 2011 PST by vadim
# Generated Sun Feb 20 20:09:59 2011 PST by vadim
#
# files: * firewall2.fw /etc/fw/firewall2.fw
# files: firewall2.conf /etc/fw/firewall2.conf
@ -73,7 +73,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:43 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:59 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:44 2011 PST by vadim
# Generated Sun Feb 20 20:09:59 2011 PST by vadim
#
# files: * firewall20.fw /etc/fw/firewall20.fw
# files: firewall20.conf /etc/fw/firewall20.conf
@ -73,7 +73,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:44 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:09:59 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:45 2011 PST by vadim
# Generated Sun Feb 20 20:10:00 2011 PST by vadim
#
# files: * firewall21.fw /etc/fw/firewall21.fw
# files: firewall21.conf /etc/fw/firewall21.conf
@ -81,7 +81,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:45 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:00 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:46 2011 PST by vadim
# Generated Sun Feb 20 20:10:01 2011 PST by vadim
#
# files: * firewall22.fw /etc/fw/firewall22.fw
# files: firewall22.conf /etc/fw/firewall22.conf
@ -80,7 +80,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:46 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:01 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:47 2011 PST by vadim
# Generated Sun Feb 20 20:10:03 2011 PST by vadim
#
# files: * firewall3.fw /etc/firewall3.fw
# files: firewall3.conf /etc/firewall3.conf
@ -159,7 +159,7 @@ configure_interfaces() {
update_addresses_of_interface "lo 127.0.0.1/0xff000000" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:47 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:03 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:48 2011 PST by vadim
# Generated Sun Feb 20 20:10:03 2011 PST by vadim
#
# files: * firewall33.fw /etc/fw/firewall33.fw
# files: firewall33.conf /etc/fw/firewall33.conf
@ -162,7 +162,7 @@ configure_interfaces() {
update_addresses_of_interface "lo 127.0.0.1/0xff000000" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:48 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:03 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:48 2011 PST by vadim
# Generated Sun Feb 20 20:10:04 2011 PST by vadim
#
# files: * firewall34.fw /etc/fw/firewall34.fw
# files: firewall34.conf /etc/fw/firewall34.conf
@ -158,7 +158,7 @@ configure_interfaces() {
update_addresses_of_interface "lo 127.0.0.1/0xff000000" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:48 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:04 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:49 2011 PST by vadim
# Generated Sun Feb 20 20:10:04 2011 PST by vadim
#
# files: * firewall38.fw /etc/fw/firewall38.fw
# files: firewall38.conf /etc/fw/firewall38.conf
@ -76,7 +76,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:49 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:04 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:50 2011 PST by vadim
# Generated Sun Feb 20 20:10:06 2011 PST by vadim
#
# files: * firewall39.fw pf.fw
# files: firewall39.conf pf.conf
@ -79,7 +79,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:50 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:06 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:50 2011 PST by vadim
# Generated Sun Feb 20 20:10:06 2011 PST by vadim
#
# files: * firewall4.fw pf.fw
# files: firewall4.conf /etc/fw/pf.conf
@ -77,7 +77,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:50 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:06 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:51 2011 PST by vadim
# Generated Sun Feb 20 20:10:08 2011 PST by vadim
#
# files: * firewall40-1.fw /etc/firewall40-1.fw
# files: firewall40-1.conf /etc/firewall40-1.conf
@ -176,7 +176,7 @@ configure_interfaces() {
update_addresses_of_interface "lo0 127.0.0.1/0xff000000" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:51 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:08 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:51 2011 PST by vadim
# Generated Sun Feb 20 20:10:07 2011 PST by vadim
#
# files: * firewall40.fw /etc/firewall40.fw
# files: firewall40.conf /etc/firewall40.conf
@ -160,7 +160,7 @@ configure_interfaces() {
update_addresses_of_interface "lo0 127.0.0.1/0xff000000" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:51 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:07 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:52 2011 PST by vadim
# Generated Sun Feb 20 20:10:08 2011 PST by vadim
#
# files: * firewall41.fw /etc/firewall41.fw
# files: firewall41.conf /etc/firewall41.conf
@ -163,7 +163,7 @@ configure_interfaces() {
update_addresses_of_interface "eth1 2.2.2.2/0xffffff00" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:52 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:08 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:53 2011 PST by vadim
# Generated Sun Feb 20 20:10:09 2011 PST by vadim
#
# files: * firewall5.fw /etc/fw/firewall5.fw
# files: firewall5.conf /etc/fw/firewall5.conf
@ -77,7 +77,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:53 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:09 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:54 2011 PST by vadim
# Generated Sun Feb 20 20:10:10 2011 PST by vadim
#
# files: * firewall51.fw /etc/fw/firewall51.fw
# files: firewall51.conf /etc/fw/firewall51.conf
@ -80,7 +80,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:54 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:10 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:54 2011 PST by vadim
# Generated Sun Feb 20 20:10:10 2011 PST by vadim
#
# files: * firewall6.fw /etc/fw/firewall6.fw
# files: firewall6.conf /etc/fw/firewall6.conf
@ -73,7 +73,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:54 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:10 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:55 2011 PST by vadim
# Generated Sun Feb 20 20:10:11 2011 PST by vadim
#
# files: * firewall62.fw /etc/firewall62.fw
# files: firewall62.conf /etc/firewall62.conf
@ -185,7 +185,7 @@ configure_interfaces() {
update_addresses_of_interface "en1 222.222.222.222/0xffffff00" ""
}
log "Activating firewall script generated Sat Feb 19 15:31:55 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:11 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:55 2011 PST by vadim
# Generated Sun Feb 20 20:10:11 2011 PST by vadim
#
# files: * firewall63.fw /etc/fw/firewall63.fw
# files: firewall63.conf /etc/fw/firewall63.conf
@ -77,7 +77,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:55 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:11 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:56 2011 PST by vadim
# Generated Sun Feb 20 20:10:12 2011 PST by vadim
#
# files: * firewall7.fw /etc/fw/firewall7.fw
# files: firewall7.conf /etc/fw/firewall7.conf
@ -73,7 +73,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:56 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:12 2011 by vadim"
set_kernel_vars
configure_interfaces

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_pf v4.2.0.3482
# Firewall Builder fwb_pf v4.2.0.3483
#
# Generated Sat Feb 19 15:31:57 2011 PST by vadim
# Generated Sun Feb 20 20:10:13 2011 PST by vadim
#
# files: * firewall70.fw /etc/fw/firewall70.fw
# files: firewall70.conf /etc/fw/firewall70.conf
@ -82,7 +82,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Sat Feb 19 15:31:57 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 20:10:13 2011 by vadim"
set_kernel_vars
configure_interfaces

Some files were not shown because too many files have changed in this diff Show More