Displaying 5 results from an estimated 5 matches for "sshd_disable_auth".
2024 Jun 27
1
Proposal to add a DisableAuthentication option to sshd ServerOptions
Thanks for the pointer!
I played around with PamServiceName set to 'sshd_disable_auth' and got it
working with the minimum contents below in the file
/etc/pam.d/sshd_disable_auth.
auth required pam_permit.so
account required pam_permit.so
session required pam_permit.so
Thus, this does indeed enable disabling authentication.
Unfortunately, as far as I can tell, only root can c...
2024 Jun 27
1
Proposal to add a DisableAuthentication option to sshd ServerOptions
...#39;m not a maintainer, but my personal opinion is that it's probably
easier to prepare a container with this pam configuration
On Thu, Jun 27, 2024 at 2:26?PM Henry Qin <hq6 at cs.stanford.edu> wrote:
>
> Thanks for the pointer!
> I played around with PamServiceName set to 'sshd_disable_auth' and got it working with the minimum contents below in the file /etc/pam.d/sshd_disable_auth.
>
> auth required pam_permit.so
> account required pam_permit.so
> session required pam_permit.so
>
> Thus, this does indeed enable disabling authentication.
>
> Unfortunately,...
2024 Jun 27
1
Proposal to add a DisableAuthentication option to sshd ServerOptions
...y personal opinion is that it's probably
> easier to prepare a container with this pam configuration
>
> On Thu, Jun 27, 2024 at 2:26?PM Henry Qin <hq6 at cs.stanford.edu> wrote:
> >
> > Thanks for the pointer!
> > I played around with PamServiceName set to 'sshd_disable_auth' and got
> it working with the minimum contents below in the file
> /etc/pam.d/sshd_disable_auth.
> >
> > auth required pam_permit.so
> > account required pam_permit.so
> > session required pam_permit.so
> >
> > Thus, this does indeed enable disabling a...
2024 Jun 27
1
Proposal to add a DisableAuthentication option to sshd ServerOptions
...at it's probably
>> easier to prepare a container with this pam configuration
>>
>> On Thu, Jun 27, 2024 at 2:26?PM Henry Qin <hq6 at cs.stanford.edu> wrote:
>> >
>> > Thanks for the pointer!
>> > I played around with PamServiceName set to 'sshd_disable_auth' and got it working with the minimum contents below in the file /etc/pam.d/sshd_disable_auth.
>> >
>> > auth required pam_permit.so
>> > account required pam_permit.so
>> > session required pam_permit.so
>> >
>> > Thus, this does indeed enab...
2024 Jun 27
1
Proposal to add a DisableAuthentication option to sshd ServerOptions
see pam_permit(8)
On Thu, Jun 27, 2024 at 10:37?AM Henry Qin <hq6 at cs.stanford.edu> wrote:
>
> When I looked at `man pam_unix`, I did not see any obvious options that
> would
> cause ssh to authenticate without prompting for a password at all, short of
> setting an empty password which is similar to PermitEmptyPasswords option.
>
> However, I am not very familiar