Forum |  HardWare.fr | News | Articles | PC | S'identifier | S'inscrire | Shop Recherche
2264 connectés 

  FORUM HardWare.fr
  Linux et OS Alternatifs
  réseaux et sécurité

  Probleme de domaine avec wndows xp pro et samba

 


 Mot :   Pseudo :  
 
Bas de page
Auteur Sujet :

Probleme de domaine avec wndows xp pro et samba

n°709382
rezolinux
Posté le 21-07-2005 à 01:41:59  profilanswer
 

Bonjour à tous,
 
Je viens de configurer mon serveur Samba en Pdc. Une fois fini, je suis allé sur mon Windows Xp pour mettre le domaine de Samba. Jusqu'à là ça fonctionne bien. Donc Windows redémarre pour créer le nouveau domaine dans la liste. Je met le nom se l'utilisateur et mot de passe Samba, et là il met que le systeme n'a pas pu ouvrir de session car le domaine rezolinux n'est pas disponible.
Je ne sais pas comment faire, pouvez vous m'aider ?
 
En plus j'ai bien rentrer le nom de la machine xp dans Samba et le nom de l'ulisateur.
 
Merci d'avance pour votre aide.
 

mood
Publicité
Posté le 21-07-2005 à 01:41:59  profilanswer
 

n°710444
KievZ
Posté le 23-07-2005 à 21:08:48  profilanswer
 

Salut, hum
 
Fauderai voire un morceau de conf?
 
perso je suis pas calé sur Samba mais :s on peux toujours voire...

n°711208
rezolinux
Posté le 25-07-2005 à 22:44:57  profilanswer
 

Je vous joins le smb.conf
 
 
#======================= Global Settings =======================
 
[global]
 
## Browsing/Identification ###
 
# Change this to the workgroup/NT-domain name your Samba server will part of
   workgroup = REZOLINUX
 
# server string is the equivalent of the NT Description field
   server string = %h server (Samba %v)
 
# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable its WINS Server
   wins support = yes
   
# WINS Server - Tells the NMBD components of Samba to be a WINS Client
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
;   wins server = w.x.y.z
 
# If we receive WINS server info from DHCP, override the options above.  
   include = /etc/samba/dhcp.conf
 
# This will prevent nmbd to search for NetBIOS names through DNS.
   dns proxy = no
 
# What naming service and in what order should we use to resolve host names
# to IP addresses
;   name resolve order = lmhosts host wins bcast
 
 
#### Debugging/Accounting ####
 
# This tells Samba to use a separate log file for each machine
# that connects
   log file = /var/log/samba/log.%m
 
# Put a capping on the size of the log files (in Kb).
   max log size = 1000
 
# If you want Samba to only log through syslog then set the following
# parameter to 'yes'.
;   syslog only = no
 
# We want Samba to log a minimum amount of information to syslog. Everything
# should go to /var/log/samba/log.{smbd,nmbd} instead. If you want to log
# through syslog you should set the following parameter to something higher.
   syslog = 0
 
# Do something sensible when Samba crashes: mail the admin a backtrace
   panic action = /usr/share/samba/panic-action %d
 
 
############################# Authentication ###################################
 
security = user    
# Chemein du profil NT
logon path = \\%L\Profiles\%u
encrypt passwords = true
passdb backend = tdbsam guest
obey pam restrictions = yes
guest account = nobody
invalid users = root
; unix password sync = no
passwd program = /usr/bin/passwd %u
passwd chat = *Enter\snew\sUNIX\spassword:* %n\n *Retype\snew\sUNIX\spassword:* %n\n .
; pam password change = no
############################## Printing ####################
 
; load printers = yes
; printing = bsd
; printcap name = /etc/printcap
 
; printing = cups
; printcap name = cups
 
; printer admin = @ntadmin
 
######## File sharing ########
 
# Name mangling options
; preserve case = yes
; short preserve case = yes
 
############ Misc ############
 
# Using the following line enables you to customise your configuration
# on a per machine basis. The %m gets replaced with the netbios name
# of the machine that is connecting
include = /home/samba/etc/smb.conf.%m
 
#         SO_RCVBUF=8192 SO_SNDBUF=8192
socket options = TCP_NODELAY
 
; message command = /bin/sh -c '/usr/bin/linpopup "%f" "%m" %s; rm %s' &
 
domain logons = yes
domain master = yes
preferred master = yes
os level = 64
 
# Some defaults for winbind (make sure you're not using the ranges
# for something else.)
; idmap uid = 10000-20000
; idmap gid = 10000-20000
; template shell = /bin/bash
 
#======================= Share Definitions =======================
 
[homes]
comment = Home Directories
browseable = no
writable = no
create mask = 0700
directory mask = 0700
 
# Un-comment the following and create the netlogon directory for Domain Logons
# (you need to configure Samba to act as a domain controller too.)
[netlogon]
   comment = Network Logon Service
   path = /home/samba/netlogon
   guest ok = yes
   read only = yes
   writable = no
   share modes = no
   write list = @admins
 
[Profiles]
   comment = Network Logon Service
   path = /var/lib/samba/profiles
   guest ok = yes
   read only = no
   browseable = no
 
[printers]
   comment = All Printers
   browseable = no
   path = /tmp
   printable = yes
   public = no
   writable = no
   create mode = 0700
 
# Windows clients look for this share name as a source of downloadable
# printer drivers
[print$]
   comment = Printer Drivers
   path = /var/lib/samba/printers
   browseable = yes
   read only = yes
   guest ok = no
