From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4cR3ZS0hKhz2yVp for ; Tue, 16 Sep 2025 14:05:20 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature ECDSA (secp384r1) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R13" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4cR3ZS0Rgyz2xMF for ; Tue, 16 Sep 2025 14:05:20 +0000 (UTC) Received: from people01.haj.ipfire.org (people01.haj.ipfire.org [172.28.1.161]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature ECDSA (secp384r1) client-digest SHA384) (Client CN "people01.haj.ipfire.org", Issuer "E8" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4cR3ZQ3kZkz1xN for ; Tue, 16 Sep 2025 14:05:18 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1758031518; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=2ybyoHkuB5mrNGaEnEDdljPcUD1IbVy11puJx8h2PsY=; b=/D7jcA4fC0fetjPKYZYArBUVr3LeWnbCNKzIXjui1CCS8bxbKRh32wvfVaKIWmsykBzEFm z9pbB+R/z96ek9AQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1758031518; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=2ybyoHkuB5mrNGaEnEDdljPcUD1IbVy11puJx8h2PsY=; b=U1K6T7gBE4FzQSdUBRj8FVzsvAAlHy1/1qt8h8cJmlKXCXGYOm6flWwE60w7kumrYFFJws FGfb5658UrZ80Ri3KZleQtRMHjQmkqHBWc7WZqaphAQsY4C8cfIsM+O/gtCIBOvqHomCAh uhCQRyfNYx/WuSYZMmOIpW0I/5m7TsVbLCf8zWhYQln2exDEA/mxycmoj34YNtE+jgm15R Q5DUARMbmkoTDgkIuXAHfVq866HAj0GQ8jaImszfvD3W0dd0EenkCkzPz1qvK9FX8UThbJ BRL87NCQaQr/kM2v/EJejHjM1GK4lJ33joCw+ENiqtrhEpeA8L2xclHDdxu+xA== Received: by people01.haj.ipfire.org (Postfix, from userid 1000) id 4cR3ZQ0yCvz2xHq; Tue, 16 Sep 2025 14:05:18 +0000 (UTC) To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, core197, updated. 26f600100f173335b019221c4fc29b805190f99f X-Git-Refname: refs/heads/core197 X-Git-Reftype: branch X-Git-Oldrev: 124f2f2fa5dabbb27d57513cfa2c689dbf106425 X-Git-Newrev: 26f600100f173335b019221c4fc29b805190f99f Message-Id: <4cR3ZQ0yCvz2xHq@people01.haj.ipfire.org> Date: Tue, 16 Sep 2025 14:05:18 +0000 (UTC) From: Michael Tremer Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree". The branch, core197 has been updated via 26f600100f173335b019221c4fc29b805190f99f (commit) from 124f2f2fa5dabbb27d57513cfa2c689dbf106425 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 26f600100f173335b019221c4fc29b805190f99f Author: Michael Tremer Date: Tue Sep 16 14:04:16 2025 +0000 ovpnmain.cgi: Set the MTU to as sensible default This should allow us to send packets without using too much fragmentation in most cases when the actual interface still havs some decent packet sizes. Signed-off-by: Michael Tremer ----------------------------------------------------------------------- Summary of changes: html/cgi-bin/ovpnmain.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Difference in files: diff --git a/html/cgi-bin/ovpnmain.cgi b/html/cgi-bin/ovpnmain.cgi index fef135aa2..b63e5752c 100644 --- a/html/cgi-bin/ovpnmain.cgi +++ b/html/cgi-bin/ovpnmain.cgi @@ -128,7 +128,7 @@ my $col=""; # Advanced Settings "DPROTOCOL" => "udp", "DDEST_PORT" => 1194, - "DMTU" => 1500, + "DMTU" => 1420, "MAX_CLIENTS" => 100, "MSSFIX" => "off", "TLSAUTH" => "on", hooks/post-receive -- IPFire 2.x development tree