From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 40459C4708D for ; Tue, 13 Dec 2022 11:27:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235202AbiLML07 (ORCPT ); Tue, 13 Dec 2022 06:26:59 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60550 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235025AbiLML0d (ORCPT ); Tue, 13 Dec 2022 06:26:33 -0500 Received: from mail.netfilter.org (mail.netfilter.org [217.70.188.207]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 3492F1AD90; Tue, 13 Dec 2022 03:26:32 -0800 (PST) Date: Tue, 13 Dec 2022 12:26:28 +0100 From: Pablo Neira Ayuso To: Sriram Yagnaraman Cc: netdev@vger.kernel.org, netfilter-devel@vger.kernel.org Subject: Re: [PATCH] netfilter: conntrack: document sctp timeouts Message-ID: References: <20221212100705.12073-1-sriram.yagnaraman@est.tech> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20221212100705.12073-1-sriram.yagnaraman@est.tech> Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Maybe I add your Signed-off-by: tag to this patch? Signed-off-by: Sriram Yagnaraman Thanks. On Mon, Dec 12, 2022 at 11:07:05AM +0100, Sriram Yagnaraman wrote: > --- > .../networking/nf_conntrack-sysctl.rst | 33 +++++++++++++++++++ > 1 file changed, 33 insertions(+) > > diff --git a/Documentation/networking/nf_conntrack-sysctl.rst b/Documentation/networking/nf_conntrack-sysctl.rst > index 1120d71f28d7..49db1d11d7c4 100644 > --- a/Documentation/networking/nf_conntrack-sysctl.rst > +++ b/Documentation/networking/nf_conntrack-sysctl.rst > @@ -163,6 +163,39 @@ nf_conntrack_timestamp - BOOLEAN > > Enable connection tracking flow timestamping. > > +nf_conntrack_sctp_timeout_closed - INTEGER (seconds) > + default 10 > + > +nf_conntrack_sctp_timeout_cookie_wait - INTEGER (seconds) > + default 3 > + > +nf_conntrack_sctp_timeout_cookie_echoed - INTEGER (seconds) > + default 3 > + > +nf_conntrack_sctp_timeout_established - INTEGER (seconds) > + default 432000 (5 days) > + > +nf_conntrack_sctp_timeout_shutdown_sent - INTEGER (seconds) > + default 0.3 > + > +nf_conntrack_sctp_timeout_shutdown_recd - INTEGER (seconds) > + default 0.3 > + > +nf_conntrack_sctp_timeout_shutdown_ack_sent - INTEGER (seconds) > + default 3 > + > +nf_conntrack_sctp_timeout_heartbeat_sent - INTEGER (seconds) > + default 30 > + > + This timeout is used to setup conntrack entry on secondary paths. > + Default is set to hb_interval. > + > +nf_conntrack_sctp_timeout_heartbeat_acked - INTEGER (seconds) > + default 210 > + > + This timeout is used to setup conntrack entry on secondary paths. > + Default is set to (hb_interval * path_max_retrans + rto_max) > + > nf_conntrack_udp_timeout - INTEGER (seconds) > default 30 > > -- > 2.34.1 >