Displaying 1 result from an estimated 1 matches for "particharl".
Did you mean:
partical
2024 Oct 12
1
A question about LDAP Public Key authentication with openssh 9.8p1
...txt->valid = 1.
3. After enabling sshd debug logs, I got below two error messages:
sshd-session[1889]: debug2: userauth_pubkey: invalid user testuser querying
public key rsa-sha2-512 <RSA pub key>
sshd-session[1889]: debug2: userauth_pubkey: disabled because of invalid
user [preauth]
In particharl, the latter was generated by the below code:
if (!authctxt->valid || authctxt->user == NULL) {
debug2_f("disabled because of invalid user");
goto done;
}
4. Putting the #2 and #3 points above together,...