1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-21 10:47:16 +01:00

fixes #153 Deprecate Rule::getInterfaceStr() fixes #2123 deprecate rule processor convertInterfaceIdToStr

This commit is contained in:
Vadim Kurland 2011-02-20 17:27:24 -08:00
parent 926db9b942
commit 6f5f1ac075
169 changed files with 819 additions and 584 deletions

View File

@ -448,6 +448,11 @@ void PolicyCompiler_pix::compile()
add( new Begin ("Detecting rule shadowing" ));
add( new printTotalNumberOfRules ( ));
add( new expandGroupsInItf("expand groups in Interface" ));
add( new replaceClusterInterfaceInItf(
"replace cluster interfaces with member interfaces in "
"the Interface rule element"));
add( new ItfNegation( "process negation in Itf" ));
add( new InterfacePolicyRules("process interface policy rules and "
"store interface ids"));

View File

@ -2561,7 +2561,6 @@ void NATCompiler_ipt::compile()
add( new dynamicInterfaceInODst("split if dynamic interface in ODst") );
add( new dynamicInterfaceInTSrc(
"set target if dynamic interface in TSrc" ) );
//add( new convertInterfaceIdToStr("prepare interface assignments") );
add( new ConvertToAtomicForItfInb("convert to atomic for inbound interface") );
add( new ConvertToAtomicForItfOutb("convert to atomic for outbound interface"));

View File

@ -4435,7 +4435,7 @@ void PolicyCompiler_ipt::compile()
add( new SkipActionContinueWithNoLogging(
"drop rules with action Continue") );
add( new convertInterfaceIdToStr("prepare interface assignments") );
add( new optimize3("optimization 3") );
add( new optimizeForMinusIOPlus("optimize for '-i +' / '-o +'") );

View File

@ -89,13 +89,6 @@ class Rule : public Group
bool isHidden() const { return hidden; }
void setHidden(bool f) { hidden=f; }
int getInterfaceId() const { return getInt("interface_id"); }
void setInterfaceId(int iface_id) { setInt("interface_id", iface_id); }
std::string getInterfaceStr() const { return getStr("interface_str"); }
void setInterfaceStr(const std::string &iface_str)
{ setStr("interface_str", iface_str); }
std::string getUniqueId() const { return unique_id; }
void setUniqueId(const std::string &str) { unique_id=str; }

View File

@ -324,8 +324,16 @@ void Compiler::_expand_addr_recursive(Rule *rule, FWObject *s,
list<FWObject*> &ol,
bool expand_cluster_interfaces_fully)
{
Interface *rule_iface = Interface::cast(dbcopy->findInIndex(rule->getInterfaceId()));
bool on_loopback= ( rule_iface && rule_iface->isLoopback() );
// Interface *rule_iface = Interface::cast(dbcopy->findInIndex(rule->getInterfaceId()));
bool on_loopback = false;
if (PolicyRule::isA(rule))
{
RuleElement *intf_re = PolicyRule::cast(rule)->getItf();
Interface *rule_iface =
Interface::cast(FWObjectReference::getObject(intf_re->front()));
on_loopback = ( rule_iface && rule_iface->isLoopback() );
}
list<FWObject*> addrlist;
@ -389,10 +397,12 @@ void Compiler::_expand_addr_recursive(Rule *rule, FWObject *s,
if (i2itf->isLoopback())
{
if (RuleElement::cast(s) || on_loopback)
_expand_interface(rule, i2itf, ol, expand_cluster_interfaces_fully);
_expand_interface(
rule, i2itf, ol, expand_cluster_interfaces_fully);
} else
// this is not a loopback interface
_expand_interface(rule, i2itf, ol, expand_cluster_interfaces_fully);
_expand_interface(
rule, i2itf, ol, expand_cluster_interfaces_fully);
continue;
}
@ -767,24 +777,6 @@ bool Compiler::simplePrintProgress::processNext()
return true;
}
bool Compiler::convertInterfaceIdToStr::processNext()
{
Rule *rule=prev_processor->getNextRule(); if (rule==NULL) return false;
if (rule->getInterfaceStr().empty())
{
FWObject *iface = compiler->dbcopy->findInIndex(rule->getInterfaceId());
string iface_name= (iface!=NULL) ? iface->getName() : "";
rule->setInterfaceStr( iface_name );
} else
{
if (rule->getInterfaceStr()=="nil") rule->setInterfaceStr("");
}
tmp_queue.push_back(rule);
return true;
}
/**
* re_type can be either RuleElementSrc::TYPENAME or RuleElementDst::TYPENAME
* or some other rule element

View File

@ -782,16 +782,6 @@ protected:
/**
* prepare interface string
*/
class convertInterfaceIdToStr : public BasicRuleProcessor
{
public:
convertInterfaceIdToStr(const std::string &n) : BasicRuleProcessor(n) {}
virtual bool processNext();
};
/**
* prints rule in some universal format (close to that visible
* to user in the GUI). Used for debugging purposes

View File

@ -575,27 +575,42 @@ bool Compiler::checkForShadowing(const Address &o1,const Address &o2)
bool Compiler::intersect(PolicyRule &r1, PolicyRule &r2)
{
string act1=r1.getActionAsString();
string act2=r2.getActionAsString();
string act1 = r1.getActionAsString();
string act2 = r2.getActionAsString();
bool res_act;
res_act=(act1=="Continue" || act2=="Continue" || act1==act2);
res_act = (act1=="Continue" || act2=="Continue" || act1==act2);
if (res_act==false) return false;
int iface1 = r1.getInterfaceId();
int iface2 = r2.getInterfaceId();
RuleElementItf *intf1_re = r1.getItf();
FWObject *rule1_iface = FWObjectReference::getObject(intf1_re->front());
int iface1 = rule1_iface->getId();
bool res_iface;
res_iface=(iface1==-1 || iface2==-1 || iface1==iface2);
if (res_iface==false) return false;
RuleElementItf *intf2_re = r2.getItf();
FWObject *rule2_iface = FWObjectReference::getObject(intf2_re->front());
int iface2 = rule2_iface->getId();
vector<FWObject*> v1=_find_obj_intersection( getFirstSrc(&r1) , getFirstSrc(&r2) );
// int iface1 = r1.getInterfaceId();
// int iface2 = r2.getInterfaceId();
// bool res_iface;
// res_iface = (intf1_re->isAny() || intf2_re->isAny() || iface1==iface2);
// if (res_iface==false) return false;
// if both rules have interfaces and these interfaces are different, they
// cant intersect
if ( ! intf1_re->isAny() && ! intf2_re->isAny() && iface1!=iface2) return false;
vector<FWObject*> v1 =
_find_obj_intersection( getFirstSrc(&r1) , getFirstSrc(&r2) );
if (v1.empty()) return false;
vector<FWObject*> v2=_find_obj_intersection( getFirstDst(&r1) , getFirstDst(&r2) );
vector<FWObject*> v2 =
_find_obj_intersection( getFirstDst(&r1) , getFirstDst(&r2) );
if (v2.empty()) return false;
vector<FWObject*> v3=_find_srv_intersection( getFirstSrv(&r1) , getFirstSrv(&r2) );
vector<FWObject*> v3 =
_find_srv_intersection( getFirstSrv(&r1) , getFirstSrv(&r2) );
if (v3.empty()) return false;
return true;
@ -604,8 +619,8 @@ bool Compiler::intersect(PolicyRule &r1, PolicyRule &r2)
void Compiler::getIntersection(PolicyRule &r1, PolicyRule &r2, PolicyRule &res)
{
string act1=r1.getActionAsString();
string act2=r2.getActionAsString();
string act1 = r1.getActionAsString();
string act2 = r2.getActionAsString();
/*
* "CONTINUE" is "broad" action, so chose another one, whatever it is
@ -616,23 +631,34 @@ void Compiler::getIntersection(PolicyRule &r1, PolicyRule &r2, PolicyRule &res)
string any_id;
// FWObject *any;
RuleElementSrc *nsrc=res.getSrc();
RuleElementSrc *nsrc = res.getSrc();
nsrc->clearChildren();
RuleElementDst *ndst=res.getDst();
RuleElementDst *ndst = res.getDst();
ndst->clearChildren();
RuleElementSrv *nsrv=res.getSrv();
RuleElementSrv *nsrv = res.getSrv();
nsrv->clearChildren();
if (r1.getInterfaceId()!=r2.getInterfaceId()) return ;
RuleElementItf *intf_re = r1.getItf();
FWObject *rule1_iface = FWObjectReference::getObject(intf_re->front());
int iface1 = rule1_iface->getId();
string lbl="'"+r1.getLabel()+"' & '"+r2.getLabel()+"'";
intf_re = r2.getItf();
FWObject *rule2_iface = FWObjectReference::getObject(intf_re->front());
int iface2 = rule2_iface->getId();
if (iface1 != iface2) return ;
string lbl = "'" + r1.getLabel() + "' & '" + r2.getLabel() + "'";
res.setLabel(lbl);
vector<FWObject*> v1=_find_obj_intersection( getFirstSrc(&r1) , getFirstSrc(&r2) );
vector<FWObject*> v2=_find_obj_intersection( getFirstDst(&r1) , getFirstDst(&r2) );
vector<FWObject*> v3=_find_srv_intersection( getFirstSrv(&r1) , getFirstSrv(&r2) );
vector<FWObject*> v1 =
_find_obj_intersection( getFirstSrc(&r1) , getFirstSrc(&r2) );
vector<FWObject*> v2 =
_find_obj_intersection( getFirstDst(&r1) , getFirstDst(&r2) );
vector<FWObject*> v3 =
_find_srv_intersection( getFirstSrv(&r1) , getFirstSrv(&r2) );
for (vector<FWObject*>::iterator i1=v1.begin(); i1!=v1.end(); ++i1)
nsrc->addRef(*i1);

View File

@ -93,7 +93,6 @@ int NATCompiler::prolog()
for (FWObject::iterator i=ruleset->begin(); i!=ruleset->end(); i++)
{
Rule *r= Rule::cast(*i);
if (r == NULL) continue; // skip RuleSetOptions object
@ -108,7 +107,8 @@ int NATCompiler::prolog()
*/
//if (r->isDisabled()) continue;
r->setInterfaceId(-1);
//r->setInterfaceId(-1);
r->setLabel( createRuleLabel(label_prefix, "NAT", r->getPosition()) );
r->setAbsRuleNumber(global_num); global_num++;
r->setUniqueId( FWObjectDatabase::getStringId(r->getId()) );

