[Samba] Fwd: samba : Strong(er) authentication required

2008-10-01 Thread francis thaon
-- Forwarded message -- From: francis thaon [EMAIL PROTECTED] Date: 2008/9/30 Subject: samba : Strong(er) authentication required To: samba@lists.samba.org Good morning I am running a windows server 2003 AD domain where the option server signing cannot be changed I have

Re: [Samba] smbldap and password expiration

2008-10-01 Thread manu Baylac
Onatawahtaw a écrit : Greetings, I just recently set up a new server with samba and openldap authentication using smbldap. The passwords seem to be expiring after about 30 days. How do I set them so that they don't expire? Thanks, Onatawahtaw Hi, using smbldap-tools ? see -A and -B

Re: [Samba] Fwd: samba : Strong(er) authentication required

2008-10-01 Thread Martin Zielinski
hi! You need Samba 3.2.x for this. And add the smb.conf parameter: client ldap sasl wrapping = sign The only other way is to use NTLM authentication (security = domain), but this might cause even more troubles. Bye, Martin francis thaon schrieb: -- Forwarded message --

Re: [Samba] can root still connect clients to a domain?

2008-10-01 Thread Volker Lendecke
On Tue, Sep 30, 2008 at 01:37:00PM +0200, Helmut Hullen wrote: when I connect a Windows client to a Samba domain I am asked for the user's login name and password on the Linux server who has the rights to do this job. Under Samba 3.0.22 and older I could use root with a password defined

[Samba] RE: Browse QNX directories thro windows PC thro SAMBA

2008-10-01 Thread Jayakumar Gopalakrishnan-TLS,Chennai
DISCLAIMER: --- The contents of this e-mail and any attachment(s) are confidential and intended for the named recipient(s) only. It shall not attach any liability on the originator

Re: [Samba] Samba over bridged ethernet VPN

2008-10-01 Thread Wes Deviers
On Tuesday 30 September 2008 18:07:25 Daniel Bye wrote: Thanks for your reply, Wes. ... As for the routing between sites, if I understand correctly what you're asking, then it's simply a small LAN in the office attached via a commodity ADSL modem, with Samba and OpenVPN running on the same

[Samba] Samba authentication using ADS

2008-10-01 Thread Prashanth Adiyodi
Greetings I need help in setting up my linux box with ADS authentication on Samba. I know that it can be done using winbind and Kerberos. I tried some of the online methods but I am not able to get a result. Request you to please help me with this. These are the steps I followed to

RE: [Samba] Samba authentication using ADS

2008-10-01 Thread Andrew Masterson
Try this: http://wiki.samba.org/index.php/Samba__Active_Directory -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] ] On Behalf Of Prashanth Adiyodi Sent: Wednesday, October 01, 2008 7:42 AM To: samba@lists.samba.org Subject: [Samba] Samba authentication using

Re: [Samba] nmbd fails to start - permission denied

2008-10-01 Thread Volker Lendecke
On Tue, Sep 30, 2008 at 10:36:49PM -0400, Onotsky, Steve x55328 wrote: Once all of that was in place, I started up Samba via the Red Hat startup script, but nmbd failed to load. The nmbd.log file indicates that it can't open the smb.conf file, with the error Permission denied. I've verified

RE: [Samba] nmbd fails to start - permission denied

2008-10-01 Thread Onotsky, Steve x55328
Danke, Volker. SELinux bit me in the ass again; I set it to permissive, rebooted, and voila - nmbd starting. I wonder why it fails during boot/via the script, but runs manually... Cheers Steve -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Volker

Re: [Samba] Revisiting Samba's interaction with LDAP's ppolicy overlay

2008-10-01 Thread Volker Lendecke
On Mon, Sep 29, 2008 at 10:14:01AM -0400, Adam Tauno Williams wrote: This is, AFAIK, the only solution currently. We do the same thing. It stinks. As I said in the former mail thread: Patches are welcome. If you really want it done quickly, some companies on http://samba.org/samba/support

[Samba] samba-3.2.4 Solaris 9: configure gets error: Active Directory support requires ldap_initialize

2008-10-01 Thread Wayne Rasmussen
Unable to compile samba-3.2.4 on Solaris 9 for sparc. #building openldap CC=gcc #echo $CC #exit CPPFLAGS=-I/usr/local/include -I/usr/local/ssl/include -I/usr/local/BerkeleyDB.4.2/include -I/usr/local/include/sasl LDFLAGS=-L/usr/local/lib -L/usr/local/ssl/lib -L/usr/local/BerkeleyDB.4.2/lib

[Samba] Samba PDC - first Domain Admin

2008-10-01 Thread James
Hi guys, i'm trying to setup a samba PDC and was hoping to delegate Admin control to the Domain Admins Group. The backend is run off of ldap and there is no root user account in the ldap directory i set my user james with the rid ending in -500 i used: net rpc rights grant TESTING/Domain

Re: [Samba] nmbd fails to start - permission denied

