samba:samba_configuration_detailed
Differences
This shows you the differences between two versions of the page.
samba:samba_configuration_detailed [2016/11/10 15:18] – created peter | samba:samba_configuration_detailed [2019/12/04 19:11] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Samba - Samba Configuration Detailed ====== | ||
- | |||
- | <file bash smb.conf> | ||
- | # | ||
- | # SELINUX NOTES: | ||
- | # | ||
- | # If you want to use the useradd/ | ||
- | # setsebool -P samba_domain_controller on | ||
- | # | ||
- | # If you want to share home directories via samba please run: | ||
- | # setsebool -P samba_enable_home_dirs on | ||
- | # | ||
- | # If you create a new directory you want to share you should mark it as | ||
- | # " | ||
- | # Make sure not to do that on system directories as they may already have | ||
- | # been marked with othe SELinux labels. | ||
- | # | ||
- | # Use ls -ldZ /path to see which context a directory has | ||
- | # | ||
- | # Set labels only on directories you created! | ||
- | # To set a label use the following: chcon -t samba_share_t /path | ||
- | # | ||
- | # If you need to share a system created directory you can use one of the | ||
- | # following (read-only/ | ||
- | # setsebool -P samba_export_all_ro on | ||
- | # or | ||
- | # setsebool -P samba_export_all_rw on | ||
- | # | ||
- | # If you want to run scripts (preexec/ | ||
- | # put them into the / | ||
- | # allowed to run them. | ||
- | # Make sure you COPY them and not MOVE them so that the right SELinux context | ||
- | # is applied, to check all is ok use restorecon -R -v / | ||
- | # | ||
- | # | ||
- | # | ||
- | # | ||
- | |||
- | [global] | ||
- | |||
- | workgroup = WORKGROUP | ||
- | server string = Samba Server Version %v | ||
- | |||
- | netbios name = HP00 | ||
- | |||
- | ; | ||
- | ; hosts allow = 127. 192.168.12. 192.168.13. | ||
- | |||
- | # --------------------------- Logging Options ----------------------------- | ||
- | # | ||
- | # Log File let you specify where to put logs and how to split them up. | ||
- | # | ||
- | # Max Log Size let you specify the max size log files should reach | ||
- | |||
- | # logs split per machine | ||
- | log file = / | ||
- | # max 50KB per log file, then rotate | ||
- | max log size = 50 | ||
- | |||
- | # ----------------------- Standalone Server Options ------------------------ | ||
- | # | ||
- | # Security can be set to user, share(deprecated) or server(deprecated) | ||
- | # | ||
- | # Backend to store user information in. New installations should | ||
- | # use either tdbsam or ldapsam. smbpasswd is available for backwards | ||
- | # compatibility. tdbsam requires no further configuration. | ||
- | |||
- | security = user | ||
- | # passdb backend = ldapsam | ||
- | |||
- | |||
- | # ----------------------- Domain Members Options ------------------------ | ||
- | # | ||
- | # Security must be set to domain or ads | ||
- | # | ||
- | # Use the realm option only with security = ads | ||
- | # Specifies the Active Directory realm the host is part of | ||
- | # | ||
- | # Backend to store user information in. New installations should | ||
- | # use either tdbsam or ldapsam. smbpasswd is available for backwards | ||
- | # compatibility. tdbsam requires no further configuration. | ||
- | # | ||
- | # Use password server option only with security = server or if you can't | ||
- | # use the DNS to locate Domain Controllers | ||
- | # The argument list may include: | ||
- | # | ||
- | # or to auto-locate the domain controller/ | ||
- | # | ||
- | |||
- | |||
- | ; security = domain | ||
- | ; passdb backend = tdbsam | ||
- | ; realm = MY_REALM | ||
- | |||
- | ; password server = < | ||
- | |||
- | # ----------------------- Domain Controller Options ------------------------ | ||
- | # | ||
- | # Security must be set to user for domain controllers | ||
- | # | ||
- | # Backend to store user information in. New installations should | ||
- | # use either tdbsam or ldapsam. smbpasswd is available for backwards | ||
- | # compatibility. tdbsam requires no further configuration. | ||
- | # | ||
- | # 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 Logons let Samba be a domain logon server for Windows workstations. | ||
- | # | ||
- | # Logon Scrpit let yuou specify a script to be run at login time on the client | ||
- | # You need to provide it in a share called NETLOGON | ||
- | # | ||
- | # Logon Path let you specify where user profiles are stored (UNC path) | ||
- | # | ||
- | # Various scripts can be used on a domain controller or stand-alone | ||
- | # machine to add or delete corresponding unix accounts | ||
- | # | ||
- | ; security = user | ||
- | ; passdb backend = tdbsam | ||
- | |||
- | domain master = yes | ||
- | domain logons = yes | ||
- | |||
- | # the login script name depends on the machine name | ||
- | ; logon script = %m.bat | ||
- | # the login script name depends on the unix user used | ||
- | ; logon script = %u.bat | ||
- | ; logon path = \\%L\Profiles\%u | ||
- | # disables profiles support by specifing an empty path | ||
- | logon path = | ||
- | |||
- | passdb backend = ldapsam: | ||
- | ldap admin dn = cn=Manager, | ||
- | #ldap admin dn = cn=samba, | ||
- | |||
- | ldap suffix = dc=example | ||
- | ldap group suffix = ou=Groups | ||
- | ldap user suffix = ou=People | ||
- | ldap machine suffix = ou=Computers | ||
- | #ldap idmap suffix = ou=Idmap | ||
- | add user script = / | ||
- | ldap delete dn = Yes | ||
- | delete user script = / | ||
- | add machine script = / | ||
- | add group script = / | ||
- | delete group script = / | ||
- | add user to group script = / | ||
- | delete user from group script = / | ||
- | set primary group script = / | ||
- | |||
- | #pam password change = yes | ||
- | |||
- | check password script = / | ||
- | |||
- | ; add user script = / | ||
- | ; add group script = / | ||
- | ; add machine script = / | ||
- | ; delete user script = / | ||
- | ; delete user from group script = / | ||
- | ; delete group script = / | ||
- | |||
- | |||
- | # ----------------------- Browser Control Options ---------------------------- | ||
- | # | ||
- | # 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 | ||
- | # | ||
- | # OS Level determines the precedence of this server in master browser | ||
- | # elections. The default value should be reasonable | ||
- | # | ||
- | # Preferred Master causes Samba to force a local browser election on startup | ||
- | # and gives it a slightly higher chance of winning the election | ||
- | local master = yes | ||
- | os level = 96 | ||
- | preferred master = yes | ||
- | |||
- | # | ||
- | # Windows Internet Name Serving Support Section: | ||
- | # Note: Samba can be either a WINS Server, or a WINS Client, but NOT both | ||
- | # | ||
- | # - WINS Support: Tells the NMBD component of Samba to enable it's WINS Server | ||
- | # | ||
- | # - WINS Server: Tells the NMBD components of Samba to be a WINS Client | ||
- | # | ||
- | # - WINS Proxy: Tells Samba to answer name resolution queries on | ||
- | # | ||
- | # at least one WINS Server on the network. The default is NO. | ||
- | # | ||
- | # DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names | ||
- | # via DNS nslookups. | ||
- | |||
- | wins support = yes | ||
- | ; wins server = w.x.y.z | ||
- | ; wins proxy = yes | ||
- | |||
- | ; dns proxy = yes | ||
- | |||
- | # --------------------------- Printing Options ----------------------------- | ||
- | # | ||
- | # Load Printers let you load automatically the list of printers rather | ||
- | # than setting them up individually | ||
- | # | ||
- | # Cups Options let you pass the cups libs custom options, setting it to raw | ||
- | # for example will let you use drivers on your Windows clients | ||
- | # | ||
- | # Printcap Name let you specify an alternative printcap file | ||
- | # | ||
- | # You can choose a non default printing system using the Printing option | ||
- | |||
- | load printers = yes | ||
- | cups options = raw | ||
- | |||
- | ; printcap name = / | ||
- | #obtain list of printers automatically on SystemV | ||
- | ; printcap name = lpstat | ||
- | ; printing = cups | ||
- | |||
- | # --------------------------- Filesystem Options --------------------------- | ||
- | # | ||
- | # The following options can be uncommented if the filesystem supports | ||
- | # Extended Attributes and they are enabled (usually by the mount option | ||
- | # user_xattr). Thess options will let the admin store the DOS attributes | ||
- | # in an EA and make samba not mess with the permission bits. | ||
- | # | ||
- | # Note: these options can also be set just per share, setting them in global | ||
- | # makes them the default for all shares | ||
- | |||
- | ; map archive = no | ||
- | ; map hidden = no | ||
- | ; map read only = no | ||
- | ; map system = no | ||
- | ; store dos attributes = yes | ||
- | |||
- | |||
- | # | ||
- | |||
- | [homes] | ||
- | comment = Home Directories | ||
- | browseable = no | ||
- | writable = yes | ||
- | ; valid users = %S | ||
- | ; valid users = MYDOMAIN\%S | ||
- | |||
- | [printers] | ||
- | comment = All Printers | ||
- | path = / | ||
- | browseable = no | ||
- | guest ok = no | ||
- | writable = no | ||
- | printable = yes | ||
- | |||
- | # Un-comment the following and create the netlogon directory for Domain Logons | ||
- | ; | ||
- | ; comment = Network Logon Service | ||
- | ; path = / | ||
- | ; guest ok = yes | ||
- | ; writable = no | ||
- | ; share modes = no | ||
- | |||
- | |||
- | # Un-comment the following to provide a specific roving profile share | ||
- | # the default is to use the user's home directory | ||
- | ; | ||
- | ; path = / | ||
- | ; | ||
- | ; guest ok = yes | ||
- | |||
- | |||
- | # A publicly accessible directory, but read only, except for people in | ||
- | # the " | ||
- | [public] | ||
- | comment = Public Stuff | ||
- | path = /srv/samba | ||
- | public = yes | ||
- | writable = yes | ||
- | printable = no | ||
- | ; write list = +staff | ||
- | force create mode = 0666 | ||
- | force directory mode = 0777 | ||
- | vfs objects = recycle | ||
- | vfs recycle: | ||
- | </ | ||
- | |||
- | |||
- | <file bash slapd.conf> | ||
- | # | ||
- | # See slapd.conf(5) for details on configuration options. | ||
- | # This file should NOT be world readable. | ||
- | # | ||
- | |||
- | include / | ||
- | include / | ||
- | include / | ||
- | include / | ||
- | include / | ||
- | include / | ||
- | include / | ||
- | include / | ||
- | include / | ||
- | include / | ||
- | include / | ||
- | include / | ||
- | |||
- | include / | ||
- | |||
- | # Allow LDAPv2 client connections. | ||
- | allow bind_v2 | ||
- | |||
- | # Do not enable referrals until AFTER you have a working directory | ||
- | # service AND an understanding of referrals. | ||
- | # | ||
- | |||
- | pidfile / | ||
- | argsfile / | ||
- | |||
- | # Load dynamic backend modules: | ||
- | # modulepath / | ||
- | # moduleload accesslog.la | ||
- | # moduleload auditlog.la | ||
- | # moduleload back_sql.la | ||
- | # moduleload denyop.la | ||
- | # moduleload dyngroup.la | ||
- | # moduleload dynlist.la | ||
- | # moduleload lastmod.la | ||
- | # moduleload pcache.la | ||
- | # moduleload ppolicy.la | ||
- | # moduleload refint.la | ||
- | # moduleload retcode.la | ||
- | # moduleload rwm.la | ||
- | moduleload syncprov.la | ||
- | # moduleload translucent.la | ||
- | # moduleload unique.la | ||
- | # moduleload valsort.la | ||
- | |||
- | serverID 1 | ||
- | |||
- | # The next three lines allow use of TLS for encrypting connections using a | ||
- | # dummy test certificate which you can generate by changing to | ||
- | # / | ||
- | # slapd.pem so that the ldap user or group can read it. Your client software | ||
- | # may balk at self-signed certificates, | ||
- | TLSCACertificateFile / | ||
- | TLSCertificateFile / | ||
- | TLSCertificateKeyFile / | ||
- | |||
- | # Sample security restrictions | ||
- | # Require integrity protection (prevent hijacking) | ||
- | # Require 112-bit (3DES or better) encryption for updates | ||
- | # Require 63-bit encryption for simple bind | ||
- | # security ssf=1 update_ssf=112 simple_bind=64 | ||
- | |||
- | # Sample access control policy: | ||
- | # Root DSE: allow anyone to read it | ||
- | # Subschema (sub)entry DSE: allow anyone to read it | ||
- | # Other DSEs: | ||
- | # Allow self write access | ||
- | # Allow authenticated users read access | ||
- | # Allow anonymous users to authenticate | ||
- | # | ||
- | # access to dn.base="" | ||
- | # access to dn.base=" | ||
- | # access to * | ||
- | # by self write | ||
- | # by users read | ||
- | # by anonymous auth | ||
- | # | ||
- | # if no access controls are present, the default policy | ||
- | # allows anyone and everyone to read anything but restricts | ||
- | # updates to rootdn. | ||
- | # | ||
- | # rootdn can always read and write EVERYTHING! | ||
- | |||
- | ####################################################################### | ||
- | # ldbm and/or bdb database definitions | ||
- | ####################################################################### | ||
- | |||
- | database bdb | ||
- | suffix " | ||
- | checkpoint 1024 15 | ||
- | # | ||
- | # Cleartext passwords, especially for the rootdn, should | ||
- | # be avoided. | ||
- | # Use of strong authentication encouraged. | ||
- | # rootpw secret | ||
- | # rootpw {crypt}ijFYNcSNctBYg | ||
- | overlay syncprov | ||
- | syncprov-checkpoint 100 10 | ||
- | syncprov-sessionlog 100 | ||
- | |||
- | # The database directory MUST exist prior to running slapd AND | ||
- | # should only be accessible by the slapd and slap tools. | ||
- | # Mode 700 recommended. | ||
- | directory / | ||
- | |||
- | # Indices to maintain for this database | ||
- | index objectClass | ||
- | index ou, | ||
- | index uidNumber, | ||
- | index uid, | ||
- | index nisMapName, | ||
- | |||
- | # Replicas of this database | ||
- | #replogfile / | ||
- | #replica host=ldap-1.example.com: | ||
- | # | ||
- | # | ||
- | |||
- | access to dn.base="" | ||
- | |||
- | access to attrs=userPassword, | ||
- | by dn=" | ||
- | by dn=" | ||
- | by anonymous auth | ||
- | by self write | ||
- | by * none | ||
- | |||
- | access to * | ||
- | by dn=" | ||
- | by self write | ||
- | by * read | ||
- | |||
- | # enable monitoring | ||
- | database monitor | ||
- | |||
- | # allow onlu rootdn to read the monitor | ||
- | access to * | ||
- | by dn.exact=" | ||
- | by * none | ||
- | </ | ||
- | |||
- | |||
- | <file bash / | ||
- | # $Source: $ | ||
- | # $Id: smbldap.conf, | ||
- | # | ||
- | # smbldap-tools.conf : Q & D configuration file for smbldap-tools | ||
- | |||
- | # This code was developped by IDEALX (http:// | ||
- | # contributors (their names can be found in the CONTRIBUTORS file). | ||
- | # | ||
- | # | ||
- | # | ||
- | # This program is free software; you can redistribute it and/or | ||
- | # modify it under the terms of the GNU General Public License | ||
- | # as published by the Free Software Foundation; either version 2 | ||
- | # of the License, or (at your option) any later version. | ||
- | # | ||
- | # This program is distributed in the hope that it will be useful, | ||
- | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
- | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
- | # GNU General Public License for more details. | ||
- | # | ||
- | # You should have received a copy of the GNU General Public License | ||
- | # along with this program; if not, write to the Free Software | ||
- | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | ||
- | # USA. | ||
- | |||
- | # Purpose : | ||
- | # . be the configuration file for all smbldap-tools scripts | ||
- | |||
- | ############################################################################## | ||
- | # | ||
- | # General Configuration | ||
- | # | ||
- | ############################################################################## | ||
- | |||
- | # Put your own SID. To obtain this number do: "net getlocalsid" | ||
- | # If not defined, parameter is taking from "net getlocalsid" | ||
- | SID=" | ||
- | |||
- | # Domain name the Samba server is in charged. | ||
- | # If not defined, parameter is taking from smb.conf configuration file | ||
- | # Ex: sambaDomain=" | ||
- | sambaDomain=" | ||
- | |||
- | ############################################################################## | ||
- | # | ||
- | # LDAP Configuration | ||
- | # | ||
- | ############################################################################## | ||
- | |||
- | # Notes: to use to dual ldap servers backend for Samba, you must patch | ||
- | # Samba with the dual-head patch from IDEALX. If not using this patch | ||
- | # just use the same server for slaveLDAP and masterLDAP. | ||
- | # Those two servers declarations can also be used when you have | ||
- | # . one master LDAP server where all writing operations must be done | ||
- | # . one slave LDAP server where all reading operations must be done | ||
- | # | ||
- | |||
- | # Slave LDAP server | ||
- | # Ex: slaveLDAP=127.0.0.1 | ||
- | # If not defined, parameter is set to " | ||
- | slaveLDAP=" | ||
- | |||
- | # Slave LDAP port | ||
- | # If not defined, parameter is set to " | ||
- | slavePort=" | ||
- | |||
- | # Master LDAP server: needed for write operations | ||
- | # Ex: masterLDAP=127.0.0.1 | ||
- | # If not defined, parameter is set to " | ||
- | masterLDAP=" | ||
- | |||
- | # Master LDAP port | ||
- | # If not defined, parameter is set to " | ||
- | masterPort=" | ||
- | |||
- | # Use TLS for LDAP | ||
- | # If set to 1, this option will use start_tls for connection | ||
- | # (you should also used the port 389) | ||
- | # If not defined, parameter is set to " | ||
- | ldapTLS=" | ||
- | |||
- | # Use SSL for LDAP | ||
- | # If set to 1, this option will use SSL for connection | ||
- | # (standard port for ldaps is 636) | ||
- | # If not defined, parameter is set to " | ||
- | ldapSSL=" | ||
- | |||
- | # How to verify the server' | ||
- | # see "man Net:: | ||
- | verify=" | ||
- | |||
- | # CA certificate | ||
- | # see "man Net:: | ||
- | cafile="/ | ||
- | |||
- | # certificate to use to connect to the ldap server | ||
- | # see "man Net:: | ||
- | clientcert="/ | ||
- | |||
- | # key certificate to use to connect to the ldap server | ||
- | # see "man Net:: | ||
- | clientkey="/ | ||
- | |||
- | # LDAP Suffix | ||
- | # Ex: suffix=dc=IDEALX, | ||
- | suffix=" | ||
- | |||
- | # Where are stored Users | ||
- | # Ex: usersdn=" | ||
- | # Warning: if ' | ||
- | usersdn=" | ||
- | |||
- | # Where are stored Computers | ||
- | # Ex: computersdn=" | ||
- | # Warning: if ' | ||
- | computersdn=" | ||
- | |||
- | # Where are stored Groups | ||
- | # Ex: groupsdn=" | ||
- | # Warning: if ' | ||
- | groupsdn=" | ||
- | |||
- | # Where are stored Idmap entries (used if samba is a domain member server) | ||
- | # Ex: idmapdn=" | ||
- | # Warning: if ' | ||
- | idmapdn=" | ||
- | |||
- | # Where to store next uidNumber and gidNumber available for new users and groups | ||
- | # If not defined, entries are stored in sambaDomainName object. | ||
- | # Ex: sambaUnixIdPooldn=" | ||
- | # Ex: sambaUnixIdPooldn=" | ||
- | sambaUnixIdPooldn=" | ||
- | |||
- | # Default scope Used | ||
- | scope=" | ||
- | |||
- | # Unix password encryption (CRYPT, MD5, SMD5, SSHA, SHA, CLEARTEXT) | ||
- | hash_encrypt=" | ||
- | |||
- | # if hash_encrypt is set to CRYPT, you may set a salt format. | ||
- | # default is " | ||
- | # passwords if you use " | ||
- | crypt_salt_format=" | ||
- | |||
- | ############################################################################## | ||
- | # | ||
- | # Unix Accounts Configuration | ||
- | # | ||
- | ############################################################################## | ||
- | |||
- | # Login defs | ||
- | # Default Login Shell | ||
- | # Ex: userLoginShell="/ | ||
- | userLoginShell="/ | ||
- | |||
- | # Home directory | ||
- | # Ex: userHome="/ | ||
- | userHome="/ | ||
- | |||
- | # Default mode used for user homeDirectory | ||
- | userHomeDirectoryMode=" | ||
- | |||
- | # Gecos | ||
- | userGecos=" | ||
- | |||
- | # Default User (POSIX and Samba) GID | ||
- | defaultUserGid=" | ||
- | |||
- | # Default Computer (Samba) GID | ||
- | defaultComputerGid=" | ||
- | |||
- | # Skel dir | ||
- | skeletonDir="/ | ||
- | |||
- | # Default password validation time (time in days) Comment the next line if | ||
- | # you don't want password to be enable for defaultMaxPasswordAge days (be | ||
- | # careful to the sambaPwdMustChange attribute' | ||
- | defaultMaxPasswordAge=" | ||
- | |||
- | ############################################################################## | ||
- | # | ||
- | # SAMBA Configuration | ||
- | # | ||
- | ############################################################################## | ||
- | |||
- | # The UNC path to home drives location (%U username substitution) | ||
- | # Just set it to a null string if you want to use the smb.conf 'logon home' | ||
- | # directive and/or disable roaming profiles | ||
- | # Ex: userSmbHome=" | ||
- | userSmbHome=" | ||
- | |||
- | # The UNC path to profiles locations (%U username substitution) | ||
- | # Just set it to a null string if you want to use the smb.conf 'logon path' | ||
- | # directive and/or disable roaming profiles | ||
- | # Ex: userProfile=" | ||
- | userProfile="" | ||
- | |||
- | # The default Home Drive Letter mapping | ||
- | # (will be automatically mapped at logon time if home directory exist) | ||
- | # Ex: userHomeDrive=" | ||
- | userHomeDrive=" | ||
- | |||
- | # The default user netlogon script name (%U username substitution) | ||
- | # if not used, will be automatically username.cmd | ||
- | # make sure script file is edited under dos | ||
- | # Ex: userScript=" | ||
- | userScript=" | ||
- | |||
- | # Domain appended to the users " | ||
- | # when smbldap-useradd -M is used | ||
- | # Ex: mailDomain=" | ||
- | mailDomain=" | ||
- | |||
- | ############################################################################## | ||
- | # | ||
- | # SMBLDAP-TOOLS Configuration (default are ok for a RedHat) | ||
- | # | ||
- | ############################################################################## | ||
- | |||
- | # Allows not to use smbpasswd (if with_smbpasswd == 0 in smbldap_conf.pm) but | ||
- | # prefer Crypt:: | ||
- | with_smbpasswd=" | ||
- | smbpasswd="/ | ||
- | |||
- | # Allows not to use slappasswd (if with_slappasswd == 0 in smbldap_conf.pm) | ||
- | # but prefer Crypt:: libraries | ||
- | with_slappasswd=" | ||
- | slappasswd="/ | ||
- | |||
- | # comment out the following line to get rid of the default banner | ||
- | # no_banner=" | ||
- | </ | ||
- | |||
- | |||
- | This is a template for phpLDAPAdmin-a. | ||
- | |||
- | <file bash sambaSamAccount.xml> | ||
- | <?xml version=" | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | <!--This is the main attribute, which will be part of the dn-a --> | ||
- | < | ||
- | < | ||
- | |||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | </ | ||
- | |||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | </ | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | </ | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | </ | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | </ | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | </ | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | </ | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | </ | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | </ | ||
- | < | ||
- | < | ||
- | < | ||
- | </ | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | </ | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | </ | ||
- | < | ||
- | < | ||
- | < | ||
- | <!-- < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | </ | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | </ | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | </ | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | </ | ||
- | < | ||
- | < | ||
- | < | ||
- | < | ||
- | </ | ||
- | < | ||
- | < | ||
- | < | ||
- | </ | ||
- | </ | ||
- | </ | ||
- | </ | ||
samba/samba_configuration_detailed.1478791088.txt.gz · Last modified: 2020/07/15 09:30 (external edit)