Log into local SSH shell over guacamole

guacamolelocalhostssh

So I want to use guacamole to access the 127.0.0.1 ssh shell.

I have disabled plain text password auth and root login. Using a private for my normal ssh sessions.

Is there a way to allow localhost logins to be authenticated with password in the sshd config?

Thanks!

Best Answer

Re-enable it in a Match block.

PasswordAuthentication no
ChallengeResponseAuthentication no

Match Address ::1
    PasswordAuthentication yes

Match Address 127.0.0.1
    PasswordAuthentication yes
Related Question