Re: [Samba] netlogon problems

2005-12-09 Thread Michael Barnes

I just went through all this with my set up.

First, insure the users have the desired group as their PRIMARY group in 
both NT groups and Unix groups.  You can verify this by checking the 
/etc/passwd list and running 'pdbedit -Lv'.  Change your [NETLOGON] 
entry to read 'path = /data/%g'.  In your /data/ folder, create a login 
 for each group, i.e. /data/finsvcs/scripts/login.bat; 
/data/accounts/scripts/login.bat; /data/others/scripts/login.bat; etc.

Each login would reflect what you want for that group. For example:

/data/finsvcs/scripts/login.bat:
REM Login.bat for Financial Services Members
net time \\lserver0 /set /yes
net use m: \\lserver0\finsvcs
net use x: /home

HTH,
Michael

Eric Hines told me on 12/8/2005 19:43:
You have not misunderstood my post; I have mis-described my problem.  
The logon script will not run until the user gets connected to his/her 
share on the samba server, and I cannot get the user connected in the 
first place.


I have a better description of my problem (finally) under the thread 
[Samba] Share Connection Failure.  Your points are valid, though, and 
I will take them to heart when I get the point of getting connected so 
that the logon script has a chance to run.


Do you have any advice on the basic connection problem?

Thanks

Eric Hines

At 12/08/05 01:25, Matthew Easton wrote:


Pardon me if I misunderstand your post...
I think you want to present a logon script to the user based on her/ 
his group membership.

In other words, ( I surmise ) currently Fred gets an invitation to
logon to finsvcs, but it will necessarily fail unless he is a member
of the finance group.  So you want him to have a logon script that
DOES NOT mount finsvcs share if he is not a member of finance.

I note that the logon script directive in you [global] settings has
no value.  In a  small environment, you can make that
logon script = /some/path/%u.bat
and give each user a unique logon script.  In a larger environment
you want to control scripts by group membership---
check out http://lists.samba.org/archive/samba/2002-March/040656.html
as an example of ways to control logon by group.

On Dec 4, 2005, at 12:19 PM, Eric Hines wrote:


Folks,

I'm trying to achieve control over who logs into a share according
to the group to which that person belongs, but with no luck.  I'm
running SUSE Pro 9.3 and Samba 3.0.13, with a Win2k machine on one
subnet and an XP laptop on another subnet.  In all cases, the user,
instead of getting into his share transparently, gets invited to
log in, and then the login is rejected.  I've run the login.bat
from the Windows machines, and that also only gets access denied.
Share valid users is set to %G (%U lets the user in just fine, but
that's inadequate security).  Users get into their home directories
just fine.

My login.bat is
net time \\lserver0 /set /yes
net use \\lserver0\accounts
net use \\lserver0\finsvcs
net use x: /home
My [netlogon] share is
[netlogon]
comment = Network logon service
path = /data/%U
valid users = %S
read only = No

My [global] is
[global]
workgroup = ASTRA_ENT
username map = /etc/samba/smbusers
syslog = 0
name resolve order = wins bcast hosts
printcap name = CUPS
show add printer wizard = No
add user script = /usr/sbin/useradd -m '%u'
delete user script = /usr/sbin/userdel -r '%u'
add group script = /usr/sbin/groupadd '%g'
delete group script = /usr/sbin/groupdel '%g'
add user to group script = /usr/sbin/groupmod -G '%g' '%u'
add machine script = /usr/sbin/useradd -s /bin/false -d / 
var/lib/nobody '%u'

logon script = scripts\login.bat
logon path =
logon drive = X:
domain logons = Yes
preferred master = Yes
wins support = Yes
ldap ssl = no

I've placed the login.bat file in the share accounts (\data \accounts 
and /data/financials in this case), and I've placed the

login.bat file in each user's home directory.  Nothing has worked.

I've been through the TOSHARG2 with no luck, and Googleing hasn't
brought me anything I recognized, either.  Any help would be
greatly appreciated.

Eric Hines


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


Re: [Samba] netlogon problems

2005-12-09 Thread Eric Hines

Michael,

This does help, but only when I get to that point.  As I gain further 
understanding of my problem, it's that I can't get my users logged on in 
the first place, so as to get to the point of needing to be able to run the 
script.


A better description of my problem is in the thread [Samba] Share 
Connection Failure.  Can you offer any help there?


Thanks

Eric Hines

At 12/09/05 08:47, Michael Barnes wrote:

I just went through all this with my set up.

First, insure the users have the desired group as their PRIMARY group in 
both NT groups and Unix groups.  You can verify this by checking the 
/etc/passwd list and running 'pdbedit -Lv'.  Change your [NETLOGON] entry 
to read 'path = /data/%g'.  In your /data/ folder, create a login  for 
each group, i.e. /data/finsvcs/scripts/login.bat; 
/data/accounts/scripts/login.bat; /data/others/scripts/login.bat; etc.

Each login would reflect what you want for that group. For example:

/data/finsvcs/scripts/login.bat:
REM Login.bat for Financial Services Members
net time \\lserver0 /set /yes
net use m: \\lserver0\finsvcs
net use x: /home

HTH,
Michael

Eric Hines told me on 12/8/2005 19:43:

You have not misunderstood my post; I have mis-described my problem.
The logon script will not run until the user gets connected to his/her 
share on the samba server, and I cannot get the user connected in the 
first place.
I have a better description of my problem (finally) under the thread 
[Samba] Share Connection Failure.  Your points are valid, though, and I 
will take them to heart when I get the point of getting connected so that 
the logon script has a chance to run.

Do you have any advice on the basic connection problem?
Thanks
Eric Hines
At 12/08/05 01:25, Matthew Easton wrote:


Pardon me if I misunderstand your post...
I think you want to present a logon script to the user based on her/ his 
group membership.

In other words, ( I surmise ) currently Fred gets an invitation to
logon to finsvcs, but it will necessarily fail unless he is a member
of the finance group.  So you want him to have a logon script that
DOES NOT mount finsvcs share if he is not a member of finance.

I note that the logon script directive in you [global] settings has
no value.  In a  small environment, you can make that
logon script = /some/path/%u.bat
and give each user a unique logon script.  In a larger environment
you want to control scripts by group membership---
check out http://lists.samba.org/archive/samba/2002-March/040656.html
as an example of ways to control logon by group.

On Dec 4, 2005, at 12:19 PM, Eric Hines wrote:


Folks,

I'm trying to achieve control over who logs into a share according
to the group to which that person belongs, but with no luck.  I'm
running SUSE Pro 9.3 and Samba 3.0.13, with a Win2k machine on one
subnet and an XP laptop on another subnet.  In all cases, the user,
instead of getting into his share transparently, gets invited to
log in, and then the login is rejected.  I've run the login.bat
from the Windows machines, and that also only gets access denied.
Share valid users is set to %G (%U lets the user in just fine, but
that's inadequate security).  Users get into their home directories
just fine.

My login.bat is
net time \\lserver0 /set /yes
net use \\lserver0\accounts
net use \\lserver0\finsvcs
net use x: /home
My [netlogon] share is
[netlogon]
comment = Network logon service
path = /data/%U
valid users = %S
read only = No

My [global] is
[global]
workgroup = ASTRA_ENT
username map = /etc/samba/smbusers
syslog = 0
name resolve order = wins bcast hosts
printcap name = CUPS
show add printer wizard = No
add user script = /usr/sbin/useradd -m '%u'
delete user script = /usr/sbin/userdel -r '%u'
add group script = /usr/sbin/groupadd '%g'
delete group script = /usr/sbin/groupdel '%g'
add user to group script = /usr/sbin/groupmod -G '%g' '%u'
add machine script = /usr/sbin/useradd -s /bin/false -d / 
var/lib/nobody '%u'

logon script = scripts\login.bat
logon path =
logon drive = X:
domain logons = Yes
preferred master = Yes
wins support = Yes
ldap ssl = no

I've placed the login.bat file in the share accounts (\data \accounts 
and /data/financials in this case), and I've placed the

