Displaying 20 results from an estimated 3000 matches similar to: "Specifying SSHD PAM service name in the configuration file"
2003 Mar 26
1
Changing PAM service name in sshd_config, or running sshd as non-root
Currently, openssh's PAM service name is a compile-time choice.
That's fine when one uses one sshd to serve normal shell logins
and the like. But this will not work IF sshd is nor run as
root (which I don't want it to do), because pam_open_session
usually requires access to one's shadow information (for account
expiration perhaps?), and there is no way (and need: this sshd
is
2014 Jun 18
15
[Bug 2246] New: PAM enhancements for OpenSSH server
https://bugzilla.mindrot.org/show_bug.cgi?id=2246
Bug ID: 2246
Summary: PAM enhancements for OpenSSH server
Product: Portable OpenSSH
Version: 6.6p1
Hardware: Sparc
OS: Solaris
Status: NEW
Severity: enhancement
Priority: P5
Component: PAM support
Assignee: unassigned-bugs at
2002 Jun 21
4
configure problem --- Can't find recent OpenSSL libcrypto
Hello Gurus,
I tried my best as I can to do RTFM and Googling to find any information to
solve the problem myself which I failed.
I installed OpenSSL 0.9.6d 9 May 2002 with this option on a Solaris 8 box
using Sun Forte6-2
$config solaris64-sparcv9-cc --prefix=/local/santanu/pkg/ssl
Now I am trying to install openssh 3.2.3p1 and getting this error.
configure:8285: error: *** Can't find
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 create files
2002 Dec 05
1
patch to add a PAMServiceName config option
I append a patch against openssh-3.5p1.tar.gz which adds a config option
PAMServiceName. The option allows one to specify the PAM service at
runtime in the config file rather than using __progname or having it
hardwired to SSHD_PAM_SERVICE at compile time. I expect this to be useful
if one wants to run multiple instances of sshd using different PAM
configurations.
With this patch
2024 Jun 27
1
Proposal to add a DisableAuthentication option to sshd ServerOptions
i'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
2007 May 02
2
how to reproduce the same sampled units?
Hi all,
Is it possible to generate the same sample number of times in R? In
SAS, using the option "seed" it is possible to reproduce exactly the
same sample. Is there any such feature in R which I can use?
For further clarity,
for (i in 1:2)
{
samp = sample(1:1000,100,replace = FALSE)
print(samp)
}
For the above simulation, is it possible to generate the same sampled
units
2011 Jan 05
1
Reading large SAS dataset in R
Hi all,
I have a large (approx. 1 GB) SAS dataset (test.sas7bdat) located in the
server (“R:/” directory). I have SAS 9.1 installed in my PC and I can read
the SAS dataset in SAS, under a windows environment, after assigning libname
in "R:\" directory.
Now I am trying to read the SAS dataset in R (R 2.12.0) using the read.ssd
function of the “foreign” package, but I get an error
2007 Oct 24
1
plot within a loop
Hi ,
I'm having problem with the following plot. Basically I have to do
51(length of d, see below) plots. I want 6 plots (say) in a page and
rests are in different pages. win.graph() starts a plot in new page. But
I'm not being able to combine par(mfrow = c(3,2)) and win.graph() within
a loop.
> d
[1] 14.108 13.883 11.022 13.426 2.341 9.010 12.868 15.603 30.810
3.931 11.825
2024 Jun 27
1
Proposal to add a DisableAuthentication option to sshd ServerOptions
I would like to understand your opinion a little more deeply.
Are you suggesting that it's easier to (prepare the container and add a
line at runtime) compared to (add a line to an sshd config at runtime)? The
latter scenario would be the case if the patch is merged.
Or did you mean that it's easier to prepare the container than to implement
a correct patch into sshd to enable the option
2003 Jun 11
2
[Patch] PAM Service name option
It's sometimes desired to be able to alter login policy depending upon
how the person was connecting for the ssh server. For example you might
want different rules on the internal and external interface of a
gateway. In another setup you might want an sshd with a different login
policy running on a different port - and setup different firewalling
rules (for example).
I have implemented such
2024 Nov 12
1
openssh-9.9p1 problem with faillock pam module
On 12/11/2024 12:39, anctop wrote:
> It seems that release 9.9p1 does not use the binary filename as the
> PAM service name, but sticks to "sshd" for all instances.
man sshd_config:
???? PAMServiceName
???????????? Specifies the service name used for Pluggable
Authentication Modules (PAM) authentication, authorisation and session
controls when
???????????? UsePAM is
2024 Nov 12
1
openssh-9.9p1 problem with faillock pam module
Hi,
Many thanks for your prompt answer.
We overlooked this new option because it was not available in the 9.3p1 config.
On Tue, 12 Nov 2024 at 20:52, Brian Candler <b.candler at pobox.com> wrote:
>
> On 12/11/2024 12:39, anctop wrote:
>
> It seems that release 9.9p1 does not use the binary filename as the
> PAM service name, but sticks to "sshd" for all
2013 May 13
3
[PATCH] Specify PAM Service name in sshd_config
Hello All,
The attached patch allows openssh to specify which pam service name to
authenticate users against by specifying the PAMServiceName attribute in
the sshd_config file. Because the parameter can be included in the Match
directive sections, it allows different authentication based on the Match
directive. In our case, we use it to allow different levels of
authentication based on the
2024 Jun 27
1
Proposal to add a DisableAuthentication option to sshd ServerOptions
it's not just adding a line at runtime. it's the openssh maintainers
maintaining an odd codepath and testing it at each release and
answering questions about the configuration, etc.
On Thu, Jun 27, 2024 at 3:00?PM Henry Qin <hq6 at cs.stanford.edu> wrote:
>
> I would like to understand your opinion a little more deeply.
>
> Are you suggesting that it's easier to
2024 Jun 18
1
New PAMServiceName option in 9.8
Any chance PAMServiceName could be added as a Match option? It would be
great to have a different PAM config (MFA, etc.) based on source address.
--
Carson
2013 May 13
6
[Bug 2102] New: [PATCH] Specify PAM Service name in sshd_config
https://bugzilla.mindrot.org/show_bug.cgi?id=2102
Bug ID: 2102
Summary: [PATCH] Specify PAM Service name in sshd_config
Classification: Unclassified
Product: Portable OpenSSH
Version: 6.2p1
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P5
Component: PAM support
2016 Aug 20
2
LLVM flags for Vectorization
Hi,
I have been analyzing the LLVM vectorizer by running some benchmarks. For
vectorization, I have used the following flags:
-O3
-ffast-math
-mavx2
Am I missing any other flags which will improve vectorizer performance?
Thanks,
Santanu Das
IIT Hyd
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2010 Aug 19
1
request for Wiki access
Hi there,
Please find the required information below:
username : SantanuDas
subject : OS X intregration: Enabling AFPD (Netatalk)
location : Networking tips
ref:
https://www.centos.org/modules/newbb/viewtopic.php?topic_id=27658&forum=38
Cheers,
Santanu
2012 Dec 13
1
About new test cases for Durable handle version 2
Hi,
I am not sure if I am addressing to the correct audience. So apologize for
the that.
I found in the existing smbtorture test suit do not have much test cases
related to durable handle version 2 that is supported for SMB version 3 .
I have done some work on that and would like to contribute on that filed.
Can anyone let me know the process for that?
Thanks in advance,
Santanu