Re: Suggestion for change in the vfs_ops structure?

2002-11-12 Thread Andrew Bartlett
On Wed, 2002-11-13 at 17:28, Kris Van Hees wrote: > On Wed, Nov 13, 2002 at 05:16:38PM +1100, Andrew Bartlett wrote: > > Well, I think making the MSDFS resolving code pluggable would be a good > > thing. > > Agreed. > > > > > MSDFS works by the server attempting saying 'not here' to a file open.

Re: Suggestion for change in the vfs_ops structure?

2002-11-12 Thread Kris Van Hees
On Wed, Nov 13, 2002 at 05:16:38PM +1100, Andrew Bartlett wrote: > Well, I think making the MSDFS resolving code pluggable would be a good > thing. Agreed. > > > MSDFS works by the server attempting saying 'not here' to a file open. > > > The client then asks there server for 'where is is then',

Re: Suggestion for change in the vfs_ops structure?

2002-11-12 Thread Andrew Bartlett
On Wed, 2002-11-13 at 16:58, Kris Van Hees wrote: > On Wed, Nov 13, 2002 at 04:24:22PM +1100, Andrew Bartlett wrote: > > On Wed, 2002-11-13 at 16:08, Kris Van Hees wrote: > > > I do not think that I should solve it with MSDFS itself, since that is a very > > > specific Microsoft thing. Adding @sys

Re: ldap_nua requires guest exist and have rid 501?

2002-11-12 Thread Andrew Bartlett
On Wed, 2002-11-13 at 16:35, John E. Malmberg wrote: > Andrew Bartlett wrote: > > > On Tue, 2002-11-12 at 16:10, John E. Malmberg wrote: > > > > The exception is much more than that - all sorts of things go over > > IPC$, and they are protected by their individual ACLs. Enumerating > > users,

Re: "PANIC: failed to set gid" on Jaguar

2002-11-12 Thread Jon L . Gardner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 All together now: "Yes, Jon, there *is* something funky going on with Samba on Jaguar...unless, of course, you do the smart thing and use the version Apple includes with the OS, since it actually does what you want it to do now!"

Unable to authenticate with security=ADS