login.bat file in each user's home directory.  Nothing has worked.

I've been through the TOSHARG2 with no luck, and Googleing hasn't
brought me anything I recognized, either.  Any help would be
greatly appreciated.

Eric Hines


There is no nonsense so errant that it cannot be made the creed of the 
vast majority by adequate governmental action.

--Bertrand Russell


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


Re: [Samba] netlogon problems

2005-12-08 Thread Eric Hines
You have not misunderstood my post; I have mis-described my problem.  The 
logon script will not run until the user gets connected to his/her share on 
the samba server, and I cannot get the user connected in the first place.


I have a better description of my problem (finally) under the thread 
[Samba] Share Connection Failure.  Your points are valid, though, and I 
will take them to heart when I get the point of getting connected so that 
the logon script has a chance to run.


Do you have any advice on the basic connection problem?

Thanks

Eric Hines

At 12/08/05 01:25, Matthew Easton wrote:

Pardon me if I misunderstand your post...
I think you want to present a logon script to the user based on her/ his 
group membership.

In other words, ( I surmise ) currently Fred gets an invitation to
logon to finsvcs, but it will necessarily fail unless he is a member
of the finance group.  So you want him to have a logon script that
DOES NOT mount finsvcs share if he is not a member of finance.

I note that the logon script directive in you [global] settings has
no value.  In a  small environment, you can make that
logon script = /some/path/%u.bat
and give each user a unique logon script.  In a larger environment
you want to control scripts by group membership---
check out http://lists.samba.org/archive/samba/2002-March/040656.html
as an example of ways to control logon by group.

On Dec 4, 2005, at 12:19 PM, Eric Hines wrote:


Folks,

I'm trying to achieve control over who logs into a share according
to the group to which that person belongs, but with no luck.  I'm
running SUSE Pro 9.3 and Samba 3.0.13, with a Win2k machine on one
subnet and an XP laptop on another subnet.  In all cases, the user,
instead of getting into his share transparently, gets invited to
log in, and then the login is rejected.  I've run the login.bat
from the Windows machines, and that also only gets access denied.
Share valid users is set to %G (%U lets the user in just fine, but
that's inadequate security).  Users get into their home directories
just fine.

My login.bat is
net time \\lserver0 /set /yes
net use \\lserver0\accounts
net use \\lserver0\finsvcs
net use x: /home
My [netlogon] share is
[netlogon]
comment = Network logon service
path = /data/%U
valid users = %S
read only = No

My [global] is
[global]
workgroup = ASTRA_ENT
username map = /etc/samba/smbusers
syslog = 0
name resolve order = wins bcast hosts
printcap name = CUPS
show add printer wizard = No
add user script = /usr/sbin/useradd -m '%u'
delete user script = /usr/sbin/userdel -r '%u'
add group script = /usr/sbin/groupadd '%g'
delete group script = /usr/sbin/groupdel '%g'
add user to group script = /usr/sbin/groupmod -G '%g' '%u'
add machine script = /usr/sbin/useradd -s /bin/false -d / 
var/lib/nobody '%u'

logon script = scripts\login.bat
logon path =
logon drive = X:
domain logons = Yes
preferred master = Yes
wins support = Yes
ldap ssl = no

I've placed the login.bat file in the share accounts (\data \accounts and 
/data/financials in this case), and I've placed the

login.bat file in each user's home directory.  Nothing has worked.

I've been through the TOSHARG2 with no luck, and Googleing hasn't
brought me anything I recognized, either.  Any help would be
greatly appreciated.

Eric Hines



There is no nonsense so errant that it cannot be made the creed of
the vast majority by adequate governmental action.
--Bertrand Russell
--
To unsubscribe from this list go to the following URL and read the
instructions:  https://lists.samba.org/mailman/listinfo/samba



There is no nonsense so errant that it cannot be made the creed of the vast 
majority by adequate governmental action.

--Bertrand Russell

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


Re: [Samba] netlogon problems

2005-12-07 Thread Matthew Easton

Pardon me if I misunderstand your post...
I think you want to present a logon script to the user based on her/ 
his group membership.
In other words, ( I surmise ) currently Fred gets an invitation to  
logon to finsvcs, but it will necessarily fail unless he is a member  
of the finance group.  So you want him to have a logon script that  
DOES NOT mount finsvcs share if he is not a member of finance.


I note that the logon script directive in you [global] settings has  
no value.  In a  small environment, you can make that

logon script = /some/path/%u.bat
and give each user a unique logon script.  In a larger environment  
you want to control scripts by group membership---
check out http://lists.samba.org/archive/samba/2002-March/040656.html  
as an example of ways to control logon by group.


On Dec 4, 2005, at 12:19 PM, Eric Hines wrote:


Folks,

I'm trying to achieve control over who logs into a share according  
to the group to which that person belongs, but with no luck.  I'm  
running SUSE Pro 9.3 and Samba 3.0.13, with a Win2k machine on one  
subnet and an XP laptop on another subnet.  In all cases, the user,  
instead of getting into his share transparently, gets invited to  
log in, and then the login is rejected.  I've run the login.bat  
from the Windows machines, and that also only gets access denied.   
Share valid users is set to %G (%U lets the user in just fine, but  
that's inadequate security).  Users get into their home directories  
just fine.


My login.bat is
net time \\lserver0 /set /yes
net use \\lserver0\accounts
net use \\lserver0\finsvcs
net use x: /home
My [netlogon] share is
[netlogon]
comment = Network logon service
path = /data/%U
valid users = %S
read only = No

My [global] is
[global]
workgroup = ASTRA_ENT
username map = /etc/samba/smbusers
syslog = 0
name resolve order = wins bcast hosts
printcap name = CUPS
show add printer wizard = No
add user script = /usr/sbin/useradd -m '%u'
delete user script = /usr/sbin/userdel -r '%u'
add group script = /usr/sbin/groupadd '%g'
delete group script = /usr/sbin/groupdel '%g'
add user to group script = /usr/sbin/groupmod -G '%g' '%u'
add machine script = /usr/sbin/useradd -s /bin/false -d / 
var/lib/nobody '%u'

logon script = scripts\login.bat
logon path =
logon drive = X:
domain logons = Yes
preferred master = Yes
wins support = Yes
ldap ssl = no

I've placed the login.bat file in the share accounts (\data 
\accounts and /data/financials in this case), and I've placed the  
login.bat file in each user's home directory.  Nothing has worked.


I've been through the TOSHARG2 with no luck, and Googleing hasn't  
brought me anything I recognized, either.  Any help would be  
greatly appreciated.


Eric Hines



There is no nonsense so errant that it cannot be made the creed of  
the vast majority by adequate governmental action.

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




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


[Samba] netlogon problems

2005-12-04 Thread Eric Hines

Folks,