# Uncomment to allow remote administration of Windows print drivers.
# Replace 'ntadmin' with the name of the group your admin users are
# members of.
;   write list = root, @ntadmin
 
# A sample share for sharing your CD-ROM with others.
;[cdrom]
;   comment = Samba server's CD-ROM
;   writable = no
;   locking = no
;   path = /cdrom
;   public = yes
 
# The next two parameters show how to auto-mount a CD-ROM when the
# cdrom share is accesed. For this to work /etc/fstab must contain
# an entry like this:
#
#       /dev/scd0   /cdrom  iso9660 defaults,noauto,ro,user   0 0
#
# The CD-ROM gets unmounted automatically after the connection to the
#
# If you don't want to use auto-mounting/unmounting make sure the CD
# is mounted on /cdrom
#
;   preexec = /bin/mount /cdrom
;   postexec = /bin/umount /cdrom
 
 
Merci d'avance

n°711236
Phoenix
Posté le 25-07-2005 à 23:10:52  profilanswer
 

cette ligne :  
 
  log file = /var/log/samba/log.%m  
 
dans ton smb.conf peux te permettre de diagnostiquer un peu plus !
Regarde dans les logs dédié à ta machine.
 
au pire tu ajoute un petit
  log level = 3
 
et tu postes un tail -20 du fichier ;)

n°711393
thurfin
la clarté dans la confusion
Posté le 26-07-2005 à 10:42:37  profilanswer
 

je crois que pour xp il est nécessaire de triturer la base de registre. L'as tu fait?


---------------
De Marx j'ai avant tout retenu la notion de capital
n°711394
rezolinux
Posté le 26-07-2005 à 10:45:16  profilanswer
 

oui je l'ai fait
que faire bizard non ?

n°711398
thurfin
la clarté dans la confusion
Posté le 26-07-2005 à 10:49:11  profilanswer
 

ta machine cliente a bien été inscrite normalement au domaine?
[edit] truc con, smb et nmb sont bien démarrés?


Message édité par thurfin le 26-07-2005 à 10:50:09

---------------
De Marx j'ai avant tout retenu la notion de capital
n°711505
rezolinux
Posté le 26-07-2005 à 14:29:44  profilanswer
 

oui j'ai bien ajouter mes machines cliente$.
 
Je ne sais pas quoi faire ?
 
Merci

n°711522
thurfin
la clarté dans la confusion
Posté le 26-07-2005 à 15:12:18  profilanswer
 

samba est bien démmaré?


---------------
De Marx j'ai avant tout retenu la notion de capital
n°711526
rezolinux
Posté le 26-07-2005 à 15:23:01  profilanswer
 

oui tres bien demarrer

mood
Publicité
Posté le 26-07-2005 à 15:23:01  profilanswer
 

n°711530
thurfin
la clarté dans la confusion
Posté le 26-07-2005 à 15:31:26  profilanswer
 

est ce que tes deux machines arrivent à communiquer ?


---------------
De Marx j'ai avant tout retenu la notion de capital
n°711565
Phoenix
Posté le 26-07-2005 à 17:35:48  profilanswer
 

thurfin a écrit :

je crois que pour xp il est nécessaire de triturer la base de registre. L'as tu fait?


 
poster le log de ton PC par exemple !

n°711605
rezolinux
Posté le 26-07-2005 à 18:41:16  profilanswer
 

oui je l'ai fait mais ça ne donne rien
Comment faire ?

n°711903
thurfin
la clarté dans la confusion
Posté le 27-07-2005 à 10:25:57  profilanswer
 

essayes security = domain
[edit] en fait non ca changera rien je pense


Message édité par thurfin le 27-07-2005 à 10:28:38

---------------
De Marx j'ai avant tout retenu la notion de capital
n°711904
thurfin
la clarté dans la confusion
Posté le 27-07-2005 à 10:29:55  profilanswer
 

déjà il y'a une erreur je pense là :
logon path = \\%L\Profiles\%u
 
faut mettre un %U et non %u


---------------
De Marx j'ai avant tout retenu la notion de capital
n°711917
rezolinux
Posté le 27-07-2005 à 10:48:27  profilanswer
 

ça fait pareil
 
merci
 
comment faire

n°711918
rezolinux
Posté le 27-07-2005 à 10:49:45  profilanswer
 

si je me met en administrateur je communique bien je met le login et pass mais si je me met sur le domaine il met que le systeme n'a pas pu ouvrir de session car le domaine rezolinux n'est pas disponible.

n°711919
rezolinux
Posté le 27-07-2005 à 10:50:18  profilanswer
 

je voulais dir en administrateur local


Aller à :
Ajouter une réponse
  FORUM HardWare.fr
  Linux et OS Alternatifs
  réseaux et sécurité

  Probleme de domaine avec wndows xp pro et samba

 

Sujets relatifs
problème arrêt outlook 2000Probleme reconnaissance lecteurs scsi
Installation win98 problème[suse 9.3] probleme souris usb logitech
Problème d'attaque et/ou de virus sur mon serveur (Debian 3.1)[cups] problème impression HP1315
probleme avec vncThundermail ou mozilla, probleme de piece jointe
config samba/windows xp[debian] Problème avec une partition au démarrage
Plus de sujets relatifs à : Probleme de domaine avec wndows xp pro et samba


Copyright © 1997-2022 Hardware.fr SARL (Signaler un contenu illicite / Données personnelles) / Groupe LDLC / Shop HFR