* [GIT PULL nf-next] IPVS
@ 2011-10-01 3:34 Simon Horman
2011-10-01 3:34 ` [PATCH 1/2] IPVS: secure_tcp does provide alternate state timeouts Simon Horman
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Simon Horman @ 2011-10-01 3:34 UTC (permalink / raw)
To: Patrick McHardy, Pablo Neira Ayuso
Cc: lvs-devel, netdev, netfilter-devel, Wensong Zhang,
Julian Anastasov
Hi Pablo,
please consider pulling the following to get some
documentation changes from myself.
The following changes since commit 6fa4dec85e199f31774faf29be26a53329d02e9e:
ipvs: Removed unused variables (2011-09-28 21:09:24 +0200)
are available in the git repository at:
git@github.com:horms/ipvs-next.git master
Simon Horman (2):
IPVS: secure_tcp does provide alternate state timeouts
IPVS: Enhance grammar used to refer to Kconfig options
Documentation/networking/ipvs-sysctl.txt | 14 ++++++--------
1 files changed, 6 insertions(+), 8 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] IPVS: secure_tcp does provide alternate state timeouts
2011-10-01 3:34 [GIT PULL nf-next] IPVS Simon Horman
@ 2011-10-01 3:34 ` Simon Horman
2011-10-01 3:34 ` [PATCH 2/2] IPVS: Enhance grammar used to refer to Kconfig options Simon Horman
2011-10-10 23:42 ` [GIT PULL nf-next] IPVS Pablo Neira Ayuso
2 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2011-10-01 3:34 UTC (permalink / raw)
To: Patrick McHardy, Pablo Neira Ayuso
Cc: lvs-devel, netdev, netfilter-devel, Wensong Zhang,
Julian Anastasov, Simon Horman
* Also reword the test to make it read more easily (to me)
Signed-off-by: Simon Horman <horms@verge.net.au>
---
Julian, I don't see that IPVS currently implements alternate
timeouts for secure_tcp. Am I missing something?
---
Documentation/networking/ipvs-sysctl.txt | 10 ++++------
1 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/Documentation/networking/ipvs-sysctl.txt b/Documentation/networking/ipvs-sysctl.txt
index 1dcdd49..13610e3 100644
--- a/Documentation/networking/ipvs-sysctl.txt
+++ b/Documentation/networking/ipvs-sysctl.txt
@@ -140,13 +140,11 @@ nat_icmp_send - BOOLEAN
secure_tcp - INTEGER
0 - disabled (default)
- The secure_tcp defense is to use a more complicated state
- transition table and some possible short timeouts of each
- state. In the VS/NAT, it delays the entering the ESTABLISHED
- until the real server starts to send data and ACK packet
- (after 3-way handshake).
+ The secure_tcp defense is to use a more complicated TCP state
+ transition table. For VS/NAT, it also delays entering the
+ TCP ESTABLISHED state until the three way handshake is completed.
- The value definition is the same as that of drop_entry or
+ The value definition is the same as that of drop_entry and
drop_packet.
sync_threshold - INTEGER
--
1.7.5.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] IPVS: Enhance grammar used to refer to Kconfig options
2011-10-01 3:34 [GIT PULL nf-next] IPVS Simon Horman
2011-10-01 3:34 ` [PATCH 1/2] IPVS: secure_tcp does provide alternate state timeouts Simon Horman
@ 2011-10-01 3:34 ` Simon Horman
2011-10-10 23:42 ` [GIT PULL nf-next] IPVS Pablo Neira Ayuso
2 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2011-10-01 3:34 UTC (permalink / raw)
To: Patrick McHardy, Pablo Neira Ayuso
Cc: lvs-devel, netdev, netfilter-devel, Wensong Zhang,
Julian Anastasov, Simon Horman
Reported-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Simon Horman <horms@verge.net.au>
---
Documentation/networking/ipvs-sysctl.txt | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/networking/ipvs-sysctl.txt b/Documentation/networking/ipvs-sysctl.txt
index 13610e3..f2a2488 100644
--- a/Documentation/networking/ipvs-sysctl.txt
+++ b/Documentation/networking/ipvs-sysctl.txt
@@ -30,7 +30,7 @@ conntrack - BOOLEAN
Connections handled by the IPVS FTP application module
will have connection tracking entries regardless of this setting.
- Only available when IPVS is compiled with the CONFIG_IP_VS_NFCT
+ Only available when IPVS is compiled with CONFIG_IP_VS_NFCT enabled.
cache_bypass - BOOLEAN
0 - disabled (default)
@@ -56,7 +56,7 @@ debug_level - INTEGER
11 - IPVS packet handling (ip_vs_in/ip_vs_out)
12 or more - packet traversal
- Only available when IPVS is compiled with the CONFIG_IP_VS_DEBUG
+ Only available when IPVS is compiled with CONFIG_IP_VS_DEBUG enabled.
Higher debugging levels include the messages for lower debugging
levels, so setting debug level 2, includes level 0, 1 and 2
--
1.7.5.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [GIT PULL nf-next] IPVS
2011-10-01 3:34 [GIT PULL nf-next] IPVS Simon Horman
2011-10-01 3:34 ` [PATCH 1/2] IPVS: secure_tcp does provide alternate state timeouts Simon Horman
2011-10-01 3:34 ` [PATCH 2/2] IPVS: Enhance grammar used to refer to Kconfig options Simon Horman
@ 2011-10-10 23:42 ` Pablo Neira Ayuso
2 siblings, 0 replies; 4+ messages in thread
From: Pablo Neira Ayuso @ 2011-10-10 23:42 UTC (permalink / raw)
To: Simon Horman
Cc: Patrick McHardy, lvs-devel, netdev, netfilter-devel,
Wensong Zhang, Julian Anastasov
On Sat, Oct 01, 2011 at 12:34:17PM +0900, Simon Horman wrote:
> Hi Pablo,
>
> please consider pulling the following to get some
> documentation changes from myself.
>
> The following changes since commit 6fa4dec85e199f31774faf29be26a53329d02e9e:
>
> ipvs: Removed unused variables (2011-09-28 21:09:24 +0200)
>
> are available in the git repository at:
> git@github.com:horms/ipvs-next.git master
>
> Simon Horman (2):
> IPVS: secure_tcp does provide alternate state timeouts
> IPVS: Enhance grammar used to refer to Kconfig options
>
> Documentation/networking/ipvs-sysctl.txt | 14 ++++++--------
Pulled, thanks Simon.
http://1984.lsi.us.es/git/?p=net-next/.git;a=shortlog;h=refs/heads/nf-next
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-10-10 23:42 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-01 3:34 [GIT PULL nf-next] IPVS Simon Horman
2011-10-01 3:34 ` [PATCH 1/2] IPVS: secure_tcp does provide alternate state timeouts Simon Horman
2011-10-01 3:34 ` [PATCH 2/2] IPVS: Enhance grammar used to refer to Kconfig options Simon Horman
2011-10-10 23:42 ` [GIT PULL nf-next] IPVS Pablo Neira Ayuso
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).