2008-10-01 Thread Ryan Novosielski
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hopefully this is not taken as rude: Disabling/setting permissive SELinux (particularly for an app that ships with the distribution) is the WRONG way to go, and is not required. It's a good way to figure if it is SELinux that is the problem, but the

[Samba] file share issues

2008-10-01 Thread Tipton, Josh
I have /oracle/fin shared out but when a user tries to hit it they get the following error: [2008/10/01 15:55:24, 0] smbd/service.c:make_connection_snum(1003) '/oracle/fin' does not exist or permission denied when connecting to [fin] Error was Permission denied This is AD based

Re: [Samba] samba-3.2.4 Solaris 9: configure gets error: Active Directory support requires ldap_initialize

2008-10-01 Thread John Center
Hi Wayne, I had the same problem. I fixed one line in configure: if test x$debug = xyes ; then CFLAGS=${CFLAGS} -g else CFLAGS=-O fi The second if statement was clearing my CFLAGS setting, replacing it with just -O. I changed the line from CFLAGS=-O to CFLAGS=${CFLAGS} -O.

Re: [Samba] samba-3.2.4 Solaris 9: configure gets error: Active Directory support requires ldap_initialize

2008-10-01 Thread Volker Lendecke
On Wed, Oct 01, 2008 at 06:28:42PM -0400, John Center wrote: I had the same problem. I fixed one line in configure: if test x$debug = xyes ; then CFLAGS=${CFLAGS} -g else CFLAGS=-O fi The second if statement was clearing my CFLAGS setting, replacing it with just -O.

[Samba] files disappearing from Samba server

2008-10-01 Thread Robert Wickberg
I'm the tech coordinator for a high school. Last year, we had a file server kids could save work to that was a generic Celeron 800 PC with an IDE hard drive. It ran Debian Sarge, with whatever version of Samba ships with that. It was down to a couple of gig of free disk space by the end of the

[SCM] Samba Shared Repository - branch v3-3-stable updated - release-3-3-0pre1-377-g562dce5

2008-10-01 Thread Karolin Seeger
The branch, v3-3-stable has been updated via 562dce5505f47c1f505c538b88107e3d9f9eae54 (commit) via 1020caf615e5c413363ead70f3930895889edc0b (commit) via ba0cb8c74dd2fdeab014a8b90869725b85b6d557 (commit) via 394325b79c9f381e8b4bdaf1b8aec698e2e83cf7 (commit)

[SCM] Samba Shared Repository - branch v3-3-stable updated - release-3-3-0pre1-378-gb311ded

2008-10-01 Thread Karolin Seeger
The branch, v3-3-stable has been updated via b311ded4ae326ed7d140d4e8a8a1c81994311e9f (commit) from 562dce5505f47c1f505c538b88107e3d9f9eae54 (commit) http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-3-stable - Log

[SCM] Samba Shared Repository - branch v3-3-test updated - release-3-2-0pre2-4202-geef33fe

2008-10-01 Thread Karolin Seeger
The branch, v3-3-test has been updated via eef33fe6383afb5870aef0eef132cd0ba88bac83 (commit) from bec55237c9c5687d947562524124b7aa76209b8f (commit) http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-3-test - Log -

[SCM] Samba Shared Repository - branch master updated - bdd80734c977336b09f64cd55d76815de49a5fee

2008-10-01 Thread Jelmer Vernooij
The branch, master has been updated via bdd80734c977336b09f64cd55d76815de49a5fee (commit) via 90d1481cf6b100988f9a6157674d03ed677f280f (commit) via d56a81f60a820e6a4a3f2617c4fdd4f88e7853cd (commit) from c164ff2be5f9af7cc83e43d8c54b54186444fac0 (commit)

[SCM] Samba Shared Repository - branch master updated - ca44340891d60de7e48bb263c7debd45cc3f3ed0

2008-10-01 Thread Jelmer Vernooij
The branch, master has been updated via ca44340891d60de7e48bb263c7debd45cc3f3ed0 (commit) from bdd80734c977336b09f64cd55d76815de49a5fee (commit) http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master - Log - commit

[SCM] Samba Shared Repository - branch v3-3-test updated - release-3-2-0pre2-4203-g9a90cea

2008-10-01 Thread Jeremy Allison
The branch, v3-3-test has been updated via 9a90ceac52f8623dde2bf50e630b10aebbc0e28d (commit) from eef33fe6383afb5870aef0eef132cd0ba88bac83 (commit) http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-3-test - Log -

[SCM] Samba Shared Repository - branch v3-2-test updated - release-3-2-0pre2-3061-g7ea95c1

2008-10-01 Thread Jeremy Allison
The branch, v3-2-test has been updated via 7ea95c19305a2fb6efc95acc4e96f083e31f6c6f (commit) from dc1ff1a9c07edf7e3e649b256667704ad59aafbd (commit) http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-2-test - Log -

[SCM] Samba Shared Repository - branch master updated - 370cbe0060cb2670c7f65100954dac6c63030ca0