I'm trying to achieve control over who logs into a share according to the 
group to which that person belongs, but with no luck.  I'm running SUSE Pro 
9.3 and Samba 3.0.13, with a Win2k machine on one subnet and an XP laptop 
on another subnet.  In all cases, the user, instead of getting into his 
share transparently, gets invited to log in, and then the login is 
rejected.  I've run the login.bat from the Windows machines, and that also 
only gets access denied.  Share valid users is set to %G (%U lets the user 
in just fine, but that's inadequate security).  Users get into their home 
directories just fine.


My login.bat is
net time \\lserver0 /set /yes
net use \\lserver0\accounts
net use \\lserver0\finsvcs
net use x: /home
My [netlogon] share is
[netlogon]
comment = Network logon service
path = /data/%U
valid users = %S
read only = No

My [global] is
[global]
workgroup = ASTRA_ENT
username map = /etc/samba/smbusers
syslog = 0
name resolve order = wins bcast hosts
printcap name = CUPS
show add printer wizard = No
add user script = /usr/sbin/useradd -m '%u'
delete user script = /usr/sbin/userdel -r '%u'
add group script = /usr/sbin/groupadd '%g'
delete group script = /usr/sbin/groupdel '%g'
add user to group script = /usr/sbin/groupmod -G '%g' '%u'
add machine script = /usr/sbin/useradd -s /bin/false -d 
/var/lib/nobody '%u'

logon script = scripts\login.bat
logon path =
logon drive = X:
domain logons = Yes
preferred master = Yes
wins support = Yes
ldap ssl = no

I've placed the login.bat file in the share accounts (\data\accounts and 
/data/financials in this case), and I've placed the login.bat file in each 
user's home directory.  Nothing has worked.


I've been through the TOSHARG2 with no luck, and Googleing hasn't brought 
me anything I recognized, either.  Any help would be greatly appreciated.


Eric Hines



There is no nonsense so errant that it cannot be made the creed of the vast 
majority by adequate governmental action.

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


Re: [Samba] netlogon problems

2004-03-24 Thread Radio Gong 2000 GmbH Co. KG [Technik]
Big thanks to all who helped me!

I found now that I completely missconfigured my wins servers on samba, 
corrected it and now everything's fine...

Without your hints I wouldn't have been able to find the problem, again thank 
u...

Greetings

Sascha

Am Mittwoch, 24. Mrz 2004 14:06 schrieb Craig White:
 On Wed, 2004-03-24 at 05:08, Radio Gong 2000 GmbH  Co. KG [Technik]

 wrote:
  I don't know how? Would you explain it to me?
 
  Sascha
 
  Am Mittwoch, 24. Mrz 2004 03:28 schrieben Sie:
   On Tue, 2004-03-23 at 11:48, Radio Gong 2000 GmbH  Co. KG [Technik]
  
   wrote:
Is there another possibility than importing lmhosts on every
client???
  
   
   sure, a command script
  
   Craig

 -
 something like including in logon.bat

 xcopy \\server\netlogon\lmhosts c:\winnt\system 32\drivers\inf\lmhosts

 Craig

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


[Samba] netlogon problems

2004-03-23 Thread Radio Gong 2000 GmbH Co. KG [Technik]
Hi @ all,

I have two samba-servers running perfectly!

Now I configured a third machine which provides some backups. Since I brought 
it up in the network the windows client won't execute the netlogon-scripts...
When I turn off samba-services on the backup-machine it works again.

Did I miss something??? Maybe you can open my eyes...

Best regards

Sascha


Here my conf-files:

PDC
--

# Global parameters
[global]
netbios name = Hunter 
workgroup = SNEAKER
server string = SoundServer %v 
realm = hunter.radiogong.intern
admin users = root, administrator, sascha
security = user
dns proxy = yes
wins proxy = Yes
wins support = Yes
ldap ssl = no
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192 
SO_RCVBUF=8192
keepalive = 255
locking = 1
kernel oplocks = yes
blocking locks = yes
oplocks = yes
level2 oplocks = yes
large readwrite = yes
map to guest = Bad User
dos charset = ISO8859-15
unix charset = ISO8859-15 
display charset = ISO8859-15
printing = cups
printcap name = cups
utmp = Yes
host msdfs = Yes

# NETWORK STUFF
interfaces = 192.168.10.1/24, 192.168.11.1/24
hosts allow = 192.168.
bind interfaces only = yes
nt acl support = yes
client schannel = auto
server schannel = yes
client signing = auto
server signing = no

# FEATURE STUFF
domain logons = yes
os level = 33
domain master = yes 
preferred master = yes
local master = yes
time server = yes

# LOGON STUFF
logon script = logon.bat
logon drive =
logon home =
logon path =
template homedir =

[netlogon]
   comment = Network Logon Service
   path = /data/netlogon
   public = No
   guest ok = No
   share modes = No

# SHARES 











BDC
--
# Global parameters
[global]
netbios name = Assassin
workgroup = SNEAKER
server string = FileServer %v 
realm = assassin.radiogong.intern
admin users = root, administrator, sascha
security = user 
dns proxy = yes
#   wins proxy = Yes
#   wins support = Yes
ldap ssl = no
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192 
SO_RCVBUF=8192
keepalive = 255
locking = 1
kernel oplocks = yes
blocking locks = yes
oplocks = yes
level2 oplocks = yes
large readwrite = yes
map to guest = Bad User
dos charset = ISO8859-15
unix charset = ISO8859-15 
display charset = ISO8859-15
printing = cups
printcap name = cups
utmp = Yes
host msdfs = Yes
  
# NETWORK STUFF
interfaces = 192.168.10.2/24
hosts allow = 192.168.
bind interfaces only = yes
nt acl support = yes
client schannel = auto
server schannel = no
client signing = auto
server signing = no

# FEATURE STUFF
domain logons = yes
os level = 32
domain master = no
preferred master = yes 
local master = yes
time server = yes

# LOGON STUFF
#   logon script = logon.bat
logon drive =
logon home =
logon path =
template homedir =

# SHARES 










BACKUP
--
# Global parameters
[global]
netbios name = Leo 
workgroup = SNEAKER
server string = BackUpServer %v 
realm = leo.radiogong.intern
admin users = root, administrator, sascha
security = share 
# Use password server option only with security = server
#   password server = hunter.radiogong.intern
dns proxy = yes
#   wins proxy = Yes
#   wins support = Yes
ldap ssl = no
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192 
SO_RCVBUF=8192
keepalive = 255
locking = 1
kernel oplocks = yes
blocking locks = yes
oplocks = yes
level2 oplocks = yes
large readwrite = yes
map to guest = Bad User
dos charset = ISO8859-15
unix charset = ISO8859-15 
display charset = ISO8859-15
printing = cups
printcap name = cups
utmp = Yes
host msdfs = Yes

# NETWORK STUFF
interfaces = 192.168.10.3/24
hosts allow = 192.168.
bind interfaces only = yes
nt acl support = yes
#   client schannel = auto 
server schannel = no 
#   client signing = auto
#   server signing = auto 
 
# FEATURE STUFF
domain logons = yes 

Re: [Samba] netlogon problems

2004-03-23 Thread RRuegner
Radio Gong 2000 GmbH  Co. KG [Technik] schrieb:

Hi @ all,

I have two samba-servers running perfectly!

Now I configured a third machine which provides some backups. Since I brought 
it up in the network the windows client won't execute the netlogon-scripts...
When I turn off samba-services on the backup-machine it works again.

Did I miss something??? Maybe you can open my eyes...

Best regards

Sascha

Here my conf-files:

