Re: [PATCH] ARP: Update Kconfig to allow configuration of CONFIG_IP_ACCEPT_UNSOLICITED_ARP

2006-02-01 Thread Neil Horman
On Tue, Jan 31, 2006 at 04:52:47PM -0800, David S. Miller wrote: From: David S. Miller [EMAIL PROTECTED] Date: Tue, 31 Jan 2006 16:51:12 -0800 (PST) replying to myself... Kill this config option, and instead use a sysctl and make it off by default. People can twiddle /etc/sysctl.conf

Re: [PATCH] ARP: Update Kconfig to allow configuration of CONFIG_IP_ACCEPT_UNSOLICITED_ARP

2006-02-01 Thread Neil Horman
As promised, new patch attached, that makes accepting gratuitous arps a dynamically configurable option. Tested successfully by me. Thanks Regards Neil Signed-off-by: Neil Horman [EMAIL PROTECTED] include/linux/inetdevice.h |1 + include/linux/sysctl.h |3 ++- net/ipv4/arp.c

Re: [PATCH] ARP: Update Kconfig to allow configuration of CONFIG_IP_ACCEPT_UNSOLICITED_ARP

2006-02-01 Thread John W. Linville
On Wed, Feb 01, 2006 at 04:37:53PM -0500, Neil Horman wrote: As promised, new patch attached, that makes accepting gratuitous arps a dynamically configurable option. Tested successfully by me. Probably need some documentation for this, no? John -- John W. Linville [EMAIL PROTECTED] - To

Re: [PATCH] ARP: Update Kconfig to allow configuration of CONFIG_IP_ACCEPT_UNSOLICITED_ARP

2006-02-01 Thread Neil Horman
On Wed, Feb 01, 2006 at 08:54:36PM -0500, John W. Linville wrote: On Wed, Feb 01, 2006 at 04:37:53PM -0500, Neil Horman wrote: As promised, new patch attached, that makes accepting gratuitous arps a dynamically configurable option. Tested successfully by me. Probably need some

[PATCH] ARP: Update Kconfig to allow configuration of CONFIG_IP_ACCEPT_UNSOLICITED_ARP

2006-01-31 Thread Neil Horman
Patch to add CONFIG_IP_ACCEPT_UNSOLICITED_ARP to Kconfig. Currently we have code in place to accept gratuitous arp replies, but the code is disabled by the above config option, and there is no way to turn it on. This patch adds the ability to turn this option on. Tested successfully by me.

Re: [PATCH] ARP: Update Kconfig to allow configuration of CONFIG_IP_ACCEPT_UNSOLICITED_ARP

2006-01-31 Thread David S. Miller
From: Neil Horman [EMAIL PROTECTED] Date: Tue, 31 Jan 2006 15:05:54 -0500 Patch to add CONFIG_IP_ACCEPT_UNSOLICITED_ARP to Kconfig. Currently we have code in place to accept gratuitous arp replies, but the code is disabled by the above config option, and there is no way to turn it on. This