Skip to main content
added 16 characters in body
Source Link
thecarpy
  • 4.4k
  • 1
  • 19
  • 37

Looking at the error, send_pubkey_test: no mutual signature algorithm usually hints at a more recent OpenSSH client that no longer supports certain algorithms and hence you need to whitelist them.

You can issue:

ssh -Q PubkeyAcceptedAlgorithms

To get a list of allowed algorithms.

I took the solution from atlassian help

Add PubkeyAcceptedKeyTypes +ssh-rsaPubkeyAcceptedKeyTypes +ssh-rsa to ssh_configyour ./ssh/ssh_config

Another solution is

ssh-keygen -t ed25519 -C "[email protected]"

To create a new key, add to .ssh/authorized_keys and you should be good to go.

Looking at the error, send_pubkey_test: no mutual signature algorithm usually hints at a more recent OpenSSH client that no longer supports certain algorithms and hence you need to whitelist them.

You can issue:

ssh -Q PubkeyAcceptedAlgorithms

To get a list of allowed algorithms.

I took the solution from atlassian help

Add PubkeyAcceptedKeyTypes +ssh-rsa to ssh_config

Another solution is

ssh-keygen -t ed25519 -C "[email protected]"

To create a new key, add to ssh/authorized_keys and you should be good to go.

Looking at the error, send_pubkey_test: no mutual signature algorithm usually hints at a more recent OpenSSH client that no longer supports certain algorithms and hence you need to whitelist them.

You can issue:

ssh -Q PubkeyAcceptedAlgorithms

To get a list of allowed algorithms.

I took the solution from atlassian help

Add PubkeyAcceptedKeyTypes +ssh-rsa to your ./ssh/ssh_config

Another solution is

ssh-keygen -t ed25519 -C "[email protected]"

To create a new key, add to .ssh/authorized_keys and you should be good to go.

added 216 characters in body
Source Link
thecarpy
  • 4.4k
  • 1
  • 19
  • 37

Looking at the error, send_pubkey_test: no mutual signature algorithm usually hints at a more recent OpenSSH client that no longer supports certain algorithms and hence you need to whitelist them.

You can issue:

ssh -Q PubkeyAcceptedAlgorithms

To get a list of allowed algorithms.

I took the solution from atlassian help

Add PubkeyAcceptedKeyTypes +ssh-rsa to ssh_config

Another solution is

ssh-keygen -t ed25519 -C "[email protected]"

To create a new key, add to ssh/authorized_keys and you should be good to go.

Looking at the error, send_pubkey_test: no mutual signature algorithm usually hints at a more recent OpenSSH client that no longer supports certain algorithms and hence you need to whitelist them.

You can issue:

ssh -Q PubkeyAcceptedAlgorithms

To get a list of allowed algorithms.

I took the solution from atlassian help

Looking at the error, send_pubkey_test: no mutual signature algorithm usually hints at a more recent OpenSSH client that no longer supports certain algorithms and hence you need to whitelist them.

You can issue:

ssh -Q PubkeyAcceptedAlgorithms

To get a list of allowed algorithms.

I took the solution from atlassian help

Add PubkeyAcceptedKeyTypes +ssh-rsa to ssh_config

Another solution is

ssh-keygen -t ed25519 -C "[email protected]"

To create a new key, add to ssh/authorized_keys and you should be good to go.

Source Link
thecarpy
  • 4.4k
  • 1
  • 19
  • 37

Looking at the error, send_pubkey_test: no mutual signature algorithm usually hints at a more recent OpenSSH client that no longer supports certain algorithms and hence you need to whitelist them.

You can issue:

ssh -Q PubkeyAcceptedAlgorithms

To get a list of allowed algorithms.

I took the solution from atlassian help