mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-25 20:57:29 +01:00
see #2101 setting master advskew to 10 and default advskew to 20
This commit is contained in:
parent
b116a2ac23
commit
f8b668e691
@ -1,5 +1,10 @@
|
||||
2011-02-17 vadim <vadim@netcitadel.com>
|
||||
|
||||
* platforms.cpp (setDefaultFailoverGroupAttributes): fixes #2101
|
||||
"CARP interfaces are set with same advskew". When new PF cluster
|
||||
is created, master advskew paramerer will be set to 10 and backup
|
||||
to 20 to make it deterministic.
|
||||
|
||||
* NATCompiler_ipf.cpp (processNext): see #133, fixes #2108 making
|
||||
nat compiler for ipfilter work with interface column, however the
|
||||
column is not exposed to the user. Compiler behavior should be
|
||||
|
||||
@ -1056,8 +1056,8 @@ void setDefaultFailoverGroupAttributes(FailoverClusterGroup *grp)
|
||||
gropt->setStr("carp_password", "");
|
||||
gropt->setInt("carp_vhid", 1);
|
||||
gropt->setInt("carp_advbase", 1);
|
||||
gropt->setInt("carp_master_advskew", 0);
|
||||
gropt->setInt("carp_default_advskew", 0);
|
||||
gropt->setInt("carp_master_advskew", 10);
|
||||
gropt->setInt("carp_default_advskew", 20);
|
||||
}
|
||||
|
||||
if (failover_protocol == "vrrp")
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user