[Samba] getent not working / winbindd issues

2002-11-05 Thread Sean Patrick Ingles


I first start smbd -D and nmbd -D

Then I start winbindd

Then I join the domain (smbpasswd -j DOMAIN -r DOMAINCONTROLLER -U
Administrator) It works

Then I check my Secret (wbinfo -t) and it's good

Then I list users and groups (wbinfo -u and wbinfo -g) and it works fine

However I still cannot get getent passwd and getent group working,
it just lists the local users or groups and hangs...

I verified that the libraries were in the /lib folder and symlinked, and
here is the output from ldconfig: 

[root@tux samba]# ldconfig -v | grep winbind
libnss_winbind.so - libnss_winbind.so

I restarted winbindd and typed getent passwd and it just lists my
local passwords and hangs.

Nothing is generated in my log.winbindd when I do this either.

I am also noticing that _occasionally_ the box will not allow anyone to
login until after I kill winbindd and sometimes winbindd locks up most
of the processor until I KILL -9 it.

uname -a: 

Linux tux.#.net 2.4.19 #1 Fri Oct 25 15:39:52 EDT 2002 i686
unknown

Here is my /etc/nsswitch.conf (abbreviated):

passwd: files winbind
shadow: files winbind
group:  files winbind

Here is my smb.conf:

[global]
 workgroup = vsionline
 server string = Samba %v -- TEST --
 security = domain
 password server = vsi-vsi-albany
 winbind uid = 1-2
 winbind gid = 1-2
 winbind separator = +
 winbind cache time = 10
 winbind enum users = Yes
 winbind enum groups = Yes

For reference, here is my /etc/pam.d/login:

[root@tux pam.d]# cat login
#%PAM-1.0
auth   required /lib/security/pam_securetty.so
auth   sufficient   /lib/security/pam_winbind.so
auth   sufficient   /lib/security/pam_unix.so use_first_pass
auth   required /lib/security/pam_stack.so service=system-auth
auth   required /lib/security/pam_nologin.so
accountsufficient   /lib/security/pam_winbind.so
accountrequired /lib/security/pam_stack.so service=system-auth
password   required /lib/security/pam_stack.so service=system-auth
sessionrequired /lib/security/pam_stack.so service=system-auth
sessionoptional /lib/security/pam_console.so
[root@tux pam.d]#

Any assistance anyone can provide will be much appreciated!

-SP


===
 
   \/   // Sean Patrick Ingles
\  /   // Jr. Network Engineer
 \/   ___ // 
  \  /   // Vision Systems, Inc.
  __/   /   _/ 142 State Street
   Albany, NY 12207
www.visionsys.com   Landline: +1 518.434.4300 x1406
  [EMAIL PROTECTED]  Fax: +1 518.434.4304
 
==
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



FW: [Samba] getent not working / winbindd issues

2002-11-05 Thread Sean Patrick Ingles
I was looking through all my SaMBa documentation with a fine-tooth comb,
and I noticed there is a line in the HOWTO, Section 12.4.3 Pluggable
Authentication Modules in the last paragraph it states: 

PAM is configured by providing control files in the directory
/etc/pam.d/ for each of the services that require authentication. When
an authentication request is made by an application the PAM code in the
C library looks up this control file to determine what modules to load
to do the authentication check and in what order. This interface makes
adding a new authentication service for Winbind very easy, all that
needs to be done is that the pam_winbind.so module is copied to
/lib/security/ and the PAM control files for relevant services are
updated to allow authentication via winbind. See the PAM documentation
for more details.

What exactly are the relevant services for SaMBa?

I've only been updating the /etc/pam.d/login file.

