Имя пользователя:
Пароль:
 

Название темы: изменить имя машины
Показать сообщение отдельно

Аватара для bool

Старожил


Сообщения: 229
Благодарности: 9

Профиль | Отправить PM | Цитировать


продолжение:
Код: Выделить весь код
        # 5. Browser Control and Networking Options:
     
        # Most people will find that this option gives better performance.
     
        # See speed.txt and the manual pages for details
     
           socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
     
         
     
        # Configure Samba to use multiple interfaces
     
        # If you have multiple network interfaces then you must list them
     
        # here. See the man page for details.
     
        ;   interfaces = 192.168.12.2/24 192.168.13.2/24 
     
         
     
        # Configure remote browse list synchronisation here
     
        #  request announcement to, or browse list sync from:
     
        #	   a specific host or from / to a whole subnet (see below)
     
        ;   remote browse sync = 192.168.3.25 192.168.5.255
     
        # Cause this host to announce itself to local subnets here
     
        ;   remote announce = 192.168.1.255 192.168.2.44
     
         
     
        # set local master to no if you don't want Samba to become a master
     
        # browser on your network. Otherwise the normal election rules apply
     
        ;   local master = no
     
         
     
        # OS Level determines the precedence of this server in master browser
     
        # elections. The default value should be reasonable
     
        ;   os level = 33
     
         
     
        # Domain Master specifies Samba to be the Domain Master Browser. This
     
        # allows Samba to collate browse lists between subnets. Don't use this
     
        # if you already have a Windows NT domain controller doing this job
     
        ;   domain master = yes 
     
         
     
        # Preferred Master causes Samba to force a local browser election on startup
     
        # and gives it a slightly higher chance of winning the election
     
        ;   preferred master = yes
     
         
     
        # 6. Domain Control Options:
     
        # Enable this if you want Samba to be a domain logon server for 
     
        # Windows95 workstations or Primary Domain Controller for WinNT and Win2k
     
        ;   domain logons = yes
     
         
     
        # 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
     
         
     
        # Where to store roaming profiles for WinNT and Win2k
     
        #		%L substitutes for this servers netbios name, %U is username
     
        #		You must uncomment the [Profiles] share below
     
        ;   logon path = \\%L\Profiles\%U
     
         
     
        # Where to store roaming profiles for Win9x. Be careful with this as it also
     
        # impacts where Win2k finds it's /HOME share
     
        ; logon home = \\%L\%U\.profile
     
         
     
         
     
        # The add user script is used by a domain member to add local user accounts
     
        # that have been authenticated by the domain controller, or when adding
     
        # users via the Windows NT Tools (ie User Manager for Domains).
     
         
     
        # Scripts for file (passwd, smbpasswd) backend:
     
        ; add user script = /usr/sbin/useradd -s /bin/false '%u'
     
        ; delete user script = /usr/sbin/userdel '%s'
     
        ; add user to group script = /usr/bin/gpasswd -a '%u' '%g'
     
        ; delete user from group script = /usr/bin/gpasswd -d '%u' '%g'
     
        ; set primary group script = /usr/sbin/usermod -g '%g' '%u'
     
        ; add group script = /usr/sbin/groupadd %g && getent group '%g'|awk -F: '{print $3}'
     
        ; delete group script = /usr/sbin/groupdel '%g'
     
         
     
        # Scripts for LDAP backend (assumes nss_ldap is in use on the domain controller,
     
        # and needs configuration in smbldap_conf.pm
     
        ; add user script = /usr/share/samba/scripts/smbldap-useradd.pl '%u'
     
        ; delete user script = /usr/share/samba/scripts/smbldap-userdel.pl '%u'
     
        ; add user to group script = /usr/share/samba/scripts/smbldap-groupmod.pl -m '%u' '%g'
     
        ; delete user from group script = /usr/share/samba/scripts/smbldap-groupmod.pl -x '%u' '%g'
     
        ; set primary group script = /usr/share/samba/scripts/smbldap-usermod.pl -g '%g' '%u'
     
 ; add group script = /usr/share/samba/scripts/smbldap-groupadd.pl '%g' && /usr/share/samba/scripts/smbldap-groupshow.pl %g|awk '/^gidNumber:/ {print $2}'
     
        ; delete group script = /usr/share/samba/scripts/smbldap-userdel.pl '%g'
     
         
     
         
     
        # The add machine script is use by a samba server configured as a domain
     
        # controller to add local machine accounts when adding machines to the domain.
     
        # The script must work from the command line when replacing the macros,
     
        # or the operation will fail. Check that groups exist if forcing a group.
     
        # Script for domain controller for adding machines:
     
        ; add machine script = /usr/sbin/useradd -d /dev/null -g machines -c 'Machine Account' -s /bin/false -M %u
     
        # Script for domain controller with LDAP backend for adding machines (please
     
        # configure in /etc/samba/smbldap_conf.pm first):
     
 ; add machine script = /usr/share/samba/scripts/smbldap-useradd.pl -w -d /dev/null -g machines -c 'Machine Account' -s /bin/false %u
     
     
        # Domain groups:
     
        # Domain groups are now configured by using the 'net groupmap' tool
     
         
     
        # Samba Password Database configuration:
     
        # Samba now has runtime-configurable password database backends. Multiple
     
        # passdb backends may be used, but users will only be added to the first one
     
        # Default:
     
        ; passdb backend = smbpasswd guest
     
        # TDB backen with fallback to smbpasswd and guest
     
        ; passdb backend = tdbsam smbpasswd guest
     
        # LDAP with fallback to smbpasswd guest
     
        # Enable SSL by using an ldaps url, or enable tls with 'ldap ssl' below.
     
        ; passdb backend = ldapsam:ldaps://ldap.mydomain.com smbpasswd guest
     
        # Use the samba2 LDAP schema:
     
        ; passdb backend = ldapsam_compat:ldaps://ldap.mydomain.com smbpasswd guest
     
         
     
        # Idmap settings:
     
        # Idmap backend to use:
     
        ; idmap backend = ldap:ldap://ldap.mydomain.com
     
         
     
        # This is a range of unix user-id's that samba will map non-unix RIDs to,
     
        # such as when using Winbind
     
        ; idmap uid = 10000-20000
     
        ; idmap gid = 10000-20000
     
          
     
        # LDAP configuration for Domain Controlling:
     
        # The account (dn) that samba uses to access the LDAP server
     
        # This account needs to have write access to the LDAP tree
     
        # You will need to give samba the password for this dn, by 
     
        # running 'smbpasswd -w mypassword'
     
        ; ldap admin dn = cn=root,dc=mydomain,dc=com
     
        ; ldap ssl = start_tls
     
        # start_tls should run on 389, but samba defaults incorrectly to 636
     
        ; ldap port = 389
     
        ; ldap suffix = dc=mydomain,dc=com
     
        # Seperate suffixes are available for machines, users, groups, and idmap, if 
     
        # ldap suffix appears first, it is appended to the specific suffix.
     
        # Example for a unix-ish directory layout:
     
        ; ldap machine suffix = ou=Hosts
     
        ; ldap user suffix = ou=People
     
        ; ldap group suffix = ou=Group
     
        ; ldap idmap suffix = ou=Idmap
     
        # Example for AD-ish layout:
     
        ; ldap machine suffix = cn=Computers
     
        ; ldap user suffix = cn=Users
     
        ; ldap group suffix = cn=Groups
     
        ; ldap idmap suffix = cn=Idmap
     
         
     
         
     
        # 7. Name Resolution Options:
     
        # All NetBIOS names must be resolved to IP Addresses
     
        # 'Name Resolve Order' allows the named resolution mechanism to be specified
     
        # the default order is "host lmhosts wins bcast". "host" means use the unix
     
        # system gethostbyname() function call that will use either /etc/hosts OR
     
        # DNS or NIS depending on the settings of /etc/host.config, /etc/nsswitch.conf
     
        # and the /etc/resolv.conf file. "host" therefore is system configuration
     
        # dependant. This parameter is most often of use to prevent DNS lookups
     
        # in order to resolve NetBIOS names to IP Addresses. Use with care!
     
        # The example below excludes use of name resolution for machines that are NOT
     
        # on the local network segment
     
        # - OR - are not deliberately to be known via lmhosts or via WINS.
     
        ; name resolve order = wins lmhosts bcast
     
         
     
        # Windows Internet Name Serving Support Section:
     
        # WINS Support - Tells the NMBD component of Samba to enable it's 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

Отправлено: 09:45, 25-03-2005 | #4

Название темы: изменить имя машины