"sysctl -d net.inet.icmp.icmplim_output" says: net.inet.icmp.icmplim_output: Enable rate limiting of ICMP responses In fact, this setting does not control rate limiting of ICMP responses. Instead, it controls whether kernel writes log messages about this limiting or not. Fix: Change wording in src/sys/netinet/ip_icmp.c for this setting. How-To-Repeat: See above.
Responsible Changed From-To: freebsd-bugs->eadler I'll take it.
Author: eadler (ports committer) Date: Sat Jan 7 00:11:36 2012 New Revision: 229749 URL: http://svn.freebsd.org/changeset/base/229749 Log: - Fix sysctl description PR: 163623 Submitted by: Eugene Grosbein <eugen@eg.sd.rdtc.ru> Approved by: bz Modified: head/sys/netinet/ip_icmp.c Modified: head/sys/netinet/ip_icmp.c ============================================================================== --- head/sys/netinet/ip_icmp.c Sat Jan 7 00:07:23 2012 (r229748) +++ head/sys/netinet/ip_icmp.c Sat Jan 7 00:11:36 2012 (r229749) @@ -89,7 +89,7 @@ static VNET_DEFINE(int, icmplim_output) #define V_icmplim_output VNET(icmplim_output) SYSCTL_VNET_INT(_net_inet_icmp, OID_AUTO, icmplim_output, CTLFLAG_RW, &VNET_NAME(icmplim_output), 0, - "Enable rate limiting of ICMP responses"); + "Enable logging of ICMP response rate limiting"); #ifdef INET VNET_DEFINE(struct icmpstat, icmpstat); _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
State Changed From-To: open->patched committed in r229749
State Changed From-To: patched->closed Committed. Thanks!