PDC
--
# Global parameters
[global]
netbios name = Hunter 
workgroup = SNEAKER
server string = SoundServer %v 
realm = hunter.radiogong.intern
admin users = root, administrator, sascha
security = user
dns proxy = yes
wins proxy = Yes
wins support = Yes
ldap ssl = no
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192 
SO_RCVBUF=8192
keepalive = 255
locking = 1
kernel oplocks = yes
blocking locks = yes
oplocks = yes
level2 oplocks = yes
large readwrite = yes
map to guest = Bad User
dos charset = ISO8859-15
unix charset = ISO8859-15 
display charset = ISO8859-15
printing = cups
printcap name = cups
utmp = Yes
host msdfs = Yes

# NETWORK STUFF
interfaces = 192.168.10.1/24, 192.168.11.1/24
hosts allow = 192.168.
bind interfaces only = yes
nt acl support = yes
client schannel = auto
server schannel = yes
client signing = auto
server signing = no

# FEATURE STUFF
domain logons = yes
os level = 33
domain master = yes 
preferred master = yes
local master = yes
time server = yes

# LOGON STUFF
logon script = logon.bat
logon drive =
logon home =
logon path =
template homedir =
[netlogon]
   comment = Network Logon Service
   path = /data/netlogon
   public = No
   guest ok = No
   share modes = No
# SHARES 











BDC
--
# Global parameters
[global]
netbios name = Assassin
workgroup = SNEAKER
server string = FileServer %v 
realm = assassin.radiogong.intern
admin users = root, administrator, sascha
security = user 
dns proxy = yes
#   wins proxy = Yes
#   wins support = Yes
ldap ssl = no
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192 
SO_RCVBUF=8192
keepalive = 255
locking = 1
kernel oplocks = yes
blocking locks = yes
oplocks = yes
level2 oplocks = yes
large readwrite = yes
map to guest = Bad User
dos charset = ISO8859-15
unix charset = ISO8859-15 
display charset = ISO8859-15
printing = cups
printcap name = cups
utmp = Yes
host msdfs = Yes
  
# NETWORK STUFF
interfaces = 192.168.10.2/24
hosts allow = 192.168.
bind interfaces only = yes
nt acl support = yes
client schannel = auto
server schannel = no
client signing = auto
server signing = no

# FEATURE STUFF
domain logons = yes
os level = 32
domain master = no
preferred master = yes 
local master = yes
time server = yes

# LOGON STUFF
#   logon script = logon.bat
logon drive =
logon home =
logon path =
template homedir =
# SHARES 









BACKUP
--
# Global parameters
[global]
netbios name = Leo 
workgroup = SNEAKER
server string = BackUpServer %v 
realm = leo.radiogong.intern
admin users = root, administrator, sascha
security = share 
# Use password server option only with security = server
#   password server = hunter.radiogong.intern
dns proxy = yes
#   wins proxy = Yes
#   wins support = Yes
ldap ssl = no
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192 
SO_RCVBUF=8192
keepalive = 255
locking = 1
kernel oplocks = yes
blocking locks = yes
oplocks = yes
level2 oplocks = yes
large readwrite = yes
map to guest = Bad User
dos charset = ISO8859-15
unix charset = ISO8859-15 
display charset = ISO8859-15
printing = cups
printcap name = cups
utmp = Yes
host msdfs = Yes

# NETWORK STUFF
interfaces = 192.168.10.3/24
hosts allow = 192.168.
bind interfaces only = yes
nt acl support = yes
#   client schannel = auto 
server schannel = no 
#   client signing = auto
#   server signing = auto 
 
# FEATURE 

Re: [Samba] netlogon problems

2004-03-23 Thread Radio Gong 2000 GmbH Co. KG [Technik]
Unfortunatly that's no solution...

Need more help, please...

Thanks in advance

Sascha

Am Dienstag, 23. März 2004 09:59 schrieb RRuegner:
 Radio Gong 2000 GmbH  Co. KG [Technik] schrieb:
  Hi @ all,
 
  I have two samba-servers running perfectly!
 
  Now I configured a third machine which provides some backups. Since I
  brought it up in the network the windows client won't execute the
  netlogon-scripts... When I turn off samba-services on the backup-machine
  it works again.
 
  Did I miss something??? Maybe you can open my eyes...
 
  Best regards
 
  Sascha
 
 
  Here my conf-files:
 
  PDC
  --
 
  # Global parameters
  [global]
  netbios name = Hunter
  workgroup = SNEAKER
  server string = SoundServer %v
  realm = hunter.radiogong.intern
  admin users = root, administrator, sascha
  security = user
  dns proxy = yes
  wins proxy = Yes
  wins support = Yes
  ldap ssl = no
  socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192
  SO_RCVBUF=8192
  keepalive = 255
  locking = 1
  kernel oplocks = yes
  blocking locks = yes
  oplocks = yes
  level2 oplocks = yes
  large readwrite = yes
  map to guest = Bad User
  dos charset = ISO8859-15
  unix charset = ISO8859-15
  display charset = ISO8859-15
  printing = cups
  printcap name = cups
  utmp = Yes
  host msdfs = Yes
 
  # NETWORK STUFF
  interfaces = 192.168.10.1/24, 192.168.11.1/24
  hosts allow = 192.168.
  bind interfaces only = yes
  nt acl support = yes
  client schannel = auto
  server schannel = yes
  client signing = auto
  server signing = no
 
  # FEATURE STUFF
  domain logons = yes
  os level = 33
  domain master = yes
  preferred master = yes
  local master = yes
  time server = yes
 
  # LOGON STUFF
  logon script = logon.bat
  logon drive =
  logon home =
  logon path =
  template homedir =
 
  [netlogon]
 comment = Network Logon Service
 path = /data/netlogon
 public = No
 guest ok = No
 share modes = No
 
  # SHARES 
 
 
 
 
 
 
 
 
 
 
 
  BDC
  --
  # Global parameters
  [global]
  netbios name = Assassin
  workgroup = SNEAKER
  server string = FileServer %v
  realm = assassin.radiogong.intern
  admin users = root, administrator, sascha
  security = user
  dns proxy = yes
  #   wins proxy = Yes
  #   wins support = Yes
  ldap ssl = no
  socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192
  SO_RCVBUF=8192
  keepalive = 255
  locking = 1
  kernel oplocks = yes
  blocking locks = yes
  oplocks = yes
  level2 oplocks = yes
  large readwrite = yes
  map to guest = Bad User
  dos charset = ISO8859-15
  unix charset = ISO8859-15
  display charset = ISO8859-15
  printing = cups
  printcap name = cups
  utmp = Yes
  host msdfs = Yes
 
  # NETWORK STUFF
  interfaces = 192.168.10.2/24
  hosts allow = 192.168.
  bind interfaces only = yes
  nt acl support = yes
  client schannel = auto
  server schannel = no
  client signing = auto
  server signing = no
 
  # FEATURE STUFF
  domain logons = yes
  os level = 32
  domain master = no
  preferred master = yes
  local master = yes
  time server = yes
 
  # LOGON STUFF
  #   logon script = logon.bat
  logon drive =
  logon home =
  logon path =
  template homedir =
 
  # SHARES 
 
 
 
 
 
 
 
 
 
 
  BACKUP
  --
  # Global parameters
  [global]
  netbios name = Leo
  workgroup = SNEAKER
  server string = BackUpServer %v
  realm = leo.radiogong.intern
  admin users = root, administrator, sascha
  security = share
  # Use password server option only with security = server
  #   password server = hunter.radiogong.intern
  dns proxy = yes
  #   wins proxy = Yes
  #   wins support = Yes
  ldap ssl = no
  socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192
  SO_RCVBUF=8192
  keepalive = 255
  locking = 1
  kernel oplocks = yes
  blocking locks = yes
  oplocks = yes
  level2 oplocks = yes
  large readwrite = yes
  map to guest = Bad User
  dos 