2008-10-01 Thread Jeremy Allison
The branch, master has been updated via 370cbe0060cb2670c7f65100954dac6c63030ca0 (commit) from ca44340891d60de7e48bb263c7debd45cc3f3ed0 (commit) http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master - Log - commit

[SCM] Samba Shared Repository - branch master updated - e4f5bfb34b7a515e2cf107eb94489260594b8733

2008-10-01 Thread Jeremy Allison
The branch, master has been updated via e4f5bfb34b7a515e2cf107eb94489260594b8733 (commit) from 370cbe0060cb2670c7f65100954dac6c63030ca0 (commit) http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master - Log - commit

[SCM] Samba Shared Repository - branch v3-2-test updated - release-3-2-0pre2-3062-g347fc4e

2008-10-01 Thread Jeremy Allison
The branch, v3-2-test has been updated via 347fc4ed725083f2c520afc39f7c81db0dd60324 (commit) from 7ea95c19305a2fb6efc95acc4e96f083e31f6c6f (commit) http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-2-test - Log -

[SCM] Samba Shared Repository - branch v3-3-test updated - release-3-2-0pre2-4204-g7378251

2008-10-01 Thread Jeremy Allison
The branch, v3-3-test has been updated via 737825183115732de1f1d6d2bd89ce6402a65b20 (commit) from 9a90ceac52f8623dde2bf50e630b10aebbc0e28d (commit) http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-3-test - Log -

[SCM] Samba Shared Repository - branch v3-0-test updated - release-3-0-32-43-g45514fc

2008-10-01 Thread Jeremy Allison
The branch, v3-0-test has been updated via 45514fc5d85221339a4ee55b9f9f78c917b2fd19 (commit) from ffa704347a9cf10de20105e3dd07963f975cbd77 (commit) http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-0-test - Log -

[SCM] Samba Shared Repository - branch v3-3-test updated - release-3-2-0pre2-4205-ge782150

2008-10-01 Thread Jeremy Allison
The branch, v3-3-test has been updated via e782150175ff324b6e0ef1802a9e17f9a5aea560 (commit) from 737825183115732de1f1d6d2bd89ce6402a65b20 (commit) http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-3-test - Log -

[SCM] Samba Shared Repository - branch master updated - ea85ceefa945f1fee2bb10441a3cc8e35216733b

2008-10-01 Thread Jeremy Allison
The branch, master has been updated via ea85ceefa945f1fee2bb10441a3cc8e35216733b (commit) from e4f5bfb34b7a515e2cf107eb94489260594b8733 (commit) http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master - Log - commit

[SCM] Samba Shared Repository - branch v3-2-test updated - release-3-2-0pre2-3063-gd596f78

2008-10-01 Thread Jeremy Allison
The branch, v3-2-test has been updated via d596f78517f33f5a4c4849be3162d4f3031f045f (commit) from 347fc4ed725083f2c520afc39f7c81db0dd60324 (commit) http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-2-test - Log -

[SCM] Samba Shared Repository - branch master updated - 3bfb53caa86ece1d7ff1bf3c7759f003203d4247

2008-10-01 Thread Jeremy Allison
The branch, master has been updated via 3bfb53caa86ece1d7ff1bf3c7759f003203d4247 (commit) from ea85ceefa945f1fee2bb10441a3cc8e35216733b (commit) http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master - Log - commit

[SCM] Samba Shared Repository - branch v3-3-test updated - release-3-2-0pre2-4206-g2a2bb6b

2008-10-01 Thread Jeremy Allison
The branch, v3-3-test has been updated via 2a2bb6b0757b1f2a6199474f93ea8d598575d650 (commit) from e782150175ff324b6e0ef1802a9e17f9a5aea560 (commit) http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-3-test - Log -

Build status as of Thu Oct 2 00:00:02 2008

2008-10-01 Thread build
URL: http://build.samba.org/ --- /home/build/master/cache/broken_results.txt.old 2008-10-01 00:01:04.0 + +++ /home/build/master/cache/broken_results.txt 2008-10-02 00:00:25.0 + @@ -1,22 +1,22 @@ -Build status as of Wed Oct 1 00:00:02 2008 +Build status as of Thu Oct

[SCM] Samba Shared Repository - branch master updated - 9097a67def72ea41e85a4acb5d7cbcc46adaaa84

2008-10-01 Thread Volker Lendecke
The branch, master has been updated via 9097a67def72ea41e85a4acb5d7cbcc46adaaa84 (commit) from 3bfb53caa86ece1d7ff1bf3c7759f003203d4247 (commit) http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master - Log - commit

[SCM] Samba Shared Repository - branch master updated - 8641b54a736c5c924bf38cf4574d1f8e34d2d0cd

2008-10-01 Thread Volker Lendecke
The branch, master has been updated via 8641b54a736c5c924bf38cf4574d1f8e34d2d0cd (commit) from 9097a67def72ea41e85a4acb5d7cbcc46adaaa84 (commit) http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master - Log - commit