You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
## |
|
## sshd_config -- OpenSSH Daemon Configuration |
|
## |
|
|
|
Port 22 |
|
ListenAddress 127.0.0.1 |
|
|
|
Subsystem sftp @l_prefix@/libexec/openssh/sftp-server |
|
|
|
HostKey @l_prefix@/etc/openssh/ssh_host_rsa_key |
|
HostKey @l_prefix@/etc/openssh/ssh_host_dsa_key |
|
HostKey @l_prefix@/etc/openssh/ssh_host_ecdsa_key |
|
HostKey @l_prefix@/etc/openssh/ssh_host_ed25519_key |
|
|
|
PidFile @l_prefix@/var/openssh/run/openssh.pid |
|
SyslogFacility AUTH |
|
LogLevel INFO |
|
|
|
HostKeyAlgorithms +ssh-dss |
|
PubkeyAcceptedKeyTypes +ssh-dss |
|
|
|
PubkeyAuthentication yes |
|
PasswordAuthentication yes |
|
HostbasedAuthentication no |
|
ChallengeResponseAuthentication no |
|
|
|
StrictModes yes |
|
IgnoreRhosts yes |
|
GatewayPorts no |
|
AllowTcpForwarding yes |
|
X11Forwarding no |
|
Compression yes |
|
|
|
LoginGraceTime 2m |
|
MaxStartups 10:30:60 |
|
PermitRootLogin no |
|
PermitEmptyPasswords no |
|
UseDNS yes |
|
PrintMotd yes |
|
PermitUserEnvironment yes |
|
|
|
|