Re: [Samba] netlogon problems

2004-03-23 Thread Radio Gong 2000 GmbH Co. KG [Technik]
Just looked up which server is MASTERBROWSER indeed and it seems ok...


# nmblookup -SR hunter

querying hunter on 192.168.10.255
192.168.10.1 hunter00
Looking up status of 192.168.10.1
HUNTER  00 - H ACTIVE
HUNTER  03 - H ACTIVE
HUNTER  20 - H ACTIVE
..__MSBROWSE__. 01 - GROUP H ACTIVE
SNEAKER 00 - GROUP H ACTIVE
SNEAKER 1b - H ACTIVE
SNEAKER 1c - GROUP H ACTIVE
SNEAKER 1d - H ACTIVE
SNEAKER 1e - GROUP H ACTIVE

# nmblookup -SR assassin

querying assassin on 192.168.10.255
192.168.10.2 assassin00
Looking up status of 192.168.10.2
ASSASSIN00 - B ACTIVE
ASSASSIN03 - B ACTIVE
ASSASSIN20 - B ACTIVE
SNEAKER 00 - GROUP B ACTIVE
SNEAKER 1c - B ACTIVE
SNEAKER 1e - GROUP B ACTIVE

# nmblookup -SR leo

querying leo on 192.168.10.255
192.168.10.3 leo00
Looking up status of 192.168.10.3
LEO 00 - B ACTIVE
LEO 03 - B ACTIVE
LEO 20 - B ACTIVE
SNEAKER 00 - GROUP B ACTIVE
SNEAKER 1c - B ACTIVE
SNEAKER 1e - GROUP B ACTIVE




