Displaying 20 results from an estimated 11154 matches for "pam".
Did you mean:
cam
2017 Aug 17
2
PAM Clustering
Dear Germano,
Thank you for your fast reply,
In the above code, *MYData *is the actual data set.
Do not we need to convert *MYData to *the dissimilarity matrix using
*pam(as.dist(**MYData**), k = 10, diss = TRUE*)* code line?*
*Regards.*
On Thu, Aug 17, 2017 at 2:58 PM, Germano Rossi <germano.rossi at gmail.com>
wrote:
> try this
>
> MYdata <- read.csv2("data.txt",dec='.')
> library(cluster)
> cluster.pam = pam(MYdata,1...
2006 May 11
2
comment on dovecot documentation on PAM
Dear Dovecote devotees,
I have been going through dovecot configuration for the
first time. I am not an experienced systems administrator
so I had to do a left turn to read up about PAM while
doing all the configuration for my new webmail service.
I found that the writing in the dovecot documentation about
PAM to be rather misleading in at least one aspect.
The documentation I am specifically referring to is at
http://wiki.dovecot.org/Authentication?highlight=%28authentication%...
2000 Dec 27
5
PAM configuration
To stem the tide of support requests from people who don't read the
INSTALL file when installing OpenSSH and then complain about password
auth failing. I am considering the idea of automagically installing a
PAM file into /etc/pam.d if it exists, PAM support is enabled and no
such file already exists.
I have a couple of questions:
- How is PAM controlled on Solaris? Is there a pam.d directory or does
it just use pam.conf? Do we need to install a control file for OpenSSH?
- Does FreeBSD and other system...
2001 Apr 19
3
Install problems with RedHat 7.0 RPM for 2.2.0
I just went through upgrading from 2.0.7 on Redhat 7.0 using the binary RPM
provided by samba.org and noticed a problem with the swat install.
It seems that the swat binary in the RPM is built to look for it's
supporting files in /usr/share/samba/swat whereas the RPM installs said
files in /usr/share/swat. This results in the following error message when
you try to access swat:
400 Server
2000 Sep 13
2
auth-pam.c support for pam_chauthtok()
When we installed OpenSSH 2.1.1p4 on our Solaris systems, our users
noticed that it did not honor password expiration consistently with
other Solaris login services.
The patch below is against OpenSSH 2.2.0p1 and adds support for PAM
password changes on expiration via pam_chauthtok(). A brief summary of
changes:
auth-pam.c:
* change declaration of pamh to "static pam_handle_t *pamh", remove
unnecessary casts "(pam_handle_t *)"
* fix typo in NEW_AUTHTOK_MSG
* extend pamconv() to support real interactive pro...
2000 Jul 03
2
2.1.1p2 HP-UX 11 PAM General Commerical Security error
...Jul 3 14:24:53 robinson sshd[1236]: debug: Encryption type: 3des
Jul 3 14:24:53 robinson sshd[1236]: debug: Received session key; encryption turned on.
Jul 3 14:24:53 robinson sshd[1236]: debug: Installing crc compensation attack detector.
Jul 3 14:24:53 robinson sshd[1236]: debug: Starting up PAM with username "stevesk"
Jul 3 14:24:53 robinson sshd[1236]: debug: Attempting authentication for stevesk.
Jul 3 14:24:54 robinson sshd[1236]: Accepted rsa for stevesk from 192.168.1.206 port 909
Jul 3 14:24:58 robinson sshd[1236]: debug: PAM setting rhost to "jenny.foo.se"
Ju...
2006 Jan 16
0
passdb-pam: PAM_RHOST on FreeBSD >= 5.0 (where PAM != Linux-PAM)
This is actually something I had on my mind to write about in the past
few -stable and alpha releases, but did not get to and instead always
patched myself. Now having updated to the latest snapshot (which may
be released as beta1), I stumbled on it again:
In src/auth/passdb-pam.c, where the client host is passed to PAM, the
code looks like this:
#ifdef PAM_RHOST
const char *host = net_ip2addr(&request->remote_ip);
if (host != NULL)
pam_set_item(pamh, PAM_RHOST, host);
#endif
For some reason there is a preprocessor/compile-time check whethere
there exists s...
2003 Oct 29
4
Fix for USE_POSIX_THREADS in auth-pam.c
As many of you know, OpenSSH 3.7.X, unlike previous versions, makes
PAM authentication take place in a separate process or thread
(launched from sshpam_init_ctx() in auth-pam.c). By default (if you
don't define USE_POSIX_THREADS) the code "fork"s a separate process.
Or if you define USE_POSIX_THREADS it will create a new thread (a
second one, in addition...
2017 Aug 17
0
PAM Clustering
Sorry, I never use pam. In the help, you can see that pam require a
dataframe OR a dissimilarity matrix. If diss=FALSE then "euclidean" was use.So,
I interpret that a matrix of dissimilarity is generated automatically.
Problems may be in your data. Indeed
pam(ruspini, 4)$diss
write a dissimilaty matrix
whil...
2001 Jan 17
2
PAM & Configure
I have just checked in a change which makes PAM support optional and
disabled by default. Previously PAM support was detected and enabled
automatically if found.
The change was made because there is no workable way to make PAM work
'out of the box'. Each vendor implements PAM a little differently and
there appears to be no standard on t...
2008 Feb 15
2
PAM libraries not found
When I add the --with-pam option in my configure command I get the
following error:
checking for pam_start in -lpam... no
configure: error: Can't build with PAM support: libpam not found
PAM is most certainly installed on the machine:
ii libpam-modules 0.79-5
Pluggable Authentication Modu...
2011 Mar 23
1
Issue with "change password" on windows dialog
Hi everybody!
I am having an issue regarding my samba/pam configuration. I am trying to
sync my unix/samba passwords, but everything i found online doesn't help.
My System runs Gentoo/Samba 3.5.8 as PDC(roaming profiles host and so on) ,
and WinXP Clients. Domainjoin and Login work fine. But I want to change the
Passwords from the Windows interface....
2017 Aug 17
0
PAM Clustering
try this
MYdata <- read.csv2("data.txt",dec='.')
library(cluster)
cluster.pam = pam(MYdata,10)
table(cluster.pam$clustering)
filenameclu = paste("clusters", ".txt")
write.table(cluster.pam$clustering, file=filenameclu,sep=",")
2017-08-17 10:28 GMT+02:00 Sema Atasever <s.atasever at gmail.com>:
> Dear Authorized Sir / Madam,
>
>...
2017 Aug 17
2
PAM Clustering
[This email is either empty or too large to be displayed at this time]
2016 Jul 22
3
Multifactor authentication troubles
I'm writing a PAM module to do authentication through Signal (as in Open
Whisper Systems) [1]. I would like to be able to offer
(Public key AND Signal) or (Password AND Signal)
for authentication. This suggests setting AuthenticationMethods to
publickey,keyboard-interactive:pam password,keyboard-interactive:pam...
2017 Aug 03
2
pam auth problem
....2.31 (65cde28)
on freebsd 64 10.3
system converted to dovecot 2 against my will and consuming a lot of
time sorting it out. i am glad google does not charge. have spent
two hours on this one alone; and undoubtedly it is my st00pidity. so
excuse my desperate posting to lazynet.
cram-md5 works, pam not so much
Aug 3 06:06:35 psg auth: in openpam_parse_chain(): /etc/pam.d/dovecot(1): missing or invalid facility
Aug 3 06:06:35 psg dovecot: auth-worker(48815): Error: pam(elb,2604:6000:130d:c31b:d250:99ff:fe90:14dd,<Lyh6LtNVMq8mBGAAEw3DG9JQmf/+kBTd>): pam_start() failed: system error
Aug...
2016 Apr 21
2
Winbind idmap question
...---------------------------------
nsswitch.conf winbind related is:
---------------------------------------------------------------------
passwd: files winbind
shadow: files winbind
group: files winbind
---------------------------------------------------------------------
And finally PAM configuration (only winbind related stuffs):
---------------------------------------------------------------------
/etc/pam.d/fingerprint-auth:account [default=bad success=ok
user_unknown=ignore] pam_winbind.so krb5_auth krb5_ccache_type=KEYRING
/etc/pam.d/fingerprint-auth:session optional...
2000 Jan 16
3
PAM config file installation
This might have been covered before and I've missed it. If so, sorry in
advance.
The file sshd.pam.generic didn't work for me on Linux RH6, I guess it's
a Solaris file. Instead I copied the file /etc/pam.d/rlogin to
/etc/pam.d/sshd . I wonder if this isn't a good way to go about things
anyway, have an install target that does just that?
Perhaps the rsh file is more appropriate for S...
2005 Sep 19
1
pam and sasl2-sample-server failure
I'm setting up a postfix server using "The Book of Postfix". In ch 15
there is a section on testing saslauthd which I can't get to work. I
can get it to work using shadow password authentication, but it fails
on pam. I don't kow squat about troubleshooting pam. Any PAM wizzes
out there that can help? I saw a unrelated post talking about
something needing to be in the pam sasl group. Had no idea what that
meant. sasl ins't a user, or group.
I setup and try
saslauthd -m /var/run/saslauthd -a pam -...
2002 Jul 16
2
HP-UX PAM with Trusted System patch
I'm fairly new to the list and new to submitting patches. Can someone
please verify the attached patch for running a HP-UX Trusted System with
PAM and OpenSSH 3.4p1? The problem seemed to be that pam couldn't verify
the user via __pamh after the call to permanently_set_uid in session.c.
So I called do_pam_session prior to the call and added a function
do_pam_set_tty in order to set the tty after allocation.
--
Dan Wanek
--------------...