Below is my original question, which remains un-answered and I can't
seem to find any solution to it :(

Looks like I'll just have to deploy this fileserver with 2 logins, 1 to
the domain and 1 to the fileserver :(

-SP


-Original Message-
From: Sean Patrick Ingles 
Sent: Tuesday, November 05, 2002 10:55 AM
To: [EMAIL PROTECTED]
Subject: [Samba] getent not working / winbindd issues




I first start smbd -D and nmbd -D

Then I start winbindd

Then I join the domain (smbpasswd -j DOMAIN -r DOMAINCONTROLLER -U
Administrator) It works

Then I check my Secret (wbinfo -t) and it's good

Then I list users and groups (wbinfo -u and wbinfo -g) and it works fine

However I still cannot get getent passwd and getent group working,
it just lists the local users or groups and hangs...

I verified that the libraries were in the /lib folder and symlinked, and
here is the output from ldconfig: 

[root@tux samba]# ldconfig -v | grep winbind
libnss_winbind.so - libnss_winbind.so

I restarted winbindd and typed getent passwd and it just lists my
local passwords and hangs.

Nothing is generated in my log.winbindd when I do this either.

I am also noticing that _occasionally_ the box will not allow anyone to
login until after I kill winbindd and sometimes winbindd locks up most
of the processor until I KILL -9 it.

uname -a: 

Linux tux.#.net 2.4.19 #1 Fri Oct 25 15:39:52 EDT 2002 i686
unknown

Here is my /etc/nsswitch.conf (abbreviated):

passwd: files winbind
shadow: files winbind
group:  files winbind

Here is my smb.conf:

[global]
 workgroup = vsionline
 server string = Samba %v -- TEST --
 security = domain
 password server = vsi-vsi-albany
 winbind uid = 1-2
 winbind gid = 1-2
 winbind separator = +
 winbind cache time = 10
 winbind enum users = Yes
 winbind enum groups = Yes

For reference, here is my /etc/pam.d/login:

[root@tux pam.d]# cat login
#%PAM-1.0
auth   required /lib/security/pam_securetty.so
auth   sufficient   /lib/security/pam_winbind.so
auth   sufficient   /lib/security/pam_unix.so use_first_pass
auth   required /lib/security/pam_stack.so service=system-auth
auth   required /lib/security/pam_nologin.so
accountsufficient   /lib/security/pam_winbind.so
accountrequired /lib/security/pam_stack.so service=system-auth
password   required /lib/security/pam_stack.so service=system-auth
sessionrequired /lib/security/pam_stack.so service=system-auth
sessionoptional /lib/security/pam_console.so
[root@tux pam.d]#

Any assistance anyone can provide will be much appreciated!

-SP


===
 
   \/   // Sean Patrick Ingles
\  /   // Jr. Network Engineer
 \/   ___ // 
  \  /   // Vision Systems, Inc.
  __/   /   _/ 142 State Street
   Albany, NY 12207
www.visionsys.com   Landline: +1 518.434.4300 x1406
  [EMAIL PROTECTED]  Fax: +1 518.434.4304
 
==
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



RE: [Samba] getent not working correctly

2002-11-04 Thread Sean Patrick Ingles
Here is my /etc/nsswitch.conf (abbreviated):

passwd: files winbind
shadow: files winbind
group:  files winbind

I first start smbd -D and nmbd -D

Then I start winbindd

Then I join the domain (smbpasswd -j DOMAIN -r DOMAINCONTROLLER -U Administrator) It 
works

Then I check my Secret (wbinfo -t) and it's good

Then I list users and groups (wbinfo -u and wbinfo -g) and it works fine

However I still cannot get getent passwd and getent group working.

I am 100% stumped

-SP

-Original Message-
From: Hall, Ken (ECSS) [mailto:KeHall;exchange.ml.com] 
Sent: Friday, November 01, 2002 12:55 PM
To: [EMAIL PROTECTED]
Subject: RE: [Samba] getent not working correctly


Did you reboot after starting winbindd?

Either do that, or try looking for the nameserver cache daemons (nscd), and kill them 
all.  (Don't worry, they'll restart.)

I had the same problem with nss_ldap, and it drove me NUTS till I found out about the 
cache mechanism.

 -Original Message-
 From: Noel Kelly [mailto:nkelly;citrusnetworks.net]
 Sent: Friday, November 01, 2002 12:46 PM
 To: 'Sean Patrick Ingles'; [EMAIL PROTECTED]
 Subject: RE: [Samba] getent not working correctly
 
 
 You need getent to work.  This is really how Unix actually does the 
 authenticating - winbind is just the conduit to the M$ database.
 
 Have you edited your /etc/nsswitch.conf correctly?  You need:
 
 passwd: files winbind nisplus
 shadow: files winbind nisplus
 group:  files winbind nisplus
 
 This will make Unix call winbind when looking for
 users/groups (this the
 mechanism that getent passwd/group runs).
 
 HTH,
 Noel

 
 -Original Message-
 From: Sean Patrick Ingles [mailto:ingless;visionsys.com]
 Sent: 01 November 2002 15:41
 To: [EMAIL PROTECTED]
 Subject: [Samba] getent not working correctly
 
 
 Hello again!
 
 Ok, I've gotten wbinfo -u and wbinfo -g working great
 
 Now I try to run getent passwd and getent group I get my
 local users/groups
 but not the ones on the Windows 2k Server Domain Controller 
 and it just
 hangs after listing the local ones.
 
 I also tried authenticating a user and it worked I'm assuming
 
 wbinfo -a DOMAIN+ingless@DOMAIN%password (The usernames here have 
 user@domain due to some M$ Active-Directory thing...) plaintext 
 password authentication succeeded challenge/response password
 authentication failed
 Could not authenticate user DOMAIN+ingless@DOMAIN%password with
 challenge/response
 
 Do I need getent working, or is it safe to assume everything
 is functioning
 normally now?
 
 Thanks!
 
 -SP
 
 ===
  
    \    /   /    / Sean Patrick Ingles
     \  /   /    / Jr. Network Engineer
  \    /   ___ /    /
   \  /   /    / Vision Systems, Inc.
   __/   /   _/ 142 State Street
    Albany, NY 12207
     www.visionsys.com   Landline: +1 518.434.4300 x1406
   [EMAIL PROTECTED]  Fax: +1 518.434.4304
  
 ==
 
 --
 To unsubscribe from this list go to the following URL and read the
 instructions:  http://lists.samba.org/mailman/listinfo/samba
 -- 
 To unsubscribe from this list go to the following URL and read the
 instructions:  http://lists.samba.org/mailman/listinfo/samba
 
 ---
 Incoming mail is certified Virus Free.
 Checked by AVG anti-virus system (http://www.grisoft.com).
 Version: 6.0.404 / Virus Database: 228 - Release Date: 15/10/2002
  
 
 ---
 Outgoing mail is certified Virus Free.
 Checked by AVG anti-virus system (http://www.grisoft.com).
 Version: 6.0.408 / Virus Database: 230 - Release Date: 24/10/2002
  
 --
 To unsubscribe from this list go to the following URL and read the
 instructions:  http://lists.samba.org/mailman/listinfo/samba
 

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



RE: [Samba] getent not working correctly

2002-11-04 Thread Sean Patrick Ingles
I verified that the libraries were in the /lib folder and symlinked, and here is the 
output from ldconfig: 

[root@tux samba]# ldconfig -v | grep winbind
libnss_winbind.so - libnss_winbind.so

I restarted winbindd and typed getent passwd and it just lists my local passwords 
and hangs.

Nothing is generated in my log.winbindd when I do this either.

I am also noticing that _occasionally_ the box will not allow anyone to login until 
after I kill winbindd...

For reference, here is my /etc/pam.d/login:

[root@tux pam.d]# cat login
#%PAM-1.0
auth   required /lib/security/pam_securetty.so
auth   sufficient   /lib/security/pam_winbind.so
auth   sufficient   /lib/security/pam_unix.so use_first_pass
auth   required /lib/security/pam_stack.so service=system-auth
auth   required /lib/security/pam_nologin.so
accountsufficient   /lib/security/pam_winbind.so
accountrequired /lib/security/pam_stack.so service=system-auth
password   required /lib/security/pam_stack.so service=system-auth
sessionrequired /lib/security/pam_stack.so service=system-auth
sessionoptional /lib/security/pam_console.so
[root@tux pam.d]#

Here is what I have for my smb.conf as well:

[root@tux pam.d]# cat /usr/local/samba/lib/smb.conf
[global]
 workgroup = VSIONLINE
 server string = Samba %v -- TEST --
 security = domain
 password server = vsi-vsi-albany
 winbind uid = 1-2
 winbind gid = 1-2
 winbind separator = +
 winbind cache time = 10
 winbind enum users = Yes
 winbind enum groups = Yes
[root@tux pam.d]#

-SP

-Original Message-
From: Noel Kelly [mailto:nkelly;citrusnetworks.net] 
Sent: Monday, November 04, 2002 10:39 AM
To: Sean Patrick Ingles; Hall, Ken (ECSS); [EMAIL PROTECTED]
Subject: RE: [Samba] getent not working correctly


Have you copied libnss_winbind.so from the nsswitch directory to /lib ? Also make a 
soft link to  /lib/libnss_winbind.so.2 and then run 'ldconfig -v
| grep winbind' to make sure the libraries are picked up.

Restart winbind and watch your log.winbindd for messages as you run getent.

HTH
Noel

-Original Message-
From: Sean Patrick Ingles [mailto:ingless;visionsys.com]
Sent: 04 November 2002 15:19
To: Hall, Ken (ECSS); [EMAIL PROTECTED]
Subject: RE: [Samba] getent not working correctly


Here is my /etc/nsswitch.conf (abbreviated):

passwd: files winbind
shadow: files winbind
group:  files winbind

I first start smbd -D and nmbd -D

Then I start winbindd

Then I join the domain (smbpasswd -j DOMAIN -r DOMAINCONTROLLER -U
Administrator) It works

Then I check my Secret (wbinfo -t) and it's good

Then I list users and groups (wbinfo -u and wbinfo -g) and it works fine

However I still cannot get getent passwd and getent group working.

I am 100% stumped

-SP

-Original Message-
From: Hall, Ken (ECSS) [mailto:KeHall;exchange.ml.com] 
Sent: Friday, November 01, 2002 12:55 PM
To: [EMAIL PROTECTED]
Subject: RE: [Samba] getent not working correctly


Did you reboot after starting winbindd?

Either do that, or try looking for the nameserver cache daemons (nscd), and kill them 
all.  (Don't worry, they'll restart.)

I had the same problem with nss_ldap, and it drove me NUTS till I found out about the 
cache mechanism.

 -Original Message-
 From: Noel Kelly [mailto:nkelly;citrusnetworks.net]
 Sent: Friday, November 01, 2002 12:46 PM
 To: 'Sean Patrick Ingles'; [EMAIL PROTECTED]
 Subject: RE: [Samba] getent not working correctly
 
 
 You need getent to work.  This is really how Unix actually does the
 authenticating - winbind is just the conduit to the M$ database.
 
 Have you edited your /etc/nsswitch.conf correctly?  You need:
 
 passwd: files winbind nisplus
 shadow: files winbind nisplus
 group:  files winbind nisplus
 
 This will make Unix call winbind when looking for users/groups (this 
 the mechanism that getent passwd/group runs).
 
 HTH,
 Noel

 
 -Original Message-
 From: Sean Patrick Ingles [mailto:ingless;visionsys.com]
 Sent: 01 November 2002 15:41
 To: [EMAIL PROTECTED]
 Subject: [Samba] getent not working correctly
 
 
 Hello again!
 
 Ok, I've gotten wbinfo -u and wbinfo -g working great
 
 Now I try to run getent passwd and getent group I get my local 
 users/groups but not the ones on the Windows 2k Server Domain 
 Controller and it just
 hangs after listing the local ones.
 
 I also tried authenticating a user and it worked I'm assuming
 
 wbinfo -a DOMAIN+ingless@DOMAIN%password (The usernames here have
 user@domain due to some M$ Active-Directory thing...) plaintext 
 password authentication succeeded challenge/response password
 authentication failed
 Could not authenticate user DOMAIN+ingless@DOMAIN%password with
 challenge/response
 
 Do I need getent working, or is it safe to assume everything is 
 functioning normally now?
 
 Thanks!
 
 -SP

RE: [Samba] getent not working correctly

2002-11-04 Thread Sean Patrick Ingles
Ken - 

I have rebooted, still the same.
I don't notice any nscd daemons running at anytime as well

Thanks for your help!

-SP

-Original Message-
From: Hall, Ken (ECSS) [mailto:KeHall;exchange.ml.com] 
Sent: Monday, November 04, 2002 11:10 AM
To: Sean Patrick Ingles; [EMAIL PROTECTED]
Subject: RE: [Samba] getent not working correctly


All looks fine, but did you reboot after changing nsswitch.conf?

When I was testing both winbind and ldap nsswitch, I found that the mechanism caches 
lookups, so changes to the config weren't always recognized.  It would work, not work, 
work, etc., and it drove me crazy till I found out about the nscd daemons.

I'm not sure this is your problem, but it sounds a lot like what I saw, so I thought 
I'd ask.

 -Original Message-
 From: Sean Patrick Ingles [mailto:ingless;visionsys.com]
 Sent: Monday, November 04, 2002 10:19 AM
 To: Hall, Ken (ECSS); [EMAIL PROTECTED]
 Subject: RE: [Samba] getent not working correctly
 
 
 Here is my /etc/nsswitch.conf (abbreviated):
 
 passwd: files winbind
 shadow: files winbind
 group:  files winbind
 
 I first start smbd -D and nmbd -D
 
 Then I start winbindd
 
 Then I join the domain (smbpasswd -j DOMAIN -r
 DOMAINCONTROLLER -U Administrator) It works
 
 Then I check my Secret (wbinfo -t) and it's good
 
 Then I list users and groups (wbinfo -u and wbinfo -g) and it
 works fine
 
 However I still cannot get getent passwd and getent group working.
 
 I am 100% stumped
 
 -SP
 
 -Original Message-
 From: Hall, Ken (ECSS) [mailto:KeHall;exchange.ml.com]
 Sent: Friday, November 01, 2002 12:55 PM
 To: [EMAIL PROTECTED]
 Subject: RE: [Samba] getent not working correctly
 
 
 Did you reboot after starting winbindd?
 
 Either do that, or try looking for the nameserver cache
 daemons (nscd), and kill them all.  (Don't worry, they'll restart.)
 
 I had the same problem with nss_ldap, and it drove me NUTS
 till I found out about the cache mechanism.
 
  -Original Message-
  From: Noel Kelly [mailto:nkelly;citrusnetworks.net]
  Sent: Friday, November 01, 2002 12:46 PM
  To: 'Sean Patrick Ingles'; [EMAIL PROTECTED]
  Subject: RE: [Samba] getent not working correctly
  
  
  You need getent to work.  This is really how Unix actually does the
  authenticating - winbind is just the conduit to the M$ database.
  
  Have you edited your /etc/nsswitch.conf correctly?  You need:
  
  passwd: files winbind nisplus
  shadow: files winbind nisplus
  group:  files winbind nisplus
  
  This will make Unix call winbind when looking for users/groups (this 
  the mechanism that getent passwd/group runs).
  
  HTH,
  Noel
 
  
  -Original Message-
  From: Sean Patrick Ingles [mailto:ingless;visionsys.com]
  Sent: 01 November 2002 15:41
  To: [EMAIL PROTECTED]
  Subject: [Samba] getent not working correctly
  
  
  Hello again!
  
  Ok, I've gotten wbinfo -u and wbinfo -g working great
  
  Now I try to run getent passwd and getent group I get my local 
  users/groups but not the ones on the Windows 2k Server Domain 
  Controller and it just
  hangs after listing the local ones.
  
  I also tried authenticating a user and it worked I'm assuming
  
  wbinfo -a DOMAIN+ingless@DOMAIN%password (The usernames here have
  user@domain due to some M$ Active-Directory thing...) plaintext 
  password authentication succeeded challenge/response password
  authentication failed
  Could not authenticate user DOMAIN+ingless@DOMAIN%password with
  challenge/response
  
  Do I need getent working, or is it safe to assume everything is 
  functioning normally now?
  
  Thanks!
  
  -SP
  
  ===
   
     \    /   /    / Sean Patrick Ingles
      \  /   /    / Jr. Network Engineer
   \    /   ___ /    /
    \  /   /    / Vision Systems, Inc.
    __/   /   _/ 142 State Street
     Albany, NY 12207
      www.visionsys.com   Landline: +1 518.434.4300 x1406
    [EMAIL PROTECTED]  Fax: +1 518.434.4304
   
  ==
  
  --
  To unsubscribe from this list go to the following URL and read the
  instructions:  http://lists.samba.org/mailman/listinfo/samba
  --
  To unsubscribe from this list go to the following URL and read the
  instructions:  http://lists.samba.org/mailman/listinfo/samba
  
  ---
  Incoming mail is certified Virus Free.
  Checked by AVG anti-virus system (http://www.grisoft.com).
  Version: 6.0.404 / Virus Database: 228 - Release Date: 15/10/2002
   
  
  ---
  Outgoing mail is certified Virus Free.
  Checked by AVG anti-virus system (http://www.grisoft.com).
  Version: 6.0.408 / Virus Database: 230 - Release Date: 24/10/2002
   
  --
  To unsubscribe from this list go to the following URL and read the
  instructions:  http://lists.samba.org/mailman/listinfo/samba
  
 
 --
 To unsubscribe from this list go to the following URL and read

[Samba] getent not working correctly

2002-11-01 Thread Sean Patrick Ingles
Hello again!

Ok, I've gotten wbinfo -u and wbinfo -g working great

Now I try to run getent passwd and getent group I get my local users/groups but not 
the ones on the Windows 2k Server Domain Controller and it just hangs after listing 
the local ones.

I also tried authenticating a user and it worked I'm assuming

wbinfo -a DOMAIN+ingless@DOMAIN%password (The usernames here have user@domain due to 
some M$ Active-Directory thing...) plaintext password authentication succeeded 
challenge/response password authentication failed Could not authenticate user 
DOMAIN+ingless@DOMAIN%password with challenge/response

Do I need getent working, or is it safe to assume everything is functioning normally 
now?

Thanks!

-SP

===
 
   \    /   /    / Sean Patrick Ingles
    \  /   /    / Jr. Network Engineer
 \    /   ___ /    / 
  \  /   /    / Vision Systems, Inc.
  __/   /   _/ 142 State Street
   Albany, NY 12207
    www.visionsys.com   Landline: +1 518.434.4300 x1406
  [EMAIL PROTECTED]  Fax: +1 518.434.4304
 
==

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



[Samba] Winbindd not listing users/groups

2002-10-31 Thread Sean Patrick Ingles








Greetings from NY!



I am running SaMBa version 2.2.6
compiled from source on a RedHat 7.3 (Linux tux.#.net 2.4.19 #1 Fri Oct 25 15:39:52 EDT 2002 i686 unknown)
box.

I start smbd and nmbd as I usually do.

Then I start winbindd



I verified that they are running.



I run :

smbpasswd -j DOMAIN -r Windows2kDomainController -U
Administrator

Password:

Joined domain DOMAIN.



Ok, so Im in the domain



Then I run:

[root@tux src]#
wbinfo -t

Secret is good



Even better, my secret is good!



Then I try and list users/groups:

[root@tux src]#
wbinfo -u

Error looking up domain users

[root@tux src]#
wbinfo -g

Error looking up domain groups



And I sit there starting blankly at the screen, searching google, etc, then I join the SaMBa
mailing list and cross my fingers that there is someone out there who can help!

Im trying to integrate this Linux/SaMBa
server into my Microsoft-only Company, and so far the powers that be are up to
it, but I want to show them that the Linux fileserver can authenticate against
their current Windows 2000 Server domain controllers so we dont need 2
separate user databases.



Any assistance is much appreciated!



Regards,



-SP



===










\ /
/ / Sean Patrick Ingles
 \ /
/ / Jr. Network Engineer
 \ / ___
/ /






\ / / /Vision
Systems, Inc.
 __/ / _/142 State Street
Albany, NY 12207
 www.visionsys.comLandline: +1 518.434.4300 x1406
[EMAIL PROTECTED]Fax: +1 518.434.4304









==










RE: [Samba] Winbindd not listing users/groups

2002-10-31 Thread Sean Patrick Ingles
Everyone - 

I have successfully solved my problem with help from Gareth!

I entered:

wbinfo -A Administrator%my long admin pw (with the quotes)

then I sent SIGHUP to winbindd and I can now list users and groups!

Thanks a million Gareth!

-SP

-Original Message-
From: Sean Patrick Ingles 
Sent: Thursday, October 31, 2002 10:20 AM
To: Gareth Davies
Cc: [EMAIL PROTECTED]
Subject: RE: [Samba] Winbindd not listing users/groups

I entered wbinfo -A Administrator%password

And now wbinfo -t says:
Secret is bad
0xc001

Any thoughts?

-SP

-Original Message-
From: Gareth Davies [mailto:gdavies;willowbrook.co.uk] 
Sent: Thursday, October 31, 2002 10:05 AM
To: Sean Patrick Ingles; [EMAIL PROTECTED]
Subject: Re: [Samba] Winbindd not listing users/groups

 Original Message -
From: Sean Patrick Ingles
To: [EMAIL PROTECTED]
Sent: Thursday, October 31, 2002 2:43 PM
Subject: [Samba] Winbindd not listing users/groups


Greetings from NY!

I am running SaMBa version 2.2.6 compiled from source on a RedHat 7.3
(Linux
tux.#.net 2.4.19 #1 Fri Oct 25 15:39:52 EDT 2002 i686 unknown)
box.
I start smbd and nmbd as I usually do.
Then I start winbindd

I verified that they are running.

I run :
smbpasswd -j DOMAIN -r Windows2kDomainController -U Administrator
Password:
Joined domain DOMAIN.

Ok, so I'm in the domain

Then I run:
[root@tux src]# wbinfo -t
Secret is good

Even better, my secret is good!

Then I try and list users/groups:
[root@tux src]# wbinfo -u
Error looking up domain users
[root@tux src]# wbinfo -g
Error looking up domain groups




wbinfo -A Administrator%password

Please lose the HTML

 Shaolin - IT Systems
 WB Ltd.
.: http://www.security-forums.com :.

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



[Samba] getent not working correctly

2002-10-31 Thread Sean Patrick Ingles
Hello again!

Ok, I've gotten wbinfo -u and wbinfo -g working great

Now I try to run getent passwd and getent group I get my local users/groups but not 
the ones on the Windows 2k Server Domain Controller and it just hangs after listing 
the local ones.

I also tried authenticating a user and it worked I'm assuming

wbinfo -a DOMAIN+ingless@DOMAIN%password (The usernames here have user@domain due to 
some M$ Active-Directory thing...)
plaintext password authentication succeeded
challenge/response password authentication failed
Could not authenticate user DOMAIN+ingless@DOMAIN%password with challenge/response

Do I need getent working, or is it safe to assume everything is functioning normally 
now?

Thanks!

-SP

===
 
   \    /   /    / Sean Patrick Ingles
    \  /   /    / Jr. Network Engineer
 \    /   ___ /    / 
  \  /   /    / Vision Systems, Inc.
  __/   /   _/ 142 State Street
   Albany, NY 12207
    www.visionsys.com   Landline: +1 518.434.4300 x1406
  [EMAIL PROTECTED]  Fax: +1 518.434.4304
 
==

--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



[Samba] My Apologies for the HTML!

2002-10-31 Thread Sean Patrick Ingles
Sorry everyone!

My Company forces us to use Outlook, and it was defaulting to HTML and
Edit Messages with Word
Thanks Bill.

I've changed it to good 'ol Plain Text


Cheers!

-SP



===
 
   \/   // Sean Patrick Ingles
\  /   // Jr. Network Engineer
 \/   ___ // 
  \  /   // Vision Systems, Inc.
  __/   /   _/ 142 State Street
   Albany, NY 12207
www.visionsys.com   Landline: +1 518.434.4300 x1406
  [EMAIL PROTECTED]  Fax: +1 518.434.4304
 
==
--
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba