The single biggest security win
Once every device on your fleet has SSH keys installed (Track 2), turn off password authentication entirely on every server. This eliminates brute-force attacks at the protocol level — there's nothing for an attacker to guess. Move from "strong password and hope" to "key-only and laugh at the auth log."
What to set in sshd_config
Three directives, one restart, done. PasswordAuthentication no turns off plain passwords. KbdInteractiveAuthentication no turns off the legacy keyboard-interactive flow that was historically used to backdoor password auth. PubkeyAuthentication yes ensures key auth is explicitly on.