Does OTP's ssh daemon support SSH w/certificates?

Important rsa is deprecated by default on recent otp releases . Add this in sys.config as workaround .

{ssh, [{modify_algorithms,
[{append, [{kex,[‘diffie-hellman-group1-sha1’]}]}
,{prepend, [{public_key,[‘ssh-rsa’]}]}
]
}
]
}

1 Like