OpenSSH run configuration example for Debian GNU/Linux 11 (bullseye)

Get the default configuration file run for OpenSSH, optimized for Debian GNU/Linux 11 (bullseye). This example configuration ensures optimal compatibility and performance for OpenSSH, making it easy to set up and adjust to meet your needs.

Find and download the configuration file here: /etc/sv/ssh/run.

For more configurations and setup guides, visit our related files section to further customize your system.

    #!/usr/bin/env /lib/runit/invoke-run
set -e

NAME="ssh"

sv start auditd  || sv check auditd || true

# don't start if 'sshd_not_to_be_run' exists
test -e /etc/ssh/sshd_not_to_be_run && exit 161

#Create /run/sshd
test -d /run/sshd || mkdir /run/sshd && chmod 0755 /run/sshd

exec 2>&1

#Config test
/usr/sbin/sshd -t || exit 162

echo "Starting $NAME..."
exec /usr/sbin/sshd -D -e $SSHD_OPTS

    
  

Config Details

Location
/etc/sv/ssh/run
Operating system
Debian GNU/Linux 11 (bullseye)
Length
20 lines
MD5 checksum
411f69ac55d12f0c98998552846b1c78

Usage

Download the raw file with wget or curl

Wget

wget -O run.example https://exampleconfig.com/static/raw/openssh/debian11/etc/sv/ssh/run

cURL

curl https://exampleconfig.com/static/raw/openssh/debian11/etc/sv/ssh/run > run.example