netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] do not give access to 1-1024 ports for autobinding
@ 2007-10-10 14:34 Denis V. Lunev
  2007-10-10 15:41 ` Stephen Hemminger
  2007-10-10 22:52 ` David Miller
  0 siblings, 2 replies; 7+ messages in thread
From: Denis V. Lunev @ 2007-10-10 14:34 UTC (permalink / raw)
  To: davem; +Cc: netdev, den

This patch prevents possibility to give 1-1024 port range for autobinding.
{1, 1} may only takes some sense for deep embedded people.

Signed-off-by: Denis V. Lunev <den@openvz.org>

--- ./net/ipv4/sysctl_net_ipv4.c.port2	2007-10-10 17:46:48.000000000 +0400
+++ ./net/ipv4/sysctl_net_ipv4.c	2007-10-10 18:08:00.000000000 +0400
@@ -25,7 +25,7 @@ extern int sysctl_ip_nonlocal_bind;
 #ifdef CONFIG_SYSCTL
 static int zero;
 static int tcp_retr1_max = 255;
-static int ip_local_port_range_min[] = { 1, 1 };
+static int ip_local_port_range_min[] = { 1024, 1024 };
 static int ip_local_port_range_max[] = { 65535, 65535 };
 #endif
 

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2007-10-10 22:55 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-10 14:34 [PATCH] do not give access to 1-1024 ports for autobinding Denis V. Lunev
2007-10-10 15:41 ` Stephen Hemminger
2007-10-10 16:59   ` Denis V. Lunev
2007-10-10 17:12     ` Stephen Hemminger
2007-10-10 22:55     ` David Miller
2007-10-10 22:51   ` David Miller
2007-10-10 22:52 ` David Miller

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).