Displaying 20 results from an estimated 20000 matches similar to: "Winbind authentication failing"
2010 Sep 07
2
winbind and pptpd authentication failure
Hi all
I'm not sure whether to go to the ppp lists for this, or the samba
lists. I thought I'd try here first.
I have a linux firewall using winbind to authenticate users coming in
with PPTP. It all seemed to work OK at first. After a while I noticed
that authentication was denied to users who had previously (as in less
than a day) authenticated successfully. After a day or so of
2007 Jun 26
1
winbind authentication performance: lookup_groupmem in large sites
Hello,
I have set up winbind to authenticate linux pc's to a windows 2003 AD.
The authentication works, but the performance is not good (takes over 5 minutes)
PRELIMINARY
-----------
OS: ubuntu 7.04
Samba: 3.0.24
AD: windows 2003
ANALYSIS
---------
After analyzing the log.winbindd file in log level 10, I can see three major parts
1) lookup and authenticate the user -> performance OK
2015 May 20
0
Strange problem samba+winbind+AD - transport endpoint is not connected
Hi there
Yesterday at job we had a poltergeist with radius + winbind & samba in a
linux box with authentication against an Active Directory (Windows 2012)
The AD is formed by 3 windows servers. The linux box has a connection
established against one of them thru port 445. Then this server downs and a
bunch of messages like the following are shown in /var/log/messages
May 19 16:40:59
2005 Dec 14
3
OT - Proftpd Authentication Failure
I have installed proftpd on a new x86_64 server:
[root at ftp ~]# uname -a
Linux ftp.csdsinc.com 2.6.9-22.0.1.ELsmp #1 SMP Thu Oct 27 14:49:37 CDT
2005 x86_64 x86_64 x86_64 GNU/Linux
CentOS release 4.2 (Final)
Proftpd Ver:
[root at ftp ~]# rpm -q proftpd
proftpd-1.2.10-8.2.el4.rf
Selinux is disabled
Modified debug file excerpt:
xxx.xxxxx.com - ProFTPD 1.2.10 (stable) (built Fri Feb 18
2005 Aug 18
1
winbind problems
Hello,
Does anyone know if there are issues using winbind 3.0.14a to
communicate with a 2.2.3a samba build?
I've setup winbind using all the documentation on the site but all I get
are the following results:
# wbinfo -u
Error looking up domain users
# wbinfo -g
BUILTIN+system operators
BUILTIN+replicators
BUILTIN+guests
BUILTIN+power users
BUILTIN+print operators
BUILTIN+administrators
2014 Jun 08
1
Authentication Failure (newbie)
Greetings,
I'm am learning about running a mail server and I set up a brand new
Ubuntu 14.04 server with postfix and dovecot. I had some initial
problems with dovecot not starting, and then with not having proper
permissions/access to the various directories and files and pipes, etc,
and in the process starting to learn how this thing works.
After searching in web-land I seem to have
2003 Aug 21
3
authentication error
I have setup a Rysnc server in Mandrake 9.1
When I add a auth user into my Rsync.conf and rsync.secrets,
it do not work, everytime it shows
[root@html]# rsync chris@mandrake82::XXXXX/.html/. /
Password:
@ERROR: auth failed on module XXXXX
rsync: connection unexpectedly closed (89 bytes read so far)
rsync error: error in rsync protocol data stream (code 12) at io.c(165)
This is my rsync's
2020 Mar 16
2
Winbind does not show all groups of all users
Hi!
I'm using 4.10.13 as AD and have the issue that winbind does not show
correct the group membership of some users. # Global
parameters[global] ldap server require strong auth =
no netbios name = admin realm =
XXXX.LOKAL workgroup = XXXX dns forwarder =
8.8.8.8 server role = active directory domain
controller idmap_ldb:use rfc2307 = Yes
2020 Mar 16
0
Winbind does not show all groups of all users
On 16/03/2020 14:21, Dipl.-Ing. P?ter Varkoly via samba wrote:
> Hi!
> I'm using 4.10.13 as AD and have the issue that winbind does not show
> correct the group membership of some users. # Global
> parameters[global] ldap server require strong auth =
> no netbios name = admin realm =
> XXXX.LOKAL workgroup = XXXX dns forwarder =
> 8.8.8.8
2007 Oct 09
1
DOS/Freedos: Can't use mkfloppyimg.sh or mkdiskimage for +8M images ( Murali (????? ?????) )
Sorry for the delay, I should not send email on an holiday week-end.
I'll try to answer all the questions by explaining what does work
for me right now, and what I'd like to do.
I have a script to create the a USB stick or an ISO image. The boot
media contains many DOS images, and I use versamenu to select one
of them. If my DOS image is smaller than 8megs, everything is working
fine as
2004 Apr 05
1
Comboot menu crashes when it goes off screen
It works!
Now, is there a way to use this handler multiple times so different
submenus can have different position values.
-Aaron
On Fri, 2 Apr 2004, ganapathy murali krishnan wrote:
> You write your own menupos_handler (like in complex.c) and register the
> handler.
>
> So all you need to do is to copy the code for the menupos_handler from
> complex.c and modify it to suit
2003 May 21
2
Office 97 dont open .doc files
Hi,
I have the following problem:
(I'm not sure if have to send this message to you, or to Microsoft. ;-)
Samba 2.2.3a or 2.2.8a (not restarted yet)
Network of Windows NT 4.0 PCs and
one Windows 2000 Server.
The Windows NT Workingsations are working fine, but now I have to
integrate an Windows 2000 Server and with this Server I have the
following problem.
When I open an XXXXX.doc-file
2007 Oct 10
1
DOS/Freedos: Can't use mkfloppyimg.sh or mkdiskimage for +8M images ( Solved)
Hi,
I did found the problem, a combination of 2 factor.
1- I taught that I did install the latest syslinux, but in fact it was
the 3.36 version.
2- Thank to kevin Connelly, he point me to a problem he got with
mkdosfs command. The default FAT16 do not work, but the FAT12 do. By
adding -F12 to the mkdosfs command fix the problem. The default F16 do
seem to work for <8M floppy image.
Thank you
2013 Sep 27
0
[LLVMdev] Trip count and Loop Vectorizer
Sriram,
The problem is that you want to unroll/vectorize many loops with non-constant loop count - it is a trade-off of which case you estimate as more likely.
int foo(int *ptr, int n) {
for ( .. i <n)
ptr[i] = ...
}
The question is: is it more likely to have “n” such that unrolling is beneficial or not.
Now, you could probably write an analysis that bounds the loop count (for the
2003 May 28
1
Cross Subnet WINS?
But the win wks on the other subnet is configured to use my
SAMBASERVER as its WINS SERVER, and it is configured using the
IP Adress of the SAMBASERVER and not the name. Shouldn't this
do the trick?
win wks is on a wireless subnet and hence runs at 11 MBPS, while
the SAMBASERVER is on a wired subnet. I read somewhere that windows
does some kind of "optimization" with slow networks.
2004 Nov 05
0
Q: winbind getgroups errors?
Hi,
I am running samba 3.0.7 on a FC 2 box with the following setup
(testparm output):
<snip>
[global]
workgroup = XXXXX
realm = XXXXX.YYYYY.COM
security = ADS
log level = 1
log file = /var/log/samba/%m.log
max log size = 50
load printers = No
os level = 0
preferred master = No
local master = No
2017 Nov 22
0
samba-winbind trust domain user issue.
Hi all,
we are facing a strange issue about trust domain user issue.
In the beginning. we are using samba-winbind integrated with Window
AD(Server 2012r2 and Server 2008R2), they are working pretty well.
but recently, the winbind client cloud not get the correct trust
domian's user group info as well,
like: id A\\user only show:
uid=16077216(A\user) gid=16077216(A\domain
2008 May 11
0
winbind, mod_auth_pam, and plaintext passwords
We have a working samba file server using winbind to authenticate with a
Win2003 server in native mode.
[2008/05/10 18:22:54, 5]
nsswitch/winbindd_cm.c:set_dc_type_and_flags(1651)
set_dc_type_and_flags: domain STARTREK is in native mode.
[2008/05/10 18:22:54, 5]
nsswitch/winbindd_cm.c:set_dc_type_and_flags(1654)
set_dc_type_and_flags: domain STARTREK is running active directory.
I now want to
2013 Sep 27
2
[LLVMdev] Trip count and Loop Vectorizer
Hi Nadav,
Thanks for the response. I forgot to mention that there is an upper limit of 16 for the Trip Count check,
TinyTripCountVectorThreshold = 16;
if (TC > 0u && TC < TinyTripCountVectorThreshold). So right now, any loop with Trip Count as 0, or with value >=16, LV with unroll. With the change to the lower bound, it will also include the loop with 0 trip count.
SCEV returns 0
2006 Nov 21
0
Winbind against a Netware PDC
I'm trying to run winbind against a Netware 6.5 PDC for squid
authentication, but i'm running in to a panic error. I've managed to
connect samba to the netware server just fine and can run an smbclient
authentication against it without a problem but the moment winbind comes
into play, it stops working. I've tested the install against an NT4 domain
server and it seems to work