Fixing SSH Too Many Authentication Failures
Error :
Received disconnect from 192.168.33.14 port 22:2: Too many authentication failures
Background :
To Many Identities in SSH Client side
Fixing:
ssh -o IdentitiesOnly=yes username@yourserver
Or You can add in Config SSH as Default
~/.ssh/config
Host *
IdentitiesOnly=yes
PreferredAuthentications=publickey,keyboard-interactive,password
AddressFamily inet
Protocol 2
Compression yes
ServerAliveInterval 60
ServerAliveCountMax 20
AddKeysToAgent yes
StrictHostKeyChecking no
UserKnownHostsFile /dev/null
CheckHostIP no
UpdateHostKeys no
LogLevel quiet