diff options
author | David S. Miller <davem@davemloft.net> | 2013-06-30 20:35:13 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-06-30 20:35:13 -0400 |
commit | 4e144d3a807d6d2aa03d2cb234d88ef1a140e8c3 (patch) | |
tree | 7780ce6a8c84068820f8bbcc5116db6430db3d3b /Documentation/networking | |
parent | 008aebde9be37e7e1248332b1983976e354327ea (diff) | |
parent | 496e4ae7dc944faa1721bfda7e9d834d5611a874 (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next
Pablo Neira Ayuso says:
====================
The following batch contains Netfilter/IPVS updates for net-next,
they are:
* Enforce policy to several nfnetlink subsystem, from Daniel
Borkmann.
* Use xt_socket to match the third packet (to perform simplistic
socket-based stateful filtering), from Eric Dumazet.
* Avoid large timeout for picked up from the middle TCP flows,
from Florian Westphal.
* Exclude IPVS from struct net if IPVS is disabled and removal
of unnecessary included header file, from JunweiZhang.
* Release SCTP connection immediately under load, to mimic current
TCP behaviour, from Julian Anastasov.
* Replace and enhance SCTP state machine, from Julian Anastasov.
* Add tweak to reduce sync traffic in the presence of persistence,
also from Julian Anastasov.
* Add tweak for the IPVS SH scheduler not to reject connections
directed to a server, choose a new one instead, from Alexander
Frolkin.
* Add support for sloppy TCP and SCTP modes, that creates state
information on any packet, not only initial handshake packets,
from Alexander Frolkin.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Documentation/networking')
-rw-r--r-- | Documentation/networking/ipvs-sysctl.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Documentation/networking/ipvs-sysctl.txt b/Documentation/networking/ipvs-sysctl.txt index 9573d0c48c6e..7a3c04729591 100644 --- a/Documentation/networking/ipvs-sysctl.txt +++ b/Documentation/networking/ipvs-sysctl.txt | |||
@@ -181,6 +181,19 @@ snat_reroute - BOOLEAN | |||
181 | always be the same as the original route so it is an optimisation | 181 | always be the same as the original route so it is an optimisation |
182 | to disable snat_reroute and avoid the recalculation. | 182 | to disable snat_reroute and avoid the recalculation. |
183 | 183 | ||
184 | sync_persist_mode - INTEGER | ||
185 | default 0 | ||
186 | |||
187 | Controls the synchronisation of connections when using persistence | ||
188 | |||
189 | 0: All types of connections are synchronised | ||
190 | 1: Attempt to reduce the synchronisation traffic depending on | ||
191 | the connection type. For persistent services avoid synchronisation | ||
192 | for normal connections, do it only for persistence templates. | ||
193 | In such case, for TCP and SCTP it may need enabling sloppy_tcp and | ||
194 | sloppy_sctp flags on backup servers. For non-persistent services | ||
195 | such optimization is not applied, mode 0 is assumed. | ||
196 | |||
184 | sync_version - INTEGER | 197 | sync_version - INTEGER |
185 | default 1 | 198 | default 1 |
186 | 199 | ||