Am Dienstag, 23. März 2004 09:57 schrieben Sie:
 Just guessing but check to see if Master Browser is set to NO if one of
 your other two is set to yes?
 -Rudy

 -Original Message-
 From: Radio Gong 2000 GmbH  Co. KG [Technik]
 [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, March 23, 2004 3:44 AM
 To: [EMAIL PROTECTED]
 Subject: [Samba] netlogon problems


 Hi @ all,

 I have two samba-servers running perfectly!

 Now I configured a third machine which provides some backups. Since I
 brought
 it up in the network the windows client won't execute the
 netlogon-scripts... When I turn off samba-services on the backup-machine it
 works again.

 Did I miss something??? Maybe you can open my eyes...

 Best regards

 Sascha


 Here my conf-files:

 PDC
 --

 # Global parameters
 [global]
 netbios name = Hunter
 workgroup = SNEAKER
 server string = SoundServer %v
 realm = hunter.radiogong.intern
 admin users = root, administrator, sascha
 security = user
 dns proxy = yes
 wins proxy = Yes
 wins support = Yes
 ldap ssl = no
 socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192
 SO_RCVBUF=8192
 keepalive = 255
 locking = 1
 kernel oplocks = yes
 blocking locks = yes
 oplocks = yes
 level2 oplocks = yes
 large readwrite = yes
 map to guest = Bad User
 dos charset = ISO8859-15
 unix charset = ISO8859-15
 display charset = ISO8859-15
 printing = cups
 printcap name = cups
 utmp = Yes
 host msdfs = Yes

 # NETWORK STUFF
 interfaces = 192.168.10.1/24, 192.168.11.1/24
 hosts allow = 192.168.
 bind interfaces only = yes
 nt acl support = yes
 client schannel = auto
 server schannel = yes
 client signing = auto
 server signing = no

 # FEATURE STUFF
 domain logons = yes
 os level = 33
 domain master = yes
 preferred master = yes
 local master = yes
 time server = yes

 # LOGON STUFF
 logon script = logon.bat
 logon drive =
 logon home =
 logon path =
 template homedir =

 [netlogon]
comment = Network Logon Service
path = /data/netlogon
public = No
guest ok = No
share modes = No

 # SHARES 











 BDC
 --
 # Global parameters
 [global]
 netbios name = Assassin
 workgroup = SNEAKER
 server string = FileServer %v
 realm = assassin.radiogong.intern
 admin users = root, administrator, sascha
 security = user
 dns proxy = yes
 #   wins proxy = Yes
 #   wins support = Yes
 ldap ssl = no
 socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192
 SO_RCVBUF=8192
 keepalive = 255
 locking = 1
 kernel oplocks = yes
 blocking locks = yes
 oplocks = yes
 level2 oplocks = yes
 large readwrite = yes
 map to guest = Bad User
 dos charset = ISO8859-15
 unix charset = ISO8859-15
 display charset = ISO8859-15
 printing = cups
 printcap name = cups
 utmp = Yes
 host msdfs = Yes

 # NETWORK STUFF
 interfaces = 192.168.10.2/24
 hosts allow = 192.168.
 bind interfaces only = yes
 nt acl support = yes

Re: [Samba] netlogon problems

2004-03-23 Thread Radio Gong 2000 GmbH Co. KG [Technik]
This is how it looks like on a windows box:

nbtstat -a hunter

LAN-Verbindung:
Knoten-IP-Adresse: [192.168.10.53] Bereichskennung: []

  NetBIOS-Namentabelle des Remotecomputers

   Name   Typ  Status
-
HUNTER 00  UNIQUE  Registriert
HUNTER 03  UNIQUE  Registriert
HUNTER 20  UNIQUE  Registriert
HUNTER 00  UNIQUE  Registriert
HUNTER 03  UNIQUE  Registriert
HUNTER 20  UNIQUE  Registriert
..__MSBROWSE__.01  GROUP   Registriert
SNEAKER00  GROUP   Registriert
SNEAKER1B  UNIQUE  Registriert
SNEAKER1C  GROUP   Registriert
SNEAKER1D  UNIQUE  Registriert
SNEAKER1E  GROUP   Registriert
SNEAKER00  GROUP   Registriert
SNEAKER1B  UNIQUE  Registriert
SNEAKER1C  GROUP   Registriert
SNEAKER1D  UNIQUE  Registriert
SNEAKER1E  GROUP   Registriert

MAC Adresse = 00-00-00-00-00-00


nbtstat -a assassin

LAN-Verbindung:
Knoten-IP-Adresse: [192.168.10.53] Bereichskennung: []

  NetBIOS-Namentabelle des Remotecomputers

   Name   Typ  Status
-
ASSASSIN   00  UNIQUE  Registriert
ASSASSIN   03  UNIQUE  Registriert
ASSASSIN   20  UNIQUE  Registriert
ASSASSIN   00  UNIQUE  Registriert
ASSASSIN   03  UNIQUE  Registriert
ASSASSIN   20  UNIQUE  Registriert
SNEAKER00  GROUP   Registriert
SNEAKER1C  GROUP   Registriert
SNEAKER1E  GROUP   Registriert
SNEAKER00  GROUP   Registriert
SNEAKER1C  UNIQUE  Registriert
SNEAKER1E  GROUP   Registriert

MAC Adresse = 00-00-00-00-00-00


nbtstat -a leo

LAN-Verbindung:
Knoten-IP-Adresse: [192.168.10.53] Bereichskennung: []

  NetBIOS-Namentabelle des Remotecomputers

   Name   Typ  Status
-
LEO00  UNIQUE  Registriert
LEO03  UNIQUE  Registriert
LEO20  UNIQUE  Registriert
LEO00  UNIQUE  Registriert
LEO03  UNIQUE  Registriert
LEO20  UNIQUE  Registriert
SNEAKER00  GROUP   Registriert
SNEAKER1C  GROUP   Registriert
SNEAKER1E  GROUP   Registriert
SNEAKER00  GROUP   Registriert
SNEAKER1C  UNIQUE  Registriert
SNEAKER1E  GROUP   Registriert

MAC Adresse = 00-00-00-00-00-00




Am Dienstag, 23. März 2004 14:37 schrieb Radio Gong 2000 GmbH  Co. KG 
[Technik]:
 Just looked up which server is MASTERBROWSER indeed and it seems ok...


 # nmblookup -SR hunter

 querying hunter on 192.168.10.255
 192.168.10.1 hunter00
 Looking up status of 192.168.10.1
 HUNTER  00 - H ACTIVE
 HUNTER  03 - H ACTIVE
 HUNTER  20 - H ACTIVE
 ..__MSBROWSE__. 01 - GROUP H ACTIVE
 SNEAKER 00 - GROUP H ACTIVE
 SNEAKER 1b - H ACTIVE
 SNEAKER 1c - GROUP H ACTIVE
 SNEAKER 1d - H ACTIVE
 SNEAKER 1e - GROUP H ACTIVE

 # nmblookup -SR assassin

 querying assassin on 192.168.10.255
 192.168.10.2 assassin00
 Looking up status of 192.168.10.2
 ASSASSIN00 - B ACTIVE
 ASSASSIN03 - B ACTIVE
 ASSASSIN20 - B ACTIVE
 SNEAKER 00 - GROUP B ACTIVE
 SNEAKER 1c - B ACTIVE
 SNEAKER 1e - GROUP B ACTIVE

 # nmblookup -SR leo

 querying leo on 192.168.10.255
 192.168.10.3 leo00
 Looking up status of 192.168.10.3
 LEO 00 - B ACTIVE
 LEO 03 - B ACTIVE
 LEO 20 - B ACTIVE
 SNEAKER 00 - GROUP B ACTIVE
 SNEAKER 1c - B ACTIVE
 SNEAKER 1e - GROUP B ACTIVE

 Am Dienstag, 23. März 2004 09:57 schrieben Sie:
  Just guessing but check to see if Master Browser is set to NO if one of
  your other two is set to yes?
  -Rudy
 
  -Original Message-
  From: Radio Gong 2000 GmbH  Co. KG [Technik]
  [mailto:[EMAIL PROTECTED]
  Sent: Tuesday, March 23, 2004 3:44 AM
  To: [EMAIL PROTECTED]
  Subject: [Samba] netlogon problems
 
 
  Hi @ all,
 
  I have two samba-servers running perfectly!
 
  Now I configured a third machine which provides some backups. Since I
  brought
  it up in the network the windows client won't execute the
  netlogon-scripts... When I turn off samba-services on the backup-machine
  it works again.
 
  Did I miss something??? Maybe you can open my

Re: [Samba] netlogon problems

2004-03-23 Thread Radio Gong 2000 GmbH Co. KG [Technik]
: Radio Gong 2000 GmbH  Co. KG [Technik]
   [mailto:[EMAIL PROTECTED]
   Sent: Tuesday, March 23, 2004 3:44 AM
   To: [EMAIL PROTECTED]
   Subject: [Samba] netlogon problems
  
  
   Hi @ all,
  
   I have two samba-servers running perfectly!
  
   Now I configured a third machine which provides some backups. Since I
   brought
   it up in the network the windows client won't execute the
   netlogon-scripts... When I turn off samba-services on the
   backup-machine it works again.
  
   Did I miss something??? Maybe you can open my eyes...
  
   Best regards
  
   Sascha
  
  
   Here my conf-files:
  
   PDC
   --
  
   # Global parameters
   [global]
   netbios name = Hunter
   workgroup = SNEAKER
   server string = SoundServer %v
   realm = hunter.radiogong.intern
   admin users = root, administrator, sascha
   security = user
   dns proxy = yes
   wins proxy = Yes
   wins support = Yes
   ldap ssl = no
   socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192
   SO_RCVBUF=8192
   keepalive = 255
   locking = 1
   kernel oplocks = yes
   blocking locks = yes
   oplocks = yes
   level2 oplocks = yes
   large readwrite = yes
   map to guest = Bad User
   dos charset = ISO8859-15
   unix charset = ISO8859-15
   display charset = ISO8859-15
   printing = cups
   printcap name = cups
   utmp = Yes
   host msdfs = Yes
  
   # NETWORK STUFF
   interfaces = 192.168.10.1/24, 192.168.11.1/24
   hosts allow = 192.168.
   bind interfaces only = yes
   nt acl support = yes
   client schannel = auto
   server schannel = yes
   client signing = auto
   server signing = no
  
   # FEATURE STUFF
   domain logons = yes
   os level = 33
   domain master = yes
   preferred master = yes
   local master = yes
   time server = yes
  
   # LOGON STUFF
   logon script = logon.bat
   logon drive =
   logon home =
   logon path =
   template homedir =
  
   [netlogon]
  comment = Network Logon Service
  path = /data/netlogon
  public = No
  guest ok = No
  share modes = No
  
   # SHARES 
  
  
  
  
  
  
  
  
  
  
  
   BDC
   --
   # Global parameters
   [global]
   netbios name = Assassin
   workgroup = SNEAKER
   server string = FileServer %v
   realm = assassin.radiogong.intern
   admin users = root, administrator, sascha
   security = user
   dns proxy = yes
   #   wins proxy = Yes
   #   wins support = Yes
   ldap ssl = no
   socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192
   SO_RCVBUF=8192
   keepalive = 255
   locking = 1
   kernel oplocks = yes
   blocking locks = yes
   oplocks = yes
   level2 oplocks = yes
   large readwrite = yes
   map to guest = Bad User
   dos charset = ISO8859-15
   unix charset = ISO8859-15
   display charset = ISO8859-15
   printing = cups
   printcap name = cups
   utmp = Yes
   host msdfs = Yes
  
   # NETWORK STUFF
   interfaces = 192.168.10.2/24
   hosts allow = 192.168.
   bind interfaces only = yes
   nt acl support = yes
   client schannel = auto
   server schannel = no
   client signing = auto
   server signing = no
  
   # FEATURE STUFF
   domain logons = yes
   os level = 32
   domain master = no
   preferred master = yes
   local master = yes
   time server = yes
  
   # LOGON STUFF
   #   logon script = logon.bat
   logon drive =
   logon home =
   logon path =
   template homedir =
  
   # SHARES 
  
  
  
  
  
  
  
  
  
  
   BACKUP
   --
   # Global parameters
   [global]
   netbios name = Leo
   workgroup = SNEAKER
   server string = BackUpServer %v
   realm = leo.radiogong.intern
   admin users = root, administrator, sascha
   security = share
   # Use password server option only with security = server
   #   password server = hunter.radiogong.intern
   dns proxy = yes
   #   wins proxy = Yes
   #   wins support = Yes
   ldap ssl = no
   socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192
   SO_RCVBUF=8192
   keepalive = 255
   locking = 1
   kernel oplocks = yes

Re: [Samba] netlogon problems

2004-03-23 Thread RRuegner
Radio Gong 2000 GmbH  Co. KG [Technik] schrieb:

Unfortunatly that's no solution...

Need more help, please...

Thanks in advance

Sascha

Am Dienstag, 23. März 2004 09:59 schrieb RRuegner:

Radio Gong 2000 GmbH  Co. KG [Technik] schrieb:

Hi @ all,

I have two samba-servers running perfectly!

Now I configured a third machine which provides some backups. Since I
brought it up in the network the windows client won't execute the
netlogon-scripts... When I turn off samba-services on the backup-machine
it works again.
Did I miss something??? Maybe you can open my eyes...

Best regards

Sascha

Here my conf-files:

PDC
--
# Global parameters
[global]
   netbios name = Hunter
   workgroup = SNEAKER
   server string = SoundServer %v
   realm = hunter.radiogong.intern
   admin users = root, administrator, sascha
   security = user
   dns proxy = yes
   wins proxy = Yes
   wins support = Yes
   ldap ssl = no
   socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192
SO_RCVBUF=8192
   keepalive = 255
   locking = 1
   kernel oplocks = yes
   blocking locks = yes
   oplocks = yes
   level2 oplocks = yes
   large readwrite = yes
   map to guest = Bad User
   dos charset = ISO8859-15
   unix charset = ISO8859-15
   display charset = ISO8859-15
   printing = cups
   printcap name = cups
   utmp = Yes
   host msdfs = Yes
# NETWORK STUFF
   interfaces = 192.168.10.1/24, 192.168.11.1/24
   hosts allow = 192.168.
   bind interfaces only = yes
   nt acl support = yes
   client schannel = auto
   server schannel = yes
   client signing = auto
   server signing = no
# FEATURE STUFF
   domain logons = yes
   os level = 33
   domain master = yes
   preferred master = yes
   local master = yes
   time server = yes
# LOGON STUFF
   logon script = logon.bat
   logon drive =
   logon home =
   logon path =
   template homedir =
[netlogon]
  comment = Network Logon Service
  path = /data/netlogon
  public = No
  guest ok = No
  share modes = No
# SHARES 











BDC
--
# Global parameters
[global]
   netbios name = Assassin
   workgroup = SNEAKER
   server string = FileServer %v
   realm = assassin.radiogong.intern
   admin users = root, administrator, sascha
   security = user
   dns proxy = yes
#   wins proxy = Yes
#   wins support = Yes
   ldap ssl = no
   socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192
SO_RCVBUF=8192
   keepalive = 255
   locking = 1
   kernel oplocks = yes
   blocking locks = yes
   oplocks = yes
   level2 oplocks = yes
   large readwrite = yes
   map to guest = Bad User
   dos charset = ISO8859-15
   unix charset = ISO8859-15
   display charset = ISO8859-15
   printing = cups
   printcap name = cups
   utmp = Yes
   host msdfs = Yes
# NETWORK STUFF
   interfaces = 192.168.10.2/24
   hosts allow = 192.168.
   bind interfaces only = yes
   nt acl support = yes
   client schannel = auto
   server schannel = no
   client signing = auto
   server signing = no
# FEATURE STUFF
   domain logons = yes
   os level = 32
   domain master = no
   preferred master = yes
   local master = yes
   time server = yes
# LOGON STUFF
#   logon script = logon.bat
   logon drive =
   logon home =
   logon path =
   template homedir =
# SHARES 









BACKUP
--
# Global parameters
[global]
   netbios name = Leo
   workgroup = SNEAKER
   server string = BackUpServer %v
   realm = leo.radiogong.intern
   admin users = root, administrator, sascha
   security = share
# Use password server option only with security = server
#   password server = hunter.radiogong.intern
   dns proxy = yes
#   wins proxy = Yes
#   wins support = Yes
   ldap ssl = no
   socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192
SO_RCVBUF=8192
   keepalive = 255
   locking = 1
   kernel oplocks = yes
   blocking locks = yes
   oplocks = yes
   level2 oplocks = yes
   large readwrite = yes
   map to guest = Bad User
   dos charset = ISO8859-15
   unix charset = ISO8859-15
   display charset = ISO8859-15
   printing = cups
   printcap name = cups
   utmp = Yes
   host msdfs = Yes
# NETWORK STUFF
   interfaces = 192.168.10.3/24
   hosts allow = 192.168.
   bind interfaces only = yes
   nt acl support = yes
#   client schannel = auto
   server schannel = no
#   client signing = auto
#

Re: [Samba] netlogon problems

2004-03-23 Thread Radio Gong 2000 GmbH Co. KG [Technik]
When doing the suggested (import lmhosts), it's always:

  NetBIOS-Remotecache-Namentabelle

Name  TypHostadresse Dauer [Sek.]
-
SNEAKER1C  GROUP   192.168.10.1-1
HUNTER 03  UNIQUE  192.168.10.1-1
HUNTER 00  UNIQUE  192.168.10.1-1
HUNTER 20  UNIQUE  192.168.10.1-1

Also after doing nbtstat -R. But now test-machine is not anymore usable for 
this... ;-(

And what do I do know? Why are they confused this little princesses?

Greetings

Sascha

Am Dienstag, 23. März 2004 16:05 schrieben Sie:
 Your windows boxes may be confused. As a test u may want to add an LMHOST
 entry for pdc.

 Ipofservergoeshere #PRE #DOM:Yourdomainname

 Ex..172.14.23.2#PRE  #DOM:Somedomain

 That is a sample of how

 -Rudy

When I do an nbtstat -c directly after logon i see:

  NetBIOS-Remotecache-Namentabelle

Name  TypHostadresse Dauer [Sek.]
-
SNEAKER1C  GROUP   192.168.10.3565


Doing the same after turning off the smb-services on leo:

  NetBIOS-Remotecache-Namentabelle

Name  TypHostadresse Dauer [Sek.]
-
ASSASSIN   00  UNIQUE  192.168.10.25
SNEAKER1C  GROUP   192.168.10.3472
HUNTER 00  UNIQUE  192.168.10.15

I copy via scp the following files:

/etc/passwd 
/etc/shadow
/etc/group
/etc/gshadow
/etc/samba/smbpasswd

Maybe is this the problem???

Greetings 

Sascha

 -Original Message-
 From: Radio Gong 2000 GmbH  Co. KG [Technik]
 [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, March 23, 2004 9:50 AM
 To: Fiordilino, Rudy
 Subject: Re: [Samba] netlogon problems


 nbtstat -R says:

 NBT-remotecache-nametable succesfully loaded

 nbtstat -c says:

 no name in cache

 Greetings

 Sascha

 Am Dienstag, 23. März 2004 15:42 schrieben Sie:
  Sascha,
 
  Can you try an nbtstat -R then do an nbtstat -c on the windows box and
  paste the output to me?
 
  -Rudy
 
  -Original Message-
  From: Radio Gong 2000 GmbH  Co. KG [Technik]
  [mailto:[EMAIL PROTECTED]
  Sent: Tuesday, March 23, 2004 9:31 AM
  To: [EMAIL PROTECTED]
  Subject: Re: [Samba] netlogon problems
 
 
  Now I switched to:
 
  domain logons = yes
  os level = 32
  domain master = no
  preferred master = no
  local master = no
 
 
  on both BDCs and it's still the same, when I start smb-services on leo
  the clients handle logon-requests with him... WHY? He's totally
  cutted...
 
  Greetings
 
  Sascha
 
 
  Am Dienstag, 23. März 2004 14:54 schrieb Radio Gong 2000 GmbH  Co. KG
 
  [Technik]:
   This is how it looks like on a windows box:
  
   nbtstat -a hunter
  
   LAN-Verbindung:
   Knoten-IP-Adresse: [192.168.10.53] Bereichskennung: []
  
 NetBIOS-Namentabelle des Remotecomputers
  
  Name   Typ  Status
   -
   HUNTER 00  UNIQUE  Registriert
   HUNTER 03  UNIQUE  Registriert
   HUNTER 20  UNIQUE  Registriert
   HUNTER 00  UNIQUE  Registriert
   HUNTER 03  UNIQUE  Registriert
   HUNTER 20  UNIQUE  Registriert
   ..__MSBROWSE__.01  GROUP   Registriert
   SNEAKER00  GROUP   Registriert
   SNEAKER1B  UNIQUE  Registriert
   SNEAKER1C  GROUP   Registriert
   SNEAKER1D  UNIQUE  Registriert
   SNEAKER1E  GROUP   Registriert
   SNEAKER00  GROUP   Registriert
   SNEAKER1B  UNIQUE  Registriert
   SNEAKER1C  GROUP   Registriert
   SNEAKER1D  UNIQUE  Registriert
   SNEAKER1E  GROUP   Registriert
  
   MAC Adresse = 00-00-00-00-00-00
  
  
   nbtstat -a assassin
  
   LAN-Verbindung:
   Knoten-IP-Adresse: [192.168.10.53] Bereichskennung: []
  
 NetBIOS-Namentabelle des Remotecomputers
  
  Name   Typ  Status
   -
   ASSASSIN   00  UNIQUE  Registriert
   ASSASSIN   03  UNIQUE  Registriert
   ASSASSIN   20  UNIQUE  Registriert
   ASSASSIN   00  UNIQUE  Registriert
   ASSASSIN   03  UNIQUE  Registriert
   ASSASSIN   20  UNIQUE  Registriert
   SNEAKER00  GROUP   Registriert
   SNEAKER1C  GROUP   Registriert
   SNEAKER1E  GROUP   Registriert
   SNEAKER00  GROUP   Registriert
   SNEAKER1C  UNIQUE  Registriert

Re: [Samba] netlogon problems

2004-03-23 Thread Radio Gong 2000 GmbH Co. KG [Technik]
Is there another possibility than importing lmhosts on every client???

Am Dienstag, 23. März 2004 16:43 schrieb Radio Gong 2000 GmbH  Co. KG 
[Technik]:
 When doing the suggested (import lmhosts), it's always:

   NetBIOS-Remotecache-Namentabelle

 Name  TypHostadresse Dauer [Sek.]
 -
 SNEAKER1C  GROUP   192.168.10.1-1
 HUNTER 03  UNIQUE  192.168.10.1-1
 HUNTER 00  UNIQUE  192.168.10.1-1
 HUNTER 20  UNIQUE  192.168.10.1-1

 Also after doing nbtstat -R. But now test-machine is not anymore usable for
 this... ;-(

 And what do I do know? Why are they confused this little princesses?

 Greetings

 Sascha

 Am Dienstag, 23. März 2004 16:05 schrieben Sie:
  Your windows boxes may be confused. As a test u may want to add an LMHOST
  entry for pdc.
 
  Ipofservergoeshere #PRE #DOM:Yourdomainname
 
  Ex..172.14.23.2#PRE  #DOM:Somedomain
 
  That is a sample of how
 
  -Rudy

 When I do an nbtstat -c directly after logon i see:

   NetBIOS-Remotecache-Namentabelle

 Name  TypHostadresse Dauer [Sek.]
 -
 SNEAKER1C  GROUP   192.168.10.3565


 Doing the same after turning off the smb-services on leo:

   NetBIOS-Remotecache-Namentabelle

 Name  TypHostadresse Dauer [Sek.]
 -
 ASSASSIN   00  UNIQUE  192.168.10.25
 SNEAKER1C  GROUP   192.168.10.3472
 HUNTER 00  UNIQUE  192.168.10.15

 I copy via scp the following files:

 /etc/passwd
 /etc/shadow
 /etc/group
 /etc/gshadow
 /etc/samba/smbpasswd

 Maybe is this the problem???

 Greetings

 Sascha

  -Original Message-
  From: Radio Gong 2000 GmbH  Co. KG [Technik]
  [mailto:[EMAIL PROTECTED]
  Sent: Tuesday, March 23, 2004 9:50 AM
  To: Fiordilino, Rudy
  Subject: Re: [Samba] netlogon problems
 
 
  nbtstat -R says:
 
  NBT-remotecache-nametable succesfully loaded
 
  nbtstat -c says:
 
  no name in cache
 
  Greetings
 
  Sascha
 
  Am Dienstag, 23. März 2004 15:42 schrieben Sie:
   Sascha,
  
   Can you try an nbtstat -R then do an nbtstat -c on the windows box and
   paste the output to me?
  
   -Rudy
  
   -Original Message-
   From: Radio Gong 2000 GmbH  Co. KG [Technik]
   [mailto:[EMAIL PROTECTED]
   Sent: Tuesday, March 23, 2004 9:31 AM
   To: [EMAIL PROTECTED]
   Subject: Re: [Samba] netlogon problems
  
  
   Now I switched to:
  
   domain logons = yes
   os level = 32
   domain master = no
   preferred master = no
   local master = no
  
  
   on both BDCs and it's still the same, when I start smb-services on leo
   the clients handle logon-requests with him... WHY? He's totally
   cutted...
  
   Greetings
  
   Sascha
  
  
   Am Dienstag, 23. März 2004 14:54 schrieb Radio Gong 2000 GmbH  Co. KG
  
   [Technik]:
This is how it looks like on a windows box:
   
nbtstat -a hunter
   
LAN-Verbindung:
Knoten-IP-Adresse: [192.168.10.53] Bereichskennung: []
   
  NetBIOS-Namentabelle des Remotecomputers
   
   Name   Typ  Status
-
HUNTER 00  UNIQUE  Registriert
HUNTER 03  UNIQUE  Registriert
HUNTER 20  UNIQUE  Registriert
HUNTER 00  UNIQUE  Registriert
HUNTER 03  UNIQUE  Registriert
HUNTER 20  UNIQUE  Registriert
..__MSBROWSE__.01  GROUP   Registriert
SNEAKER00  GROUP   Registriert
SNEAKER1B  UNIQUE  Registriert
SNEAKER1C  GROUP   Registriert
SNEAKER1D  UNIQUE  Registriert
SNEAKER1E  GROUP   Registriert
SNEAKER00  GROUP   Registriert
SNEAKER1B  UNIQUE  Registriert
SNEAKER1C  GROUP   Registriert
SNEAKER1D  UNIQUE  Registriert
SNEAKER1E  GROUP   Registriert
   
MAC Adresse = 00-00-00-00-00-00
   
   
nbtstat -a assassin
   
LAN-Verbindung:
Knoten-IP-Adresse: [192.168.10.53] Bereichskennung: []
   
  NetBIOS-Namentabelle des Remotecomputers
   
   Name   Typ  Status
-
ASSASSIN   00  UNIQUE  Registriert
ASSASSIN   03  UNIQUE  Registriert
ASSASSIN   20  UNIQUE  Registriert
ASSASSIN   00  UNIQUE  Registriert
ASSASSIN   03  UNIQUE  Registriert