View File

@ -300,10 +300,16 @@ bool PolicyCompiler::checkForShadowing(PolicyRule &r1, PolicyRule &r2)
*/
bool PolicyCompiler::checkInterfacesForShadowing(PolicyRule &r1, PolicyRule &r2)
{
int intf1_id = r1.getInterfaceId();
int intf2_id = r2.getInterfaceId();
RuleElementItf *intf1_re = r1.getItf();
FWObject *rule1_iface = FWObjectReference::getObject(intf1_re->front());
if (intf2_id == -1) return true; // "eth0" -- "all" or "all" -- "all"
RuleElementItf *intf2_re = r2.getItf();
FWObject *rule2_iface = FWObjectReference::getObject(intf2_re->front());
int intf1_id = rule1_iface->getId();
int intf2_id = rule2_iface->getId();
if (intf2_re->isAny()) return true; // "eth0" -- "all" or "all" -- "all"
return (intf1_id == intf2_id);
}
@ -346,14 +352,14 @@ bool PolicyCompiler::cmpRules(PolicyRule &r1, PolicyRule &r2)
return ( (*src1 == *src2) && (*dst1 == *dst2) && (*srv1 == *srv2) );
}
bool PolicyCompiler::InterfacePolicyRules::processNext()
bool PolicyCompiler::InterfacePolicyRules::processNext()
{
PolicyRule *rule=getNext(); if (rule==NULL) return false;
PolicyRule *rule = getNext(); if (rule==NULL) return false;
RuleElementItf *itfre=rule->getItf(); assert(itfre);
RuleElementItf *itfre = rule->getItf(); assert(itfre);
if (itfre->isAny())
{
rule->setInterfaceId(-1);
// rule->setInterfaceId(-1);
tmp_queue.push_back(rule);
return true;
}
@ -384,13 +390,6 @@ bool PolicyCompiler::InterfacePolicyRules::processNext()
nitf->clearChildren();
nitf->setAnyElement();
nitf->addRef(o1);
// Set interface ID using setInterfaceId() for
// backwards compatibility with older code. This
// should go away eventually since we have "Interface"
// rule element in policy rules. Rule element like
// this does not exist in the NAT rules, so there we
// need to keep using setInterfaceId()
r->setInterfaceId(o1->getId());
tmp_queue.push_back(r);
}
} else
@ -402,8 +401,6 @@ bool PolicyCompiler::InterfacePolicyRules::processNext()
nitf->clearChildren();
nitf->setAnyElement();
nitf->addRef(o);
// trying to get rid of Rule::getInterfaceId Rule::getInterfaceStr
r->setInterfaceId(o->getId());
tmp_queue.push_back(r);
}
}
@ -475,16 +472,24 @@ Rule* PolicyCompiler::getDifference(PolicyRule &r1, PolicyRule &r2)
PolicyRule *r = new PolicyRule();
*r = r1;
FWObject *nsrc=getFirstSrc(r);
FWObject *nsrc = getFirstSrc(r);
nsrc->clearChildren();
FWObject *ndst=getFirstDst(r);
FWObject *ndst = getFirstDst(r);
ndst->clearChildren();
Service *nsrv=getFirstSrv(r);
Service *nsrv = getFirstSrv(r);
nsrv->clearChildren();
if (r1.getInterfaceId()!=r2.getInterfaceId()) return r;
RuleElementItf *intf_re = r1.getItf();
FWObject *rule1_iface = FWObjectReference::getObject(intf_re->front());
int iface1 = rule1_iface->getId();
intf_re = r2.getItf();
FWObject *rule2_iface = FWObjectReference::getObject(intf_re->front());
int iface2 = rule2_iface->getId();
if (iface1 != iface2) return r;
/*
vector<FWObject*> v1=_substract_obj( r1.getSrc() , r2.getSrc() );
@ -1068,13 +1073,13 @@ string PolicyCompiler::debugPrintRule(Rule *r)
// FWOptions *ruleopt =rule->getOptionsObject();
RuleElementSrc *srcrel=rule->getSrc();
RuleElementDst *dstrel=rule->getDst();
RuleElementSrv *srvrel=rule->getSrv();
RuleElementItf *itfrel=rule->getItf();
RuleElementSrc *srcrel = rule->getSrc();
RuleElementDst *dstrel = rule->getDst();
RuleElementSrv *srvrel = rule->getSrv();
RuleElementItf *itfrel = rule->getItf();
int iface_id = rule->getInterfaceId();
Interface *rule_iface = Interface::cast(dbcopy->findInIndex(iface_id));
// int iface_id = rule->getInterfaceId();
// Interface *rule_iface = Interface::cast(dbcopy->findInIndex(iface_id));
ostringstream str;
@ -1149,7 +1154,6 @@ string PolicyCompiler::debugPrintRule(Rule *r)
{
str << setw(9) << setfill(' ') << rule->getActionAsString().c_str();
str << setw(12) << setfill(' ') << rule->getDirectionAsString().c_str();
if (rule_iface!=NULL) str << " " << rule_iface->getName();
if (rule->getLogging()) str << " LOG";
} else
str << setw(18) << setfill(' ') << " ";
@ -1212,7 +1216,7 @@ PolicyRule* PolicyCompiler::addMgmtRule(Address* src,
if(iface != NULL)
{
re->addRef(iface);
rule->setInterfaceId(iface->getId());
// rule->setInterfaceId(iface->getId());
}
rule->add(dbcopy->create(PolicyRuleOptions::TYPENAME));

View File

@ -98,9 +98,10 @@ int RoutingCompiler::prolog()
* done because labels are configured in prolog() method of
* the base class. See fwbuilder ticket 1173)
*/
//if (r->isDisabled()) continue;
// if (r->isDisabled()) continue;
// r->setInterfaceId(-1);
r->setInterfaceId(-1);
r->setLabel( createRuleLabel("", "main", r->getPosition()) );
combined_ruleset->add( r );
}
@ -583,8 +584,8 @@ bool RoutingCompiler::sameDestinationDifferentGateways::processNext()
const InetAddr* dst_netm = dst->getNetmaskPtr();
string key = dst_addr->toString() + "/" + dst_netm->toString();
RuleElementRItf *itfrel = rule->getRItf();
FWObject *itf = FWReference::cast(itfrel->front())->getPointer();
// RuleElementRItf *itfrel = rule->getRItf();
// FWObject *itf = FWReference::cast(itfrel->front())->getPointer();
RuleElementRGtw *gtwrel = rule->getRGtw();
Address *gtw = Address::cast(FWReference::getObject(gtwrel->front()));
@ -612,13 +613,12 @@ bool RoutingCompiler::sameDestinationDifferentGateways::processNext()
bool RoutingCompiler::competingRules::processNext()
{
RoutingRule *rule=getNext(); if (rule==NULL) return false;
RoutingRule *rule = getNext(); if (rule==NULL) return false;
RuleElementRItf *itfrel=rule->getRItf();
RuleElementRItf *itfrel = rule->getRItf();
FWObject *itf = FWReference::cast(itfrel->front())->getPointer();
RuleElementRGtw *gtwrel=rule->getRGtw();
RuleElementRGtw *gtwrel = rule->getRGtw();
FWObject *gtw = FWReference::cast(gtwrel->front())->getPointer();
string metric = rule->getMetricAsString();

View File

@ -572,7 +572,6 @@ void NATCompiler_ipf::compile()
add( new expandAnyService("split NAT rules with ANY service" ) );
add( new AssignInterface( "assign rules to interfaces" ) );
add( new RedirectRules( "replace objects in TDst for 'Redirect' rules" ) );
add( new convertInterfaceIdToStr( "prepare interface assignments" ) );
add( new checkForObjectsWithErrors(
"check if we have objects with errors in rule elements"));

View File

@ -1293,8 +1293,6 @@ void NATCompiler_pf::compile()
"split if addresses in TSrc belong to different networks" ));
add( new AssignInterface( "assign rules to interfaces" ) );
add( new convertInterfaceIdToStr("prepare interface assignments") );
add( new checkForObjectsWithErrors(
"check if we have objects with errors in rule elements"));

