Re: [tsvwg] SCTP ABC

"Gorry (erg)" <gorry@erg.abdn.ac.uk> Thu, 24 June 2021 07:45 UTC

Return-Path: <gorry@erg.abdn.ac.uk>
X-Original-To: tsvwg@ietfa.amsl.com
Delivered-To: tsvwg@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 111393A0D90 for <tsvwg@ietfa.amsl.com>; Thu, 24 Jun 2021 00:45:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.899
X-Spam-Level:
X-Spam-Status: No, score=-1.899 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VxXaw9WS2V2E for <tsvwg@ietfa.amsl.com>; Thu, 24 Jun 2021 00:45:40 -0700 (PDT)
Received: from pegasus.erg.abdn.ac.uk (pegasus.erg.abdn.ac.uk [IPv6:2001:630:42:150::2]) by ietfa.amsl.com (Postfix) with ESMTP id B1F8A3A0D89 for <tsvwg@ietf.org>; Thu, 24 Jun 2021 00:45:40 -0700 (PDT)
Received: from [10.6.159.235] (unknown [185.69.144.246]) by pegasus.erg.abdn.ac.uk (Postfix) with ESMTPSA id D3B891B00238; Thu, 24 Jun 2021 08:45:29 +0100 (BST)
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
From: "Gorry (erg)" <gorry@erg.abdn.ac.uk>
Mime-Version: 1.0 (1.0)
Date: Thu, 24 Jun 2021 08:45:28 +0100
Message-Id: <591ED4DE-4649-423E-9A2A-123A864D498F@erg.abdn.ac.uk>
References: <376640B5-D7BB-4E4E-8E97-374A7014C3EF@fh-muenster.de>
Cc: tsvwg@ietf.org
In-Reply-To: <376640B5-D7BB-4E4E-8E97-374A7014C3EF@fh-muenster.de>
To: Timo Völker <timo.voelker@fh-muenster.de>
X-Mailer: iPhone Mail (18D70)
Archived-At: <https://mailarchive.ietf.org/arch/msg/tsvwg/E6Gk0pg2cXPAMP6tw37YulAQxTI>
Subject: Re: [tsvwg] SCTP ABC
X-BeenThere: tsvwg@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Transport Area Working Group <tsvwg.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/tsvwg>, <mailto:tsvwg-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/tsvwg/>
List-Post: <mailto:tsvwg@ietf.org>
List-Help: <mailto:tsvwg-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/tsvwg>, <mailto:tsvwg-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 24 Jun 2021 07:45:45 -0000

See below:

> On 23 Jun 2021, at 16:02, Timo Völker <timo.voelker@fh-muenster.de> wrote:
> 
> Hi,
> 
> SCTP (RFC4960) limits the increase of its cwnd in slow start to one PMTU (or PMDCS as named in the rfc4960-bis document) as stated in Section 7.2.1. This means the cwnd may be increased less when the receiver sends an ack on every second packet compared to on every packet.
> 
> ---
> Ex:
> 1. A sender in slow start with PMTU=1200 sends two packets with 1000 byte of data each.
> 
>> DATA(len=1000, tsn=1)
>> DATA(len=1000, tsn=2)
> 
> 2a. In case the receiver sends an ack on every packet, the sender receives two acks.
> 
> < ACK(cum_tsn=1)
> --> cwnd += 1000
> < ACK(cum_tsn=2)
> --> cwnd += 1000
> 
> resulting in a cwnd increased by 2000 byte.
> 
> 2b. In case the receiver sends an ack on every second packet, the sender receives one ack for both packets.
> 
> < ACK(cum_tsn=2)
> --> cwnd += 1200
> 
> resulting in a cwnd increased by only 1200 byte due to the PMTU limit.
> ---
> 
> TCP's Appropriate Byte Counting (ABC) specified in RFC3465 addresses that with the parameter L set to 2*SMSS.
> 
> Adding a note for that in rfc4960-bis would help, I think.
> 
> Timo

What do others think?

Are the SCTP implementors happy with this proposal?

Gorry