ssh keygen RSA versus DSA
Fri, 05/06/2011 - 10:55 — sandipWhile generating ssh keys, I usually use RSA type since it can be used to generate 2048 bits key, while DSA is restricted to exactly 1024 bits.
ssh-keygen -t rsa -b 2048- sandip's blog
- Login or register to post comments
- Read more
Verifying SSH Key Fingerprint
Thu, 01/01/2009 - 21:02 — sandipIf you've been given a public ssh host key and want to verify it before adding it permanently to your ssh known_hosts file:
Get the public ssh key:
$ ssh-keyscan -p 22 -t rsa,dsa {remote_host} > /tmp/ssh_host_rsa_dsa_key.pubGet the ssh key fingerprint:
$ ssh-keygen -l -f /tmp/ssh_host_rsa_dsa_key.pubChecking Ubuntu Servers for openssh and openssl vulnerable keys
Sun, 06/22/2008 - 21:33 — sandip-
Update openssh and openssl packages
# apt-get update
# apt-get install openssh openssl# apt-get install openssh-blacklist openssl-blacklist# ssh-vulnkeys -a# openssl-vulnkeys *.key *.pemNote: Plesk specific ssl certs are stored at "/opt/psa/var/certificates/"
- sandip's blog
- Login or register to post comments