From: "Peter Müller" <peter.mueller@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 1/5] sshd: Do not generate new RSA host key on first boot
Date: Fri, 20 Sep 2024 14:20:18 +0000 [thread overview]
Message-ID: <20240920142022.589371-1-peter.mueller@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 1720 bytes --]
This patch will also ensure the maximum supported key length
is used for ECDSA. Existing installations will remain unaffected.
Note that the key size for ED25519 is fixed, and explicitly
setting it to 521 bytes will not have any impact.
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
src/initscripts/system/sshd | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/initscripts/system/sshd b/src/initscripts/system/sshd
index fa40bc11d..e5a9931af 100644
--- a/src/initscripts/system/sshd
+++ b/src/initscripts/system/sshd
@@ -2,7 +2,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2022 IPFire Team <info(a)ipfire.org> #
+# Copyright (C) 2007-2024 IPFire Team <info(a)ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -24,14 +24,14 @@
case "$1" in
start)
- for algo in rsa ecdsa ed25519; do
+ for algo in ecdsa ed25519; do
keyfile="/etc/ssh/ssh_host_${algo}_key"
# If the key already exists, there is nothing to do.
[ -e "${keyfile}" ] && continue
boot_mesg "Generating SSH key (${algo})..."
- ssh-keygen -qf "${keyfile}" -N '' -t ${algo}
+ ssh-keygen -qf "${keyfile}" -N '' -b 521 -t ${algo}
evaluate_retval
done
--
2.39.5
next reply other threads:[~2024-09-20 14:20 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-20 14:20 Peter Müller [this message]
2024-09-20 14:20 ` [PATCH 2/5] apache: Drop RSA key and certificate generation Peter Müller
2024-09-20 14:20 ` [PATCH 3/5] sshd_config: Drop RSA key Peter Müller
2024-09-20 14:20 ` [PATCH 4/5] Drop RSA key and certificate from HTTPS configuration Peter Müller
2024-09-20 14:20 ` [PATCH 5/5] backup: No longer save RSA keys Peter Müller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240920142022.589371-1-peter.mueller@ipfire.org \
--to=peter.mueller@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox