hallo,
zwei fragen:
wie kann ich einem workstaion unter nt beibringen, dass er das passwort, was man bei der nt anmeldung eingbt auch zur anmeldung an dem server (linux) nutzensoll?
kann man aus dem rechner die script-datei (netzlaufwerke verbinden usw.)auf dem samba-server ausführen lassen?wie?
danke.
hallo,
zwei fragen:
wie kann ich einem workstaion unter nt beibringen, dass er das
passwort, was man bei der nt anmeldung eingbt auch zur
anmeldung an dem server (linux) nutzensoll?
Samba konfigurieren!
password server = …
By specifying the name of another SMB server (such as a WinNT box) with this option, and using „security = domain“ or „security = server“ you can get Samba to do all its username/password validation via a remote server.
Siehe Samba Doku, hier ein Hint (/etc/smb.conf, Global Sektion):
Use password server option only with security = server
; password server =
kann man aus dem rechner die script-datei (netzlaufwerke
verbinden usw.)auf dem samba-server ausführen lassen?wie?
domain logons = …
If set to true, the Samba server will serve Windows 95/98 Domain logons for the workgroup it is in. For more details on setting up this feature see the file DOMAINS.txt in the Samba documentation directory docs/ shipped with the source code.
ebenfalls Samba Doku, trotzdem noch ein Hint (/etc/smb.conf, Global Sektion):
Enable this if you want Samba to be a domain logon server for
Windows95 workstations.
; domain logons = yes
Beachte aber: Samba fungiert hier NICHT als PDC!! (ist aber in Arbeit)
Logon Scripte:
if you enable domain logons then you may want a per-machine or
per user logon script
run a specific logon batch file per workstation (machine)
; logon script = %m.bat
run a specific logon batch file per username
; logon script = %U.bat
Einen entsprechenden Share zu den Scripten musst Du den Win Clients zugänglich machen, z.B. so:
[netlogon]
read only to users!!
comment = Network Logon Service
path = /netlogon
writable = no
danke.
Bitte.
Desweiteren solltest Du die Hinweise zur Passwortveschlüsselung lesen und befolgen: ENCRYPTION.txt der Samba Doku.
encrypt passwords = yes|no
Nun habe ich aber auch mal eine Frage: Wer ist denn nun der „Chef“ in Deinem Netz?
Gruss Axel