Unable to forward credentials to Kerberos when using SSH

I’ve just recently installed Manjaro, was using Ubuntu beforehand with a password-less SSH setup:

  1. run kinit user@DOMAIN
  2. ssh without password on certain hosts that are configured in ssh config file with
  GSSAPIAuthentication yes
  GSSAPIDelegateCredentials yes

Replicating this setup on Manjaro proved difficult. I’ve installed krb5 with pacman and logged in successfully with kinit, copied the ssh config file, but the ssh authentication is still requiring a password. Running with -v shows the following error:

debug1: Next authentication method: gssapi-with-mic
debug1: Delegating credentials
debug1: Delegating credentials
debug1: An invalid name was supplied
Success


debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,password,keyboard-interactive
debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,password,keyboard-interactive
debug1: Next authentication method: publickey

Could someone help me find a solution for a password-less login?