2002-11-12 Thread ZINKEVICIUS,MATT (HP-Loveland,ex1)
Howdy gang, I am trying to use samba 3.0 to authenticate using kerberos/ldap to my ADS server. It's not working. I am mostly going by tridge's ADS-HOWTO. My Setup: - Win2k ADS server (dc-native.home.sln) - Realm name is HOME.SLN - Linux running samba 3.0alpha21cvs from a couple days ago (charlie.h

Re: Suggestion for change in the vfs_ops structure?

2002-11-12 Thread Kris Van Hees
On Wed, Nov 13, 2002 at 04:24:22PM +1100, Andrew Bartlett wrote: > On Wed, 2002-11-13 at 16:08, Kris Van Hees wrote: > > I do not think that I should solve it with MSDFS itself, since that is a very > > specific Microsoft thing. Adding @sys resolution into that code would be a bit > > messy, and c

Re: ldap_nua requires guest exist and have rid 501?

2002-11-12 Thread John E. Malmberg
Andrew Bartlett wrote: On Tue, 2002-11-12 at 16:10, John E. Malmberg wrote: The exception is much more than that - all sorts of things go over IPC$, and they are protected by their individual ACLs. Enumerating users, all sorts of things. Domain logons are a particular thing that occour init

Re: Suggestion for change in the vfs_ops structure?

2002-11-12 Thread Andrew Bartlett
On Wed, 2002-11-13 at 16:08, Kris Van Hees wrote: > On Wed, Nov 13, 2002 at 03:43:08PM +1100, Andrew Bartlett wrote: > > On Wed, 2002-11-13 at 15:24, Kris Van Hees wrote: > > > On Wed, Nov 13, 2002 at 03:08:26PM +1100, Andrew Bartlett wrote: > > > > Well, I think that doing so would be *very* dange

Re: Suggestion for change in the vfs_ops structure?

2002-11-12 Thread Kris Van Hees
On Wed, Nov 13, 2002 at 03:43:08PM +1100, Andrew Bartlett wrote: > On Wed, 2002-11-13 at 15:24, Kris Van Hees wrote: > > On Wed, Nov 13, 2002 at 03:08:26PM +1100, Andrew Bartlett wrote: > > > Well, I think that doing so would be *very* dangerous. For one, what > > > are you doing to do with those

Re: COM Negotiate

2002-11-12 Thread Christopher R. Hertel
Make sure you start counting from zero. Dialect[0] = "\x02PC NETWORK PROGRAM 1.0" Dialect[1] = "\x02MICROSOFT NETWORKS 1.03" Dialect[2] = "\x02MICROSOFT NETWORKS 3.0" Dialect[3] = "\x02LANMAN1.0" Dialect[4] = "\x02LM1.2X002" Dialect[5] = "\x02LANMAN2.1" Dialect[6] = "\x02Samba" Dialect[7]

RE: Trying to join a Solaris 8 box to Windows 2000 AD.

2002-11-12 Thread Clive . Elsum
Andrew, I got the latest CVS code. Had to copy the alpha20 versions of configure.* to get this version to configure. I had to remove the AUTHLIBS=@AUTHLIBS@ statement from the Makefile. The timegm problem has gone away. The latest gdb output. GNU gdb 5.0 Copyright 2000 Free Software Foundation, In

COM Negotiate

2002-11-12 Thread sak khan
How does the com_negotiate takes place my client supports list of Dialects including following .. .. LANMAN 1.0 NTLM 0.12 Null but the response comming from server (win2k m/c) shows that server is picking LANMAN 1.0 dialect ,Is there any way so that i can direct theĀ  server from Client's Re

Re: Suggestion for change in the vfs_ops structure?

2002-11-12 Thread Kris Van Hees
On Tue, Nov 12, 2002 at 09:20:59PM -0500, Kris Van Hees wrote: > Could the passed filenames and pathnames in the functions in vfs_ops be made > non-const? The use of a VFS module as transparent layer includes the ability > to change the passed data (as suggested from the comments in vfs.h), but wi

Re: Suggestion for change in the vfs_ops structure?

2002-11-12 Thread Andrew Bartlett
On Wed, 2002-11-13 at 13:20, Kris Van Hees wrote: > Could the passed filenames and pathnames in the functions in vfs_ops be made > non-const? The use of a VFS module as transparent layer includes the ability > to change the passed data (as suggested from the comments in vfs.h), but with > the cons

Suggestion for change in the vfs_ops structure?

2002-11-12 Thread Kris Van Hees
Could the passed filenames and pathnames in the functions in vfs_ops be made non-const? The use of a VFS module as transparent layer includes the ability to change the passed data (as suggested from the comments in vfs.h), but with the const qualifiers there, you cannot legally change the passed n

RE: Trying to join a Solaris 8 box to Windows 2000 AD.

2002-11-12 Thread Andrew Bartlett
On Wed, 2002-11-13 at 11:11, [EMAIL PROTECTED] wrote: > One other thing I keep meaning to mention Andrew, I had to replace timegm > with mktime in libads/ldap.c as Solaris does not recognize timegm OK. Can we take a step back then and move to current HEAD? That bug is fixed, and perhaps your iss

RE: Trying to join a Solaris 8 box to Windows 2000 AD.

2002-11-12 Thread Clive . Elsum
One other thing I keep meaning to mention Andrew, I had to replace timegm with mktime in libads/ldap.c as Solaris does not recognize timegm Clive - Clive Elsum BAppSc, RHCE Systems Engineer - Information Technology Group CSIRO At

RE: Trying to join a Solaris 8 box to Windows 2000 AD.

2002-11-12 Thread Clive . Elsum
Andrew, Here is the bt full data. Thanks again, Clive GNU gdb 5.0 Copyright 2000 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see t

RE: Trying to join a Solaris 8 box to Windows 2000 AD.

2002-11-12 Thread Andrew Bartlett
On Wed, 2002-11-13 at 10:33, [EMAIL PROTECTED] wrote: > Hi Andrew, > > Finally got back to this after locating a machine with more disk space! > The dbg output was: I need 'bt full' so I can see the contents of variables. Thanks, Andrew Bartlett -- Andrew Bartlett

RE: Trying to join a Solaris 8 box to Windows 2000 AD.

2002-11-12 Thread Clive . Elsum
Hi Andrew, Finally got back to this after locating a machine with more disk space! The dbg output was: GNU gdb 5.0 Copyright 2000 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under ce

Problem with PAM-based authentication

2002-11-12 Thread Kris Van Hees
Hi, It seems that PAM-based authentication is broken in the current CVS HEAD version. Enabling cleartext passwords, and setting 'encrypted passwords = no' does not help, nor does setting 'use spnego = no'. What seems to happen is that the client (Win98SE and WinXP tested) sends the passw

Re: winbind auth lib?

2002-11-12 Thread Andrew Bartlett
On Wed, 2002-11-13 at 02:00, Jelmer Vernooij wrote: > On Tue, Nov 12, 2002 at 01:44:46PM +, Paul Reilly wrote about 'winbind auth >lib?': > > > I'd like to link a program against the winbind libraries, so that it > > can call a winbind function to do a NT authentication. Is the winbind API >

adding automatically a computer account to samba using ldap backend

2002-11-12 Thread MURVAI-BUZOGANY Laszlo
Hi, I am trying to make a samba-ldap powered pdc, but encountered a problem, which I really don't understand. It's about adding a machine to the domain (im my case a Win2k) automatically. It appears like smbd is trying to find the machine in the database, but it doesn't succeed. Well, this is good

Re: winbind auth lib?

2002-11-12 Thread Jelmer Vernooij
On Tue, Nov 12, 2002 at 01:44:46PM +, Paul Reilly wrote about 'winbind auth lib?': > I'd like to link a program against the winbind libraries, so that it > can call a winbind function to do a NT authentication. Is the winbind API > described anywhere, or can anyone point me to the function cal

vampire a win2k-dc

2002-11-12 Thread Guenther Deschner
hi, is it true, that a win2k dc will insist on setting up a secure channel before ever transmitting password-hashes (with net rpc vampire)? thanks, guenther -- Guenther Deschner [EMAIL PROTECTED] SuSE Linux AGGnuPG: 8EE11688 Berli

Re: winbind auth lib?

2002-11-12 Thread Gerald (Jerry) Carter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, 12 Nov 2002, Paul Reilly wrote: > I'd like to link a program against the winbind libraries, so that it can > call a winbind function to do a NT authentication. Is the winbind API > described anywhere, or can anyone point me to the function cal

winbind auth lib?

2002-11-12 Thread Paul Reilly
I'd like to link a program against the winbind libraries, so that it can call a winbind function to do a NT authentication. Is the winbind API described anywhere, or can anyone point me to the function call to use? Thanks Paul