Domäne wird nicht gefunden..Warum???

Probleme mit Samba, NFS, FTP und Co.
Antworten
Benutzeravatar
MarcMarin
Beiträge: 272
Registriert: 13.04.2004 08:53:14
Wohnort: Köln

Domäne wird nicht gefunden..Warum???

Beitrag von MarcMarin » 23.04.2005 11:36:47

Hi Leute,
habe Samba installiert und möchte eine Domäne erstellen habe ich eignetlich auch gemacht hier meine smb.conf

Code: Alles auswählen

#======================= Global Settings =======================

[global]
        log file = /var/log/samba/log.%m
        passwd chat = *Enter\snew\sUNIX\spassword:* %n\n *Retype\snew\sUNIX\spassword:* %n\n
        socket options = TCP_NODELAY
        obey pam restrictions = yes
        include = /etc/samba/dhcp.conf
        encrypt passwords = yes
        passwd program = /usr/bin/passwd %u
        passdb backend = tdbsam guest
        wins support = true
        dns proxy = no
        netbios name = dragon3
        server string = %h server (Samba %v)
        invalid users = root
        workgroup = TUX-NET
        os level = 20
        syslog = 0
        panic action = /usr/share/samba/panic-action %d
        max log size = 1000

[homes]
   comment = Home Directories
   browseable = no

# By default, the home directories are exported read-only. Change next
# parameter to 'yes' if you want to be able to write to them.
   writable = no

# File creation mask is set to 0700 for security reasons. If you want to
# create files with group=rw permissions, set next parameter to 0775.
   create mask = 0700

# Directory creation mask is set to 0700 for security reasons. If you want to
# create dirs. with group=rw permissions, set next parameter to 0775.
   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
;   writable = no
;   share modes = 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
Doch wenn ich jetzt auf Windows2000 die domäne eingebe und auf ok klicke sagt er mir domäne nicht gefunden und irgendsonen microsoft dns misst.

Könnt ihr helfen???
MFG
Marco

Benutzeravatar
MarcMarin
Beiträge: 272
Registriert: 13.04.2004 08:53:14
Wohnort: Köln

ahaaaaaaaaaa

Beitrag von MarcMarin » 23.04.2005 12:26:22

ok komme jetzt schonmal bis zum anmeldebildschirm wo er sagt benutzername: kennwort; habe mich probiert als root einzuloggen aber er sagt falsches passwort!!!


????
MFG
Marco

Benutzeravatar
Bert
Beiträge: 3751
Registriert: 16.07.2002 14:06:52
Wohnort: Dresden
Kontaktdaten:

Beitrag von Bert » 23.04.2005 21:32:43

Von Netz verschoben und code tags eingebaut.

Bert
Programmer: A biological machine designed to convert caffeine into code.
xmpp:bert@debianforum.de

Vatter2005
Beiträge: 2
Registriert: 09.05.2005 13:58:17

Beitrag von Vatter2005 » 09.05.2005 14:17:19

Da fehlen glaub ich noch ein paar Einstellungen, damit er als DC fungieren kann.

In der Abteilung [global]

Code: Alles auswählen

add user script = /usr/sbin/useradd -d /dev/null -g 100 -s /bin/false -M %u
#Damit die Machinenaccounts beim Beitritt zur Domäne angelegt werden
domain logons = Yes
#selbsterklärend
os level = 99
#keine Lust zum nachschauen
domain master = Yes
#Wichtig, sonst isser kein DC
preferred master = Yes
#Thema WINS
security=Domain
#Sicherheitslevel
Ebenso solltest du das invalid users = root rausnehmen, wenn du dich als root anmelden willst.

Und wie es die smb.conf schon sagt

Code: Alles auswählen

# 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
;   writable = no
;   share modes = no 
musst du einen netlogon-Share einrichten, wo die Startscripte reinkommen.

Und zum Schluß noch die die Samba-User anlegen, sonst gibt das mit dem Login
keinen.

Falls ich was vergessen habe, bitte korrigieren.


Gruß
Vatter2005

Antworten