SSH ISSUES
my experience with ssh troubleshooting

What is SSH?
Comparable to HTTP, or hypertext transfer protocol, which is the protocol used to send hypertext like web pages, SSH, or Secure Shell, is a network communication protocol that enables two computers to communicate and share data.
Why use SSH?
SSH is suited for usage over insecure networks due to an inherent feature that encrypts communication between the two computers.
My Trouble
unable to negotiate with 10.10.137.100 port 2222: no matching host key type found. their offer: ssh-rsa
How To Patch
nano $HOME/.ssh/config
#put this config and save
Host 10.10.137.100
User james
PubkeyAcceptedAlgorithms +ssh-rsa
HostkeyAlgorithms +ssh-rsa
#don't forget to change the Host and User
After All Run The SSH Again.