Author:
erics, May 19th, 2023
I was unable to login from my old iMac running Yosemite to my new iMac running Ventura using RSA keys. It turns out that RSA key support was disabled in Ventura. To correct the problem, I added the following two lines to the bottom of /etc/ssh/sshd_config:
|
HostkeyAlgorithms +ssh-rsa PubkeyAcceptedAlgorithms +ssh-rsa |
Categories: How-To's, Technology Tags: denied, HostKeyAlgorithms, howto, key, login, MacOS, OSX, Permission, Pubkey, PubkeyAcceptedAlgorithms, PublicKey, RSA, ssh, sshd, tips, Ventura, Yosemite
|
No comments
Author:
erics, February 24th, 2023
SSH login from older hosts running OS X Yosemite 10.10.5 to macOS Ventura 13.2.1 was not working. SSH failed with a “No hostkey alg” error.
|
vi /etc/ssh/sshd_config HostKeyAlgorithms +ssh-rsa,ssh-dss PubkeyAcceptedKeyTypes +ssh-rsa,ssh-dss |
Be sure to stop and start Remote Login under System Settings -> General -> Sharing
Categories: How-To's, Technology Tags: dss, HostKeyAlgorithms, howto, MacOS, PubkeyAcceptedKeyTypes, RSA, ssh, ssh-dss, ssh-rsa, sshd, sshd_config, tips, Ventura, Yosemite
|
No comments
Author:
erics, January 10th, 2020
|
openssl rsa -in ~/.ssh/id_rsa -out ~/.ssh/id_rsa.pem |
Categories: How-To's, Technology Tags: .pem, convert, howto, id_rsa, id_rsa.pem, id_rsa.pub, key, openssl, Private, private key, RSA, ssl, tips
|
No comments
Author:
erics, December 9th, 2016
Recently I had to launch an Ubuntu instance in AWS because i needed to run alien to convert a .rpm into a .deb package. When I added my SSH keys as usual, I found I was still unable to login. This is the error from the /var/log/auth.log file: Dec 9 16:47:55 localhost sshd[1550]: userauth_pubkey: key […]
Categories: How-To's, Technology Tags: DSA, howto, Linux, OpenSSH, PubkeyAcceptedKeyTypes, RSA, ssh, ssh-dss, ssh-rsa, ssh7, sshd, sshv7, tips, Ubuntu
|
No comments
Author:
erics, October 11th, 2011
Create the server key from your original private key by removing the pass-phase:
|
openssl rsa -in key.pem -out server.key |
These are the files that NetSol provided me in the download .zip file (domain name changed to protect the innocent):
|
AddTrustExternalCARoot.crt NetworkSolutionsAddTrustEVServerCA.crt NetworkSolutionsEVServerCA.crt WWW.YOURDOMAIN.COM.crt |
Network Solutions does not make it easy on you – in the install docs they tell you there is yet […]
Categories: How-To's, Technology Tags: conf.d, EV, EV SSL, howto, httpd.conf, key, NetSol, Network Solutions, openssl, private key, RSA, server.key, ssl, ssl.conf, tips
|
2 comments