Remove RSA1 keys as only SSH version 2 is used
This commit is contained in:
parent
cc22c8a1ae
commit
4ea75dfcbe
2 changed files with 0 additions and 5 deletions
|
@ -1,10 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# Check if host keys are present, else create them
|
# Check if host keys are present, else create them
|
||||||
if ! test -f /data/ssh/ssh_host_key; then
|
|
||||||
ssh-keygen -q -f /data/ssh/ssh_host_key -N '' -t rsa1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if ! test -f /data/ssh/ssh_host_rsa_key; then
|
if ! test -f /data/ssh/ssh_host_rsa_key; then
|
||||||
ssh-keygen -q -f /data/ssh/ssh_host_rsa_key -N '' -t rsa
|
ssh-keygen -q -f /data/ssh/ssh_host_rsa_key -N '' -t rsa
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -4,7 +4,6 @@ ListenAddress 0.0.0.0
|
||||||
ListenAddress ::
|
ListenAddress ::
|
||||||
Protocol 2
|
Protocol 2
|
||||||
LogLevel INFO
|
LogLevel INFO
|
||||||
HostKey /data/ssh/ssh_host_key
|
|
||||||
HostKey /data/ssh/ssh_host_rsa_key
|
HostKey /data/ssh/ssh_host_rsa_key
|
||||||
HostKey /data/ssh/ssh_host_dsa_key
|
HostKey /data/ssh/ssh_host_dsa_key
|
||||||
HostKey /data/ssh/ssh_host_ecdsa_key
|
HostKey /data/ssh/ssh_host_ecdsa_key
|
||||||
|
|
Reference in a new issue