search for: isa

Displaying 20 results from an estimated 3320 matches for "isa".

Did you mean: is
2007 Sep 19
1
LDAP / PAM -- Invalid Credentials Error
...s # numResponses: 2 # numEntries: 1 I think the issue might be with PAM, because comparing all files I can think of doesnt point me to any differences except /etc/pam.d/ system-auth The LDAP server 'storage' has WINBIND turned on, as follows: auth required /lib/security/$ISA/pam_env.so auth sufficient /lib/security/$ISA/pam_unix.so likeauth nullok auth sufficient /lib/security/$ISA/pam_ldap.so use_first_pass auth sufficient /lib/security/$ISA/pam_winbind.so use_first_pass auth required /lib/security/$ISA/pam_deny.so account...
2001 Nov 08
5
OpenSSH3.0p1/PAM/Sol8
Hi there, I just tried out OpenSSH3.0p1 running on Solaris 8 with PAM (--with-PAM). The problem was mentioned some time ago and is still there :-( When a password is expired you are prompted to change it now, enter your login password and after doing so you are instantly disconnected. I think this is a problem with PAM and not SSH, but how can I get a solution on this ? sshd is running without
2008 Aug 06
1
winbindd behaving oddly
...put mutiple groups under the 'auth' section it will try to authenticate for each group and lock the account out if the password is typed a single time. Putting this in the 'session' section it is flat out ignored. Here's my system-auth: auth required /lib/security/$ISA/pam_env.so auth sufficient /lib/security/$ISA/pam_unix.so likeauth nullok auth sufficient /lib/security/$ISA/pam_winbind.so use_first_pass use_first_pass auth required /lib/security/$ISA/pam_deny.so account required /lib/security/$ISA/pam_unix.so account...
2006 Jun 07
1
NSS/PAM LDAP Config
...I'm using CentOS 4.3 and I've used authconfig as the IDEALX scripts say, and thus I have the following system-auth config in /etc/pam.d/ --- #%PAM-1.0 # This file is auto-generated. # User changes will be destroyed the next time authconfig is run. auth required /lib/security/$ISA/pam_env.so auth sufficient /lib/security/$ISA/pam_unix.so likeauth nullok auth sufficient /lib/security/$ISA/pam_ldap.so use_first_pass auth required /lib/security/$ISA/pam_deny.so account required /lib/security/$ISA/pam_unix.so broken_shadow account su...
2004 Oct 13
1
follow-up on ISA intrusion detection
Hi, I wrote a mail a few days ago concerning my setup with a front/back firewall, shorewall being front and ISA server 2004 acting as back firewall. I said that ISA server is logging some "intrusion attempts" namely requests coming from external interface to the internal network. As this shouldn''t happen (all intrusion attempts should be stopped by shorewall) I begun to study the ISA...
2005 Jan 30
2
How to support idmap_rid on Fedora Core 3?
...files networks: files protocols: files rpc: files services: files netgroup: files publickey: nisplus automount: files aliases: files nisplus /*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/* /*/*/*/*/* nsswitch.conf /*/*/*/*/*/* #%PAM-1.0 auth required /lib/security/$ISA/pam_env.so auth sufficient /lib/security/$ISA/pam_unix.so likeauth nullok auth sufficient /lib/security/$ISA/pam_winbind.so use_first_pass auth required /lib/security/$ISA/pam_deny.so account required /lib/security/$ISA/pam_unix.so account sufficient...
2019 Apr 06
4
[RFC] Should we add isa_or_null<>?
What about a type not_null_impl<T> and we could write: then you could just write bool x = isa<T>(not_null(val)); We provide a function not_null<T> that returns a not_null_impl<T>: template<typename T> not_null_impl<T> not_null(T *t) { return not_null_impl<T>{t}; } and a specialization of isa that takes a not_null_impl<T> template<typename T,...
2004 Dec 28
2
ISA server can't validate users over samba trust
Hi All, I have a huge problem and hope somebody can help me. I have a Dc in a win2003 server in windows 2000 mixed mode. Also have an ISA 2004 as a member server of the 2003 domain and some DC with samba. There are trust working between samba and the dc in 2003, when i share any resource it works fine!, i can see users in 2003 and samba and give permissions. The issue is.... when in the isa server i try to create a user set i se...
2003 Apr 12
1
R-1.7.0-beta: in check-all test-IsAs fails on WinNT4.0
Todays R-1.7.0-beta (see below) compiles fine on, but it doesn't pass make check-all on WinNT4.0, SP6. Looking closer, test-IsAs fails: D:\uwe-ns\R-1.7.0\tests>make -f Makefile.win test-IsAs running tests of consistency of as/is.* make[1]: Entering directory `/cygdrive/d/uwe-ns/R-1.7.0/tests' creating 'isas-tests.R' make[1]: *** [isas-tests.R] Error 253 make[1]: Leaving directory `/cygdrive/d/uwe-ns/R-1.7.0/...
2005 Jan 31
0
Domain users are not able to login through ftp.
...etc/pam.conf # #ident "@(#)pam.conf 1.14 99/09/16 SMI" # # Copyright (c) 1996-1999, Sun Microsystems, Inc. # All Rights Reserved. # # PAM configuration # # Authentication management # login auth required /usr/lib/security/pam_winbind.so login auth required /usr/lib/security/$ISA/pam_unix.so.1 try_first_pass login auth required /usr/lib/security/$ISA/pam_dial_auth.so.1 try_first_pass # rlogin auth sufficient /usr/lib/security/pam_winbind.so rlogin auth sufficient /usr/lib/security/$ISA/pam_rhosts_auth.so.1 rlogin auth required /usr/lib/security/$ISA/pam_unix.so.1 t...
2005 Aug 29
4
Conflict between LDAP and Privilege Separation?
..._4.1p1, OpenSSL 0.9.7g 11 Apr 2005 on Solaris 8 using host-based authentication. With "PrivilegeSeparation yes" and "UsePAM no" everything works as desired. If I enable PAM, I am able to connect, but just before it gives me a shell, it disconnects. If I leave PAM enabled and disable PrivilegeSeparation, it works. Is this a current limitation, or is there something I can try? -------------- Lets Go Canes! ____________________________________________________ Start your day with Yahoo! - make it your home page http://www.yahoo.com/r/hs
2010 Jan 18
5
[LLVMdev] [patch] Union Types - work in progress
...hods, please use "UT" instead of "ST" as an acronym. +bool UnionType::isValidElementType(const Type *ElemTy) { + return ElemTy->getTypeID() != VoidTyID && ElemTy->getTypeID() != LabelTyID && + ElemTy->getTypeID() != MetadataTyID && ! isa<FunctionType>(ElemTy); +} Please use "!ElemTy->isVoidTy()" etc. --- lib/VMCore/ConstantsContext.h (revision 93451) +template<> +struct ConstantKeyData<ConstantUnion> { + typedef Constant* ValType; + static ValType getValType(ConstantUnion *CS) { CU not CS. LLP...
2019 Apr 07
2
[RFC] Should we add isa_or_null<>?
I read `isa<T>(or_null(v))` as "v is a T or nullptr", which does not match the implementation semantics "v is a T and not null". On Sat, Apr 6, 2019 at 9:31 PM Zachary Turner <zturner at google.com> wrote: > Sorry, brain isn't fully working. I meant to call the functi...
2006 Oct 25
3
ISA sound cards and stuff
I've created kernel-isa and kernel-isasmp packages (currently i586, there'll be i686 version soon too). Basically, it is centosplus kernel with ISA Plug and Play, ISA and PCMCIA sound cards and ISA network cards enabled. The change to kernel spec file to add these two packages was fairly simple, and I hope this...
2006 Sep 12
0
Samba, winbind, krb5 Auth problem
...faults] # pam = { # debug = false # ticket_lifetime = 36000 # renew_lifetime = 36000 # forwardable = true # krb4_convert = false # } =============================================================================== in pam:d : auth-config #%PAM-1.0 auth sufficient /lib/security/$ISA/pam_rootok.so auth required /lib/security/$ISA/pam_stack.so service=system-auth service=system-auth #auth required /lib/security/pam_securetty.so #auth required /lib/security/pam_nologin.so #auth sufficient /lib/security/pam_winbind.so #auth required /li...
2004 Dec 01
2
AD Domain member not authenticating
...ters = no log level = 1 syslog = 0 log file = /var/log/samba/%m.log max log size = 0 ------------------------------- /etc/pam.d/system-auth #%PAM-1.0 # This file is auto-generated. # User changes will be destroyed the next time authconfig is run. auth required /lib/security/$ISA/pam_env.so auth sufficient /lib/security/$ISA/pam_unix.so likeauth nullok auth sufficient /lib/security/$ISA/pam_smb_auth.so use_first_pass nolocal auth required /lib/security/$ISA/pam_deny.so account required /lib/security/$ISA/pam_unix.so password req...
2019 Apr 07
2
[RFC] Should we add isa_or_null<>?
I have to say `not_null(v)` reads more like an assertion than a predicate, in which case `isa<T>(not_null(v))` reads like it has the exact same semantics that `isa<T>(v)` has currently—asserts that `v` is not null. I don't dispute that you can *make* it have the desired semantics, it just won't *look* that way. maybe `isaT_or_null<Foo>(v)` ? Still looks awkward bu...
2010 Apr 14
5
Dovecot 2.0b4 configuration issue, listen config option?
Hi, In my 1.2 setup I have pop3 running on ip x.x.x.2 and imap on x.x.x.7 In 2.0 how do I say listen x.x.x.2:110 x.x.x.7:143 so that pop3 is not listening on the .7 ip? I tried putting a listen = ip in the listener section but it complained. I cant figure it out and cant seem to find any 2.0 specific documentation, trying to search in the wiki directory of /usr/local/share/doc/dovecot/wiki but
2007 Jan 25
2
ISA Support in CentOS 4.4?
Hi, I'm trying to get my ISA modem to work on CentOS 4.4, but I am having trouble. I have a stock installation of the CentOS 4.4, and did a yum upgrade to ensure everything is the latest, however, I can't seem to detect or see the ISA modem. I remember back in the 2.2 kernel days, the need for isapnptools, however, fr...
2002 Oct 01
0
Solaris, winbind and console login
...: # #ident "@(#)pam.conf 1.16 01/01/24 SMI" # # Copyright (c) 1996-2000 by Sun Microsystems, Inc. # All rights reserved. # # PAM configuration # # Authentication management # login auth required /usr/lib/security/pam_winbind.so.1 debug login auth required /usr/lib/security/$ISA/pam_unix.so.1 try_first_pass login auth required /usr/lib/security/$ISA/pam_dial_auth.so.1 # rlogin auth sufficient /usr/lib/security/pam_winbind.so.1 rlogin auth sufficient /usr/lib/security/$ISA/pam_rhosts_auth.so.1 rlogin auth required /usr/lib/security/$ISA/pam_unix.so.1 try_first_pass...