View File

@ -553,7 +553,6 @@ void PolicyCompiler_ipf::compile()
add( new calculateSkip("calculate argument for skip") );
add( new checkForKeepState("check for 'keep state'") );
add( new convertInterfaceIdToStr("prepare interface assignments") );
add( new checkForObjectsWithErrors(
"check if we have objects with errors in rule elements"));

View File

@ -649,7 +649,6 @@ void PolicyCompiler_ipfw::compile()
add( new checkForZeroAddr("check for zero addresses"));
add( new calculateNum("calculate rule numbers "));
add( new convertInterfaceIdToStr("prepare interface assignments"));
add( new checkForObjectsWithErrors(
"check if we have objects with errors in rule elements"));

View File

@ -1099,7 +1099,6 @@ void PolicyCompiler_pf::compile()
add(new SpecialServices("check for special services"));
add(new setQuickFlag("set 'quick' flag"));
add(new checkForZeroAddr("check for zero addresses"));
add(new convertInterfaceIdToStr("prepare interface assignments"));
add( new checkForObjectsWithErrors(
"check if we have objects with errors in rule elements"));

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_ipf v4.2.0.3480
# Firewall Builder fwb_ipf v4.2.0.3483
#
# Generated Thu Feb 17 12:00:11 2011 PST by vadim
# Generated Sun Feb 20 16:55:11 2011 PST by vadim
#
# files: * firewall.fw ipf.fw
# files: firewall-ipf.conf ipf.conf
@ -84,7 +84,7 @@ missing_address() {
parameter="delete"
}
$FWBDEBUG $IFCONFIG $interface $inet $addr $parameter
$FWBDEBUG $IFCONFIG $interface $inet $addr $parameter || exit 1
$FWBDEBUG $IFCONFIG $interface up
}
@ -169,7 +169,7 @@ configure_interfaces() {
update_addresses_of_interface "lo 127.0.0.1/0xff000000" ""
}
log "Activating firewall script generated Thu Feb 17 12:00:11 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55: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_ipf v4.2.0.3480
# Firewall Builder fwb_ipf v4.2.0.3483
#
# Generated Thu Feb 17 12:00:11 2011 PST by vadim
# Generated Sun Feb 20 16:55:11 2011 PST by vadim
#
# files: * firewall1.fw /etc/ipf.fw
# files: firewall1-ipf.conf /etc/fw/ipf.conf
@ -83,7 +83,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 17 12:00:11 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55: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_ipf v4.2.0.3480
# Firewall Builder fwb_ipf v4.2.0.3483
#
# Generated Thu Feb 17 12:00:11 2011 PST by vadim
# Generated Sun Feb 20 16:55:11 2011 PST by vadim
#
# files: * firewall10.fw /etc/firewall10.fw
# files: firewall10-ipf.conf /etc/firewall10-ipf.conf
@ -75,7 +75,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 17 12:00:11 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55: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_ipf v4.2.0.3480
# Firewall Builder fwb_ipf v4.2.0.3483
#
# Generated Thu Feb 17 12:00:11 2011 PST by vadim
# Generated Sun Feb 20 16:55:11 2011 PST by vadim
#
# files: * firewall11.fw /etc/firewall11.fw
# files: firewall11-ipf.conf /etc/firewall11-ipf.conf
@ -77,7 +77,7 @@ missing_address() {
parameter="delete"
}
$FWBDEBUG $IFCONFIG $interface $inet $addr $parameter
$FWBDEBUG $IFCONFIG $interface $inet $addr $parameter || exit 1
$FWBDEBUG $IFCONFIG $interface up
}
@ -162,7 +162,7 @@ configure_interfaces() {
update_addresses_of_interface "lo0 127.0.0.1/0xff000000" ""
}
log "Activating firewall script generated Thu Feb 17 12:00:11 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55: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_ipf v4.2.0.3480
# Firewall Builder fwb_ipf v4.2.0.3483
#
# Generated Thu Feb 17 12:00:12 2011 PST by vadim
# Generated Sun Feb 20 16:55:12 2011 PST by vadim
#
# files: * firewall2.fw /etc/fw/firewall2.fw
# files: firewall2-ipf.conf /etc/fw/firewall2-ipf.conf
@ -79,7 +79,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 17 12:00:12 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55: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_ipf v4.2.0.3480
# Firewall Builder fwb_ipf v4.2.0.3483
#
# Generated Thu Feb 17 12:00:12 2011 PST by vadim
# Generated Sun Feb 20 16:55:12 2011 PST by vadim
#
# files: * firewall34.fw /etc/fw/firewall34.fw
# files: firewall34-ipf.conf /etc/fw/firewall34-ipf.conf
@ -78,7 +78,7 @@ missing_address() {
parameter="delete"
}
$FWBDEBUG $IFCONFIG $interface $inet $addr $parameter
$FWBDEBUG $IFCONFIG $interface $inet $addr $parameter || exit 1
$FWBDEBUG $IFCONFIG $interface up
}
@ -162,7 +162,7 @@ configure_interfaces() {
update_addresses_of_interface "lo 127.0.0.1/0xff000000" ""
}
log "Activating firewall script generated Thu Feb 17 12:00:12 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55: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_ipf v4.2.0.3480
# Firewall Builder fwb_ipf v4.2.0.3483
#
# Generated Thu Feb 17 12:00:13 2011 PST by vadim
# Generated Sun Feb 20 16:55:12 2011 PST by vadim
#
# files: * firewall35.fw /etc/firewall35.fw
# files: firewall35-ipf.conf /etc/firewall35-ipf.conf
@ -77,7 +77,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 17 12:00:13 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55: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_ipf v4.2.0.3480
# Firewall Builder fwb_ipf v4.2.0.3483
#
# Generated Thu Feb 17 12:00:13 2011 PST by vadim
# Generated Sun Feb 20 16:55:13 2011 PST by vadim
#
# files: * firewall4.fw /etc/fw/firewall4.fw
# files: firewall4-ipf.conf /etc/fw/firewall4-ipf.conf
@ -80,7 +80,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 17 12:00:13 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55:13 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_ipf v4.2.0.3480
# Firewall Builder fwb_ipf v4.2.0.3483
#
# Generated Thu Feb 17 12:00:13 2011 PST by vadim
# Generated Sun Feb 20 16:55:13 2011 PST by vadim
#
# files: * firewall5.fw /etc/firewall5.fw
# files: firewall5-ipf.conf /etc/firewall5-ipf.conf
@ -92,7 +92,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 17 12:00:13 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55:13 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_ipf v4.2.0.3480
# Firewall Builder fwb_ipf v4.2.0.3483
#
# Generated Thu Feb 17 12:00:13 2011 PST by vadim
# Generated Sun Feb 20 16:55:13 2011 PST by vadim
#
# files: * firewall7.fw /etc/fw/firewall7.fw
# files: firewall7-ipf.conf /etc/fw/firewall7-ipf.conf
@ -76,7 +76,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 17 12:00:13 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55:13 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_ipf v4.2.0.3480
# Firewall Builder fwb_ipf v4.2.0.3483
#
# Generated Thu Feb 17 12:00:13 2011 PST by vadim
# Generated Sun Feb 20 16:55:13 2011 PST by vadim
#
# files: * firewall8.fw /etc/firewall8.fw
# files: firewall8-ipf.conf /etc/firewall8-ipf.conf
@ -76,7 +76,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 17 12:00:13 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55:13 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_ipf v4.2.0.3480
# Firewall Builder fwb_ipf v4.2.0.3483
#
# Generated Thu Feb 17 12:00:14 2011 PST by vadim
# Generated Sun Feb 20 16:55:13 2011 PST by vadim
#
# files: * firewall9.fw /etc/firewall9.fw
# files: firewall9-ipf.conf /etc/firewall9-ipf.conf
@ -76,7 +76,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 17 12:00:14 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55:13 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_ipf v4.2.0.3480
# Firewall Builder fwb_ipf v4.2.0.3483
#
# Generated Thu Feb 17 12:00:14 2011 PST by vadim
# Generated Sun Feb 20 16:55:14 2011 PST by vadim
#
# files: * host.fw /etc/fw/host.fw
# files: host-ipf.conf /etc/fw/host-ipf.conf
@ -78,7 +78,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 17 12:00:14 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55:14 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_ipfw v4.2.0.3457
# Firewall Builder fwb_ipfw v4.2.0.3483
#
# Generated Thu Feb 3 14:55:19 2011 PST by vadim
# Generated Sun Feb 20 16:55:54 2011 PST by vadim
#
# files: * firewall.fw ipfw.fw
#
@ -34,7 +34,7 @@ LOGGER="/usr/bin/logger"
log() {
echo "$1"
test -x "$LOGGER" && $LOGGER -p info "$1"
command -v "$LOGGER" &>/dev/null && $LOGGER -p info "$1"
}
diff_intf() {
@ -81,7 +81,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 3 14:55:19 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55:54 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_ipfw v4.2.0.3457
# Firewall Builder fwb_ipfw v4.2.0.3483
#
# Generated Thu Feb 3 14:55:19 2011 PST by vadim
# Generated Sun Feb 20 16:55:54 2011 PST by vadim
#
# files: * firewall1.fw /etc/firewall1.fw
#
@ -36,7 +36,7 @@ LOGGER="/usr/bin/logger"
log() {
echo "$1"
test -x "$LOGGER" && $LOGGER -p info "$1"
command -v "$LOGGER" &>/dev/null && $LOGGER -p info "$1"
}
diff_intf() {
@ -83,7 +83,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 3 14:55:19 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55:54 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_ipfw v4.2.0.3457
# Firewall Builder fwb_ipfw v4.2.0.3483
#
# Generated Thu Feb 3 14:55:19 2011 PST by vadim
# Generated Sun Feb 20 16:55:55 2011 PST by vadim
#
# files: * firewall2.fw /etc/firewall2.fw
#
@ -30,7 +30,7 @@ LOGGER="/usr/bin/logger"
log() {
echo "$1"
test -x "$LOGGER" && $LOGGER -p info "$1"
command -v "$LOGGER" &>/dev/null && $LOGGER -p info "$1"
}
diff_intf() {
@ -77,7 +77,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 3 14:55:19 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55: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_ipfw v4.2.0.3457
# Firewall Builder fwb_ipfw v4.2.0.3483
#
# Generated Thu Feb 3 14:55:19 2011 PST by vadim
# Generated Sun Feb 20 16:55:55 2011 PST by vadim
#
# files: * firewall33.fw /etc/fw/firewall33.fw
#
@ -31,7 +31,7 @@ LOGGER="/usr/bin/logger"
log() {
echo "$1"
test -x "$LOGGER" && $LOGGER -p info "$1"
command -v "$LOGGER" &>/dev/null && $LOGGER -p info "$1"
}
diff_intf() {
@ -79,7 +79,7 @@ missing_address() {
parameter="delete"
}
$FWBDEBUG $IFCONFIG $interface $inet $addr $parameter
$FWBDEBUG $IFCONFIG $interface $inet $addr $parameter || exit 1
$FWBDEBUG $IFCONFIG $interface up
}
@ -163,7 +163,7 @@ configure_interfaces() {
update_addresses_of_interface "lo 127.0.0.1/0xff000000" ""
}
log "Activating firewall script generated Thu Feb 3 14:55:19 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55:55 2011 by vadim"
set_kernel_vars
configure_interfaces
@ -221,11 +221,11 @@ prolog_commands
"$IPFW" add 220 set 1 permit all from any to any keep-state || exit 1
#
# Rule 8 (global)
"$IPFW" add 230 set 1 skipto 350 all from any to 74.125.224.16 || exit 1
"$IPFW" add 240 set 1 skipto 350 all from any to 74.125.224.17 || exit 1
"$IPFW" add 250 set 1 skipto 350 all from any to 74.125.224.18 || exit 1
"$IPFW" add 260 set 1 skipto 350 all from any to 74.125.224.19 || exit 1
"$IPFW" add 270 set 1 skipto 350 all from any to 74.125.224.20 || exit 1
"$IPFW" add 230 set 1 skipto 350 all from any to 74.125.224.80 || exit 1
"$IPFW" add 240 set 1 skipto 350 all from any to 74.125.224.81 || exit 1
"$IPFW" add 250 set 1 skipto 350 all from any to 74.125.224.82 || exit 1
"$IPFW" add 260 set 1 skipto 350 all from any to 74.125.224.83 || exit 1
"$IPFW" add 270 set 1 skipto 350 all from any to 74.125.224.84 || exit 1
"$IPFW" add 280 set 1 skipto 350 all from any to 157.166.224.25 || exit 1
"$IPFW" add 290 set 1 skipto 350 all from any to 157.166.224.26 || exit 1
"$IPFW" add 300 set 1 skipto 350 all from any to 157.166.226.25 || exit 1

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_ipfw v4.2.0.3457
# Firewall Builder fwb_ipfw v4.2.0.3483
#
# Generated Thu Feb 3 14:55:19 2011 PST by vadim
# Generated Sun Feb 20 16:55:55 2011 PST by vadim
#
# files: * firewall34.fw /etc/firewall34.fw
#
@ -30,7 +30,7 @@ LOGGER="/usr/bin/logger"
log() {
echo "$1"
test -x "$LOGGER" && $LOGGER -p info "$1"
command -v "$LOGGER" &>/dev/null && $LOGGER -p info "$1"
}
diff_intf() {
@ -77,7 +77,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 3 14:55:19 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55: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_ipfw v4.2.0.3457
# Firewall Builder fwb_ipfw v4.2.0.3483
#
# Generated Thu Feb 3 14:55:19 2011 PST by vadim
# Generated Sun Feb 20 16:55:55 2011 PST by vadim
#
# files: * firewall4.fw /etc/firewall4.fw
#
@ -33,7 +33,7 @@ LOGGER="/usr/bin/logger"
log() {
echo "$1"
test -x "$LOGGER" && $LOGGER -p info "$1"
command -v "$LOGGER" &>/dev/null && $LOGGER -p info "$1"
}
diff_intf() {
@ -80,7 +80,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 3 14:55:19 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55: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_ipfw v4.2.0.3457
# Firewall Builder fwb_ipfw v4.2.0.3483
#
# Generated Thu Feb 3 14:55:19 2011 PST by vadim
# Generated Sun Feb 20 16:55:55 2011 PST by vadim
#
# files: * firewall7.fw /etc/firewall7.fw
#
@ -30,7 +30,7 @@ LOGGER="/usr/bin/logger"
log() {
echo "$1"
test -x "$LOGGER" && $LOGGER -p info "$1"
command -v "$LOGGER" &>/dev/null && $LOGGER -p info "$1"
}
diff_intf() {
@ -77,7 +77,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 3 14:55:19 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55: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_ipfw v4.2.0.3457
# Firewall Builder fwb_ipfw v4.2.0.3483
#
# Generated Thu Feb 3 14:55:20 2011 PST by vadim
# Generated Sun Feb 20 16:55:56 2011 PST by vadim
#
# files: * firewall8.fw /etc/firewall8.fw
#
@ -29,7 +29,7 @@ LOGGER="/usr/bin/logger"
log() {
echo "$1"
test -x "$LOGGER" && $LOGGER -p info "$1"
command -v "$LOGGER" &>/dev/null && $LOGGER -p info "$1"
}
diff_intf() {
@ -76,7 +76,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 3 14:55:20 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55: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_ipfw v4.2.0.3457
# Firewall Builder fwb_ipfw v4.2.0.3483
#
# Generated Thu Feb 3 14:55:20 2011 PST by vadim
# Generated Sun Feb 20 16:55:56 2011 PST by vadim
#
# files: * firewall9.fw /etc/firewall9.fw
#
@ -29,7 +29,7 @@ LOGGER="/usr/bin/logger"
log() {
echo "$1"
test -x "$LOGGER" && $LOGGER -p info "$1"
command -v "$LOGGER" &>/dev/null && $LOGGER -p info "$1"
}
diff_intf() {
@ -76,7 +76,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 3 14:55:20 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55: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_ipfw v4.2.0.3457
# Firewall Builder fwb_ipfw v4.2.0.3483
#
# Generated Thu Feb 3 14:55:20 2011 PST by vadim
# Generated Sun Feb 20 16:55:56 2011 PST by vadim
#
# files: * host.fw /etc/host.fw
#
@ -32,7 +32,7 @@ LOGGER="/usr/bin/logger"
log() {
echo "$1"
test -x "$LOGGER" && $LOGGER -p info "$1"
command -v "$LOGGER" &>/dev/null && $LOGGER -p info "$1"
}
diff_intf() {
@ -79,7 +79,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 3 14:55:20 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55: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_ipfw v4.2.0.3457
# Firewall Builder fwb_ipfw v4.2.0.3483
#
# Generated Thu Feb 3 14:55:20 2011 PST by vadim
# Generated Sun Feb 20 16:55:56 2011 PST by vadim
#
# files: * mac.fw /etc/mac.fw
#
@ -28,7 +28,7 @@ LOGGER="/usr/bin/logger"
log() {
echo "$1"
test -x "$LOGGER" && $LOGGER -p info "$1"
command -v "$LOGGER" &>/dev/null && $LOGGER -p info "$1"
}
diff_intf() {
@ -77,7 +77,7 @@ configure_interfaces() {
}
log "Activating firewall script generated Thu Feb 3 14:55:20 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:55:56 2011 by vadim"
set_kernel_vars
configure_interfaces

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="17" lastModified="1257365069" id="root">
<FWObjectDatabase xmlns="http://www.fwbuilder.org/1.0/" version="18" lastModified="1257365069" id="root">
<Library id="sysid99" name="Deleted Objects" comment="" ro="False">
<ICMP6Service id="idE0C27650" code="0" type="1" name="ipv6 dest unreachable" comment="No route to destination" ro="False"/>
<Library id="id40E233F3" color="#FFFFFF" name="West Coast" comment="" ro="False">
@ -647,6 +647,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="nat-firewall2-1" disabled="False" position="1" action="Translate" comment="">
@ -668,6 +671,9 @@
<TSrv neg="False">
<ServiceRef ref="tcp-SMTP"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3CDB43B8" disabled="False" position="2" action="Translate" comment="">
@ -689,6 +695,9 @@
<TSrv neg="False">
<ServiceRef ref="id3B4FF09A"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3D7581A7" disabled="False" position="3" action="Translate" comment="">
@ -711,6 +720,9 @@
<TSrv neg="False">
<ServiceRef ref="id3B4FF09A"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3D75843D" disabled="False" position="4" action="Translate" comment="">
@ -733,6 +745,9 @@
<TSrv neg="False">
<ServiceRef ref="id3B4FF09A"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<RuleSetOptions/>
@ -1350,6 +1365,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3AFADC09" disabled="False" position="1" action="Translate" comment="">
@ -1371,6 +1389,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3CD23959" disabled="True" position="2" action="Translate" comment="">
@ -1392,6 +1413,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3B1328FB" disabled="False" position="3" action="Translate" comment="">
@ -1413,6 +1437,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3AF5AAD3" disabled="True" position="4" action="Translate" comment="">
@ -1434,6 +1461,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3CCA1B57" disabled="True" position="5" action="Translate" comment="">
@ -1455,6 +1485,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3B50F7CB" disabled="True" position="6" action="Translate" comment="">
@ -1476,6 +1509,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3BD8D94B" disabled="True" position="7" action="Translate" comment="">
@ -1497,6 +1533,9 @@
<TSrv neg="False">
<ServiceRef ref="id3B5009F7"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3BD8D9DD" disabled="True" position="8" action="Translate" comment="">
@ -1518,6 +1557,9 @@
<TSrv neg="False">
<ServiceRef ref="id3B5009F7"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3BBC0EA4" disabled="True" position="9" action="Translate" comment="">
@ -1539,6 +1581,9 @@
<TSrv neg="False">
<ServiceRef ref="id3B5009F7"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3BBC0F93" disabled="True" position="10" action="Translate" comment="">
@ -1560,6 +1605,9 @@
<TSrv neg="False">
<ServiceRef ref="id3B5009F7"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3BC6BCE5" disabled="True" position="11" action="Translate" comment="">
@ -1581,6 +1629,9 @@
<TSrv neg="False">
<ServiceRef ref="id3B5009F7"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<RuleSetOptions/>
@ -2076,6 +2127,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions>
<Option name="id"/>
</NATRuleOptions>
@ -2100,6 +2154,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions>
<Option name="id"/>
</NATRuleOptions>
@ -2124,6 +2181,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3DE9CD88" disabled="False" position="3" action="Translate" comment="">
@ -2145,6 +2205,9 @@
<TSrv neg="False">
<ServiceRef ref="tcp-SSH"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3DEA6375" disabled="False" position="4" action="Translate" comment="">
@ -2166,6 +2229,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3CABE6DF" disabled="False" position="5" action="Translate" comment="">
@ -2188,6 +2254,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3AFB69BD" disabled="False" position="6" action="Translate" comment="">
@ -2210,6 +2279,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3DEA6769" disabled="False" position="7" action="Translate" comment="load balancing rule">
@ -2233,6 +2305,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3DEA8105" disabled="False" position="8" action="Translate" comment="load balancing rule">
@ -2254,6 +2329,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3D265545" disabled="False" position="9" action="Translate" comment="">
@ -2275,6 +2353,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3D265556" disabled="False" position="10" action="Translate" comment="">
@ -2296,6 +2377,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3BEEF6D2" disabled="False" position="11" action="Translate" comment="">
@ -2317,6 +2401,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3BD67563" disabled="False" position="12" action="Translate" comment="">
@ -2338,6 +2425,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions>
<Option name="id"/>
</NATRuleOptions>
@ -2361,6 +2451,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3B66568B" disabled="False" position="14" action="Translate" comment="NETMAP ">
@ -2382,6 +2475,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3B6656EF" disabled="True" position="15" action="Translate" comment="NETMAP">
@ -2403,6 +2499,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3AFB69F7" disabled="False" position="16" action="Translate" comment="">
@ -2424,6 +2523,9 @@
<TSrv neg="False">
<ServiceRef ref="id3B20468D"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3B7313C4" disabled="False" position="17" action="Translate" comment="">
@ -2445,6 +2547,9 @@
<TSrv neg="False">
<ServiceRef ref="tcp-SMTP"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3DF6D103" disabled="False" position="18" action="Translate" comment="">
@ -2466,6 +2571,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3DF6D242" disabled="False" position="19" action="Translate" comment="">
@ -2488,6 +2596,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<RuleSetOptions/>
@ -2903,6 +3014,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions>
<Option name="id"/>
</NATRuleOptions>
@ -2926,6 +3040,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions>
<Option name="id"/>
</NATRuleOptions>
@ -2949,6 +3066,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions>
<Option name="id"/>
</NATRuleOptions>
@ -2972,6 +3092,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions>
<Option name="id"/>
</NATRuleOptions>
@ -2995,6 +3118,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions>
<Option name="id"/>
</NATRuleOptions>
@ -3018,6 +3144,9 @@
<TSrv neg="False">
<ServiceRef ref="tcp-SSH"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3D757CC5" disabled="False" position="6" action="Translate" comment="">
@ -3040,6 +3169,9 @@
<TSrv neg="False">
<ServiceRef ref="id3B4FF09A"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3D757E01" disabled="False" position="7" action="Translate" comment="">
@ -3062,6 +3194,9 @@
<TSrv neg="False">
<ServiceRef ref="id3B4FF09A"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3D757F29" disabled="False" position="8" action="Translate" comment="">
@ -3084,6 +3219,9 @@
<TSrv neg="False">
<ServiceRef ref="id3B4FF09A"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<RuleSetOptions/>
@ -3789,6 +3927,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3D5823A5" disabled="False" position="1" action="Translate" comment="">
@ -3810,6 +3951,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3D5823B9" disabled="False" position="2" action="Translate" comment="">
@ -3831,6 +3975,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3D58245E" disabled="False" position="3" action="Translate" comment="">
@ -3852,6 +3999,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3D58236D" disabled="False" position="4" action="Translate" comment="">
@ -3873,6 +4023,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3D58235F" disabled="False" position="5" action="Translate" comment="">
@ -3894,6 +4047,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3D582472" disabled="False" position="6" action="Translate" comment="">
@ -3915,6 +4071,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3D58249D" disabled="False" position="7" action="Translate" comment="">
@ -3936,6 +4095,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3D5825CC" disabled="False" position="8" action="Translate" comment="">
@ -3957,6 +4119,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<RuleSetOptions/>
@ -4123,6 +4288,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3DF3D0BD" disabled="False" position="1" action="Translate" comment="">
@ -4144,6 +4312,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3DF3D0CB" disabled="False" position="2" action="Translate" comment="">
@ -4165,6 +4336,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3DF3D0D9" disabled="False" position="3" action="Translate" comment="">
@ -4186,6 +4360,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3DF3D0E7" disabled="False" position="4" action="Translate" comment="">
@ -4207,6 +4384,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3DF3D0F5" disabled="False" position="5" action="Translate" comment="">
@ -4228,6 +4408,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3DF3D103" disabled="False" position="6" action="Translate" comment="">
@ -4249,6 +4432,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3DF3D111" disabled="False" position="7" action="Translate" comment="">
@ -4270,6 +4456,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id3DF3D11F" disabled="False" position="8" action="Translate" comment="">
@ -4291,6 +4480,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<RuleSetOptions/>
@ -4720,6 +4912,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id43876E5218346" disabled="False" position="1" action="Translate" comment="">
@ -4741,6 +4936,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id43876E6918346" disabled="False" position="2" action="Translate" comment="">
@ -4763,6 +4961,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id43876E7B18346" disabled="False" position="3" action="Translate" comment="">
@ -4785,6 +4986,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<RuleSetOptions/>
@ -5142,6 +5346,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id43F7AB3623738" disabled="False" position="1" action="Translate" comment="">
@ -5163,6 +5370,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id43F7AB4423738" disabled="False" position="2" action="Translate" comment="">
@ -5184,6 +5394,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id43F7AB5223738" disabled="False" position="3" action="Translate" comment="">
@ -5205,6 +5418,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id43F7AB6023738" disabled="False" position="4" action="Translate" comment="">
@ -5226,6 +5442,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id43F7AB6E23738" disabled="False" position="5" action="Translate" comment="">
@ -5247,6 +5466,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id43F7AB7C23738" disabled="False" position="6" action="Translate" comment="">
@ -5268,6 +5490,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id43F7AB8A23738" disabled="False" position="7" action="Translate" comment="">
@ -5289,6 +5514,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<NATRule id="id43F7AB9823738" disabled="False" position="8" action="Translate" comment="">
@ -5310,6 +5538,9 @@
<TSrv neg="False">
<ServiceRef ref="sysid1"/>
</TSrv>
<ItfInb neg="False"><ObjectRef ref="sysid0"/></ItfInb>
<ItfOutb neg="False"><ObjectRef ref="sysid0"/></ItfOutb>
<NATRuleOptions/>
</NATRule>
<RuleSetOptions/>

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:36 2011 PST by vadim
# Generated Sun Feb 20 16:51:03 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 Sat Feb 19 15:27:36 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:03 2011 by vadim"
log "Database was cluster-tests.fwb"
check_tools
check_run_time_address_table_files

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:55 2011 PST by vadim
# Generated Sun Feb 20 16:49:22 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 Sat Feb 19 15:25:55 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:49:22 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:26:18 2011 PST by vadim
# Generated Sun Feb 20 16:49:45 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 Sat Feb 19 15:26:18 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:49:45 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:26:21 2011 PST by vadim
# Generated Sun Feb 20 16:49:47 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 Sat Feb 19 15:26:21 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:49:47 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:26:44 2011 PST by vadim
# Generated Sun Feb 20 16:50:10 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 Sat Feb 19 15:26:44 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50:10 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:09 2011 PST by vadim
# Generated Sun Feb 20 16:50:36 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 Sat Feb 19 15:27:09 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50:36 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:26:47 2011 PST by vadim
# Generated Sun Feb 20 16:50:13 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 Sat Feb 19 15:26:47 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50:13 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:26:51 2011 PST by vadim
# Generated Sun Feb 20 16:50:17 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 Sat Feb 19 15:26:51 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50:17 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:26:54 2011 PST by vadim
# Generated Sun Feb 20 16:50:21 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 Sat Feb 19 15:26:54 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50:21 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:26:58 2011 PST by vadim
# Generated Sun Feb 20 16:50:25 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 Sat Feb 19 15:26:58 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50:25 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:02 2011 PST by vadim
# Generated Sun Feb 20 16:50:29 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 Sat Feb 19 15:27:02 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50:29 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:06 2011 PST by vadim
# Generated Sun Feb 20 16:50:33 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 Sat Feb 19 15:27:06 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50:33 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:10 2011 PST by vadim
# Generated Sun Feb 20 16:50:37 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 Sat Feb 19 15:27:10 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50:37 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:14 2011 PST by vadim
# Generated Sun Feb 20 16:50:40 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 Sat Feb 19 15:27:14 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50:40 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:14 2011 PST by vadim
# Generated Sun Feb 20 16:50:41 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 Sat Feb 19 15:27:14 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50:41 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:18 2011 PST by vadim
# Generated Sun Feb 20 16:50:45 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 Sat Feb 19 15:27:18 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50:45 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:19 2011 PST by vadim
# Generated Sun Feb 20 16:50:45 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 Sat Feb 19 15:27:19 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50:45 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:22 2011 PST by vadim
# Generated Sun Feb 20 16:50:48 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 Sat Feb 19 15:27:22 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50:48 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:22:57 2011 PST by vadim
# Generated Sun Feb 20 16:46:26 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 Sat Feb 19 15:22:57 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:26 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:00 2011 PST by vadim
# Generated Sun Feb 20 16:46:28 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 Sat Feb 19 15:23:00 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:28 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:01 2011 PST by vadim
# Generated Sun Feb 20 16:46:29 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 Sat Feb 19 15:23:01 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:29 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:03 2011 PST by vadim
# Generated Sun Feb 20 16:46:31 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 Sat Feb 19 15:23:03 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:31 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:04 2011 PST by vadim
# Generated Sun Feb 20 16:46:32 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 Sat Feb 19 15:23:04 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:32 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:06 2011 PST by vadim
# Generated Sun Feb 20 16:46:34 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 Sat Feb 19 15:23:06 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:34 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:07 2011 PST by vadim
# Generated Sun Feb 20 16:46:35 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 Sat Feb 19 15:23:07 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:35 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:09 2011 PST by vadim
# Generated Sun Feb 20 16:46:37 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 Sat Feb 19 15:23:09 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:37 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:10 2011 PST by vadim
# Generated Sun Feb 20 16:46:39 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 Sat Feb 19 15:23:10 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:39 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:12 2011 PST by vadim
# Generated Sun Feb 20 16:46:40 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 Sat Feb 19 15:23:12 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:40 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:13 2011 PST by vadim
# Generated Sun Feb 20 16:46:42 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 Sat Feb 19 15:23:13 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:42 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:15 2011 PST by vadim
# Generated Sun Feb 20 16:46:44 2011 PST by vadim
#
# files: * firewall19.fw /etc/fw/firewall19.fw
#
@ -329,6 +329,7 @@ script_body() {
done
$IPTABLES -A OUTPUT -o lo -d 66.66.66.1 -m state --state NEW -j ACCEPT
$IPTABLES -A OUTPUT -o lo -d 66.66.66.130 -m state --state NEW -j ACCEPT
$IPTABLES -A OUTPUT -o lo -d 127.0.0.1 -m state --state NEW -j ACCEPT
$IPTABLES -A OUTPUT -o lo -d 192.168.1.1 -m state --state NEW -j ACCEPT
#
# Rule 1 (lo)
@ -508,7 +509,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sat Feb 19 15:23:15 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:44 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:25 2011 PST by vadim
# Generated Sun Feb 20 16:46:53 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 Sat Feb 19 15:23:25 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:53 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:29 2011 PST by vadim
# Generated Sun Feb 20 16:46:58 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 Sat Feb 19 15:23:29 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:58 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:33 2011 PST by vadim
# Generated Sun Feb 20 16:47:02 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 Sat Feb 19 15:23:33 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:02 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:37 2011 PST by vadim
# Generated Sun Feb 20 16:47:06 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 Sat Feb 19 15:23:37 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:06 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:40 2011 PST by vadim
# Generated Sun Feb 20 16:47:09 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 Sat Feb 19 15:23:40 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:09 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:44 2011 PST by vadim
# Generated Sun Feb 20 16:47:13 2011 PST by vadim
#
# files: * firewall2-6.fw /etc/fw/firewall2-6.fw
#
@ -559,7 +559,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sat Feb 19 15:23:44 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:13 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:48 2011 PST by vadim
# Generated Sun Feb 20 16:47:16 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 Sat Feb 19 15:23:48 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:16 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:18 2011 PST by vadim
# Generated Sun Feb 20 16:46:46 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 Sat Feb 19 15:23:18 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:46 2011 by vadim"
check_tools
check_run_time_address_table_files

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:21 2011 PST by vadim
# Generated Sun Feb 20 16:46:49 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 Sat Feb 19 15:23:21 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:49 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:18 2011 PST by vadim
# Generated Sun Feb 20 16:46:47 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 Sat Feb 19 15:23:18 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:47 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:25 2011 PST by vadim
# Generated Sun Feb 20 16:46:53 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 Sat Feb 19 15:23:25 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:53 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:21 2011 PST by vadim
# Generated Sun Feb 20 16:46:50 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 Sat Feb 19 15:23:21 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:50 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:28 2011 PST by vadim
# Generated Sun Feb 20 16:46:57 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 Sat Feb 19 15:23:28 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:46:57 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:34 2011 PST by vadim
# Generated Sun Feb 20 16:47:03 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 Sat Feb 19 15:23:34 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:03 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:31 2011 PST by vadim
# Generated Sun Feb 20 16:47:00 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 Sat Feb 19 15:23:31 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:00 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:36 2011 PST by vadim
# Generated Sun Feb 20 16:47:05 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 Sat Feb 19 15:23:36 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:05 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:41 2011 PST by vadim
# Generated Sun Feb 20 16:47:09 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 Sat Feb 19 15:23:41 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:09 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:44 2011 PST by vadim
# Generated Sun Feb 20 16:47:12 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 Sat Feb 19 15:23:44 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:12 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:47 2011 PST by vadim
# Generated Sun Feb 20 16:47:16 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 Sat Feb 19 15:23:47 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:16 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:51 2011 PST by vadim
# Generated Sun Feb 20 16:47:19 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 Sat Feb 19 15:23:51 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:19 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:51 2011 PST by vadim
# Generated Sun Feb 20 16:47:20 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 Sat Feb 19 15:23:51 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:20 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:54 2011 PST by vadim
# Generated Sun Feb 20 16:47:23 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 Sat Feb 19 15:23:54 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:23 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:55 2011 PST by vadim
# Generated Sun Feb 20 16:47:23 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 Sat Feb 19 15:23:55 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:23 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:58 2011 PST by vadim
# Generated Sun Feb 20 16:47:26 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 Sat Feb 19 15:23:58 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:26 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:23:58 2011 PST by vadim
# Generated Sun Feb 20 16:47:27 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 Sat Feb 19 15:23:58 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:27 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:13 2011 PST by vadim
# Generated Sun Feb 20 16:47:41 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 Sat Feb 19 15:24:13 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:41 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:13 2011 PST by vadim
# Generated Sun Feb 20 16:47:41 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 Sat Feb 19 15:24:13 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:41 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:17 2011 PST by vadim
# Generated Sun Feb 20 16:47:45 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 Sat Feb 19 15:24:17 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:45 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:17 2011 PST by vadim
# Generated Sun Feb 20 16:47:45 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 Sat Feb 19 15:24:17 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:45 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:20 2011 PST by vadim
# Generated Sun Feb 20 16:47:49 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 Sat Feb 19 15:24:20 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:49 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:24 2011 PST by vadim
# Generated Sun Feb 20 16:47:52 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 Sat Feb 19 15:24:24 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:52 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:20 2011 PST by vadim
# Generated Sun Feb 20 16:47:48 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 Sat Feb 19 15:24:20 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:48 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:27 2011 PST by vadim
# Generated Sun Feb 20 16:47:55 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 Sat Feb 19 15:24:27 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47: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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:36 2011 PST by vadim
# Generated Sun Feb 20 16:48:04 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 Sat Feb 19 15:24:36 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:04 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:30 2011 PST by vadim
# Generated Sun Feb 20 16:47:58 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 Sat Feb 19 15:24:30 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:47:58 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:41 2011 PST by vadim
# Generated Sun Feb 20 16:48:09 2011 PST by vadim
#
# files: * firewall39.fw /etc/fw/firewall39.fw
#
@ -876,7 +876,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sat Feb 19 15:24:41 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:09 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:40 2011 PST by vadim
# Generated Sun Feb 20 16:48:07 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 Sat Feb 19 15:24:40 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:07 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:45 2011 PST by vadim
# Generated Sun Feb 20 16:48:13 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 Sat Feb 19 15:24:45 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:13 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:47 2011 PST by vadim
# Generated Sun Feb 20 16:48:14 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 Sat Feb 19 15:24:47 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:14 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:43 2011 PST by vadim
# Generated Sun Feb 20 16:48:11 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 Sat Feb 19 15:24:43 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:11 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:50 2011 PST by vadim
# Generated Sun Feb 20 16:48:17 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 Sat Feb 19 15:24:50 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:17 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:53 2011 PST by vadim
# Generated Sun Feb 20 16:48:21 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 Sat Feb 19 15:24:53 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:21 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:56 2011 PST by vadim
# Generated Sun Feb 20 16:48:23 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 Sat Feb 19 15:24:56 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:23 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:57 2011 PST by vadim
# Generated Sun Feb 20 16:48:24 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 Sat Feb 19 15:24:57 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:24 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:59 2011 PST by vadim
# Generated Sun Feb 20 16:48:27 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 Sat Feb 19 15:24:59 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:27 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:03 2011 PST by vadim
# Generated Sun Feb 20 16:48:30 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 Sat Feb 19 15:25:03 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:30 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:02 2011 PST by vadim
# Generated Sun Feb 20 16:48:30 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 Sat Feb 19 15:25:02 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:30 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:06 2011 PST by vadim
# Generated Sun Feb 20 16:48:33 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 Sat Feb 19 15:25:06 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:33 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:07 2011 PST by vadim
# Generated Sun Feb 20 16:48:34 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 Sat Feb 19 15:25:07 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:34 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:10 2011 PST by vadim
# Generated Sun Feb 20 16:48:37 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 Sat Feb 19 15:25:10 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:37 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:11 2011 PST by vadim
# Generated Sun Feb 20 16:48:39 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 Sat Feb 19 15:25:11 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:39 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:14 2011 PST by vadim
# Generated Sun Feb 20 16:48:42 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 Sat Feb 19 15:25:14 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:42 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:14 2011 PST by vadim
# Generated Sun Feb 20 16:48:42 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 Sat Feb 19 15:25:14 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:42 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:18 2011 PST by vadim
# Generated Sun Feb 20 16:48:45 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 Sat Feb 19 15:25:18 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:45 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:18 2011 PST by vadim
# Generated Sun Feb 20 16:48:45 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 Sat Feb 19 15:25:18 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:45 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:23 2011 PST by vadim
# Generated Sun Feb 20 16:48:50 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 Sat Feb 19 15:25:23 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:50 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:23 2011 PST by vadim
# Generated Sun Feb 20 16:48:50 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 Sat Feb 19 15:25:23 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:50 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:26 2011 PST by vadim
# Generated Sun Feb 20 16:48:53 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 Sat Feb 19 15:25:26 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:53 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:26 2011 PST by vadim
# Generated Sun Feb 20 16:48:53 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 Sat Feb 19 15:25:26 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:53 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:30 2011 PST by vadim
# Generated Sun Feb 20 16:48:57 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 Sat Feb 19 15:25:30 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:57 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:30 2011 PST by vadim
# Generated Sun Feb 20 16:48:57 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 Sat Feb 19 15:25:30 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:57 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:34 2011 PST by vadim
# Generated Sun Feb 20 16:49:00 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 Sat Feb 19 15:25:34 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:49:00 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:34 2011 PST by vadim
# Generated Sun Feb 20 16:49:01 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 Sat Feb 19 15:25:34 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:49:01 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:38 2011 PST by vadim
# Generated Sun Feb 20 16:49:05 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 Sat Feb 19 15:25:38 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:49:05 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:39 2011 PST by vadim
# Generated Sun Feb 20 16:49:05 2011 PST by vadim
#
# files: * firewall82.fw /etc/firewall82.fw
#
@ -414,7 +414,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sat Feb 19 15:25:39 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:49:05 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:43 2011 PST by vadim
# Generated Sun Feb 20 16:49:09 2011 PST by vadim
#
# files: * firewall82_A.fw /etc/fw/firewall82_A.fw
#
@ -406,7 +406,7 @@ test -z "$cmd" && {
case "$cmd" in
start)
log "Activating firewall script generated Sat Feb 19 15:25:43 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:49:09 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:42 2011 PST by vadim
# Generated Sun Feb 20 16:49:08 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 Sat Feb 19 15:25:42 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:49:08 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:45 2011 PST by vadim
# Generated Sun Feb 20 16:49:12 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 Sat Feb 19 15:25:45 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:49:12 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:46 2011 PST by vadim
# Generated Sun Feb 20 16:49:12 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 Sat Feb 19 15:25:46 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:49:12 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:49 2011 PST by vadim
# Generated Sun Feb 20 16:49:15 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 Sat Feb 19 15:25:49 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:49:15 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:50 2011 PST by vadim
# Generated Sun Feb 20 16:49:16 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 Sat Feb 19 15:25:50 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:49:16 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:25:53 2011 PST by vadim
# Generated Sun Feb 20 16:49:19 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 Sat Feb 19 15:25:53 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:49:19 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:25 2011 PST by vadim
# Generated Sun Feb 20 16:50:51 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 Sat Feb 19 15:27:25 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50:51 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:22 2011 PST by vadim
# Generated Sun Feb 20 16:50:49 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 Sat Feb 19 15:27:22 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50:49 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:24:52 2011 PST by vadim
# Generated Sun Feb 20 16:48:20 2011 PST by vadim
#
# files: * fwbuilder.fw /etc/init.d/fwbuilder.fw
#
@ -483,7 +483,7 @@ status_action() {
}
start() {
log "Activating firewall script generated Sat Feb 19 15:24:52 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:48:20 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:38 2011 PST by vadim
# Generated Sun Feb 20 16:51:04 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 Sat Feb 19 15:27:38 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:04 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:38 2011 PST by vadim
# Generated Sun Feb 20 16:51:05 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 Sat Feb 19 15:27:38 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:05 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:37 2011 PST by vadim
# Generated Sun Feb 20 16:51:03 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 Sat Feb 19 15:27:37 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:03 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:37 2011 PST by vadim
# Generated Sun Feb 20 16:51:04 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 Sat Feb 19 15:27:37 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:04 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:39 2011 PST by vadim
# Generated Sun Feb 20 16:51:05 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 Sat Feb 19 15:27:39 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:05 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:39 2011 PST by vadim
# Generated Sun Feb 20 16:51:06 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 Sat Feb 19 15:27:39 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:06 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:25 2011 PST by vadim
# Generated Sun Feb 20 16:50:52 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 Sat Feb 19 15:27:25 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50:52 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:40 2011 PST by vadim
# Generated Sun Feb 20 16:51:06 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 Sat Feb 19 15:27:40 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:06 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:40 2011 PST by vadim
# Generated Sun Feb 20 16:51:06 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 Sat Feb 19 15:27:40 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:06 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:29 2011 PST by vadim
# Generated Sun Feb 20 17:24:07 2011 PST by vadim
#
# files: * rc.firewall.local /etc/rc.d//rc.firewall.local
#

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:29 2011 PST by vadim
# Generated Sun Feb 20 16:50:55 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 Sat Feb 19 15:27:29 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50: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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:40 2011 PST by vadim
# Generated Sun Feb 20 16:51:06 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 Sat Feb 19 15:27:40 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:06 2011 by vadim"
log "Database was cluster-tests.fwb"
check_tools
check_run_time_address_table_files

View File

@ -2,9 +2,9 @@
#
# This is automatically generated file. DO NOT MODIFY !
#
# Firewall Builder fwb_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:40 2011 PST by vadim
# Generated Sun Feb 20 16:51:06 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 Sat Feb 19 15:27:40 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:06 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:40 2011 PST by vadim
# Generated Sun Feb 20 16:51:07 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 Sat Feb 19 15:27:40 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:07 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:32 2011 PST by vadim
# Generated Sun Feb 20 16:50:59 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 Sat Feb 19 15:27:32 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:50:59 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:36 2011 PST by vadim
# Generated Sun Feb 20 16:51:02 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 Sat Feb 19 15:27:36 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:02 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:39 2011 PST by vadim
# Generated Sun Feb 20 16:51:05 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 Sat Feb 19 15:27:39 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:05 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:33 2011 PST by vadim
# Generated Sun Feb 20 16:51:00 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 Sat Feb 19 15:27:33 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:00 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:41 2011 PST by vadim
# Generated Sun Feb 20 16:51:07 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 Sat Feb 19 15:27:41 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:07 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:41 2011 PST by vadim
# Generated Sun Feb 20 16:51:07 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 Sat Feb 19 15:27:41 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:07 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:41 2011 PST by vadim
# Generated Sun Feb 20 16:51:07 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 Sat Feb 19 15:27:41 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:07 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:41 2011 PST by vadim
# Generated Sun Feb 20 16:51:08 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 Sat Feb 19 15:27:41 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:08 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_ipt v4.2.0.3482
# Firewall Builder fwb_ipt v4.2.0.3483
#
# Generated Sat Feb 19 15:27:41 2011 PST by vadim
# Generated Sun Feb 20 16:51:08 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 Sat Feb 19 15:27:41 2011 by vadim"
log "Activating firewall script generated Sun Feb 20 16:51:08 2011 by vadim"
check_tools
prolog_commands
check_run_time_address_table_files

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:04 2011 PST by vadim
# Generated Sun Feb 20 17:25:23 2011 PST by vadim
#
# files: * pf_cluster_4_rc.conf.local /etc/pf_cluster_4_rc.conf.local
# files: pf_cluster_4_pf.conf /etc/pf_cluster_4_pf.conf