1 / 19

Samba

Samba. Objectives To be able setting up and working with samba Contents Samba Servers Installing and configuring samba Getting swat working Sharing directories with samba Samba tools Practical Installing and setting up Samba Summary. Samba servers. Domain Controller

adanna
Download Presentation

Samba

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Samba • Objectives • To be able setting up and working with samba • Contents • Samba Servers • Installing and configuring samba • Getting swat working • Sharing directories with samba • Samba tools • Practical • Installing and setting up Samba • Summary

  2. Samba servers • Domain Controller • Primary Domain Controller (PDC) • Backup Domain Controller (BDC) • ADS Domain Controller • Domain Member Server • Active Directory Domain Server • NT4 Style Domain Domain Server • Standalone Server • Samba security modes • User level security (DEFAULT MODE) security = user • Share level security security = share • Domain security mode security = domain • ADS security mode security = ADS realm = your.kerberos.REALM

  3. Download and Install Packages • You can get official samba from at least 2 places (As RPM) http://en.opensuse.org/Samba (As sources) http://us2.samba.org/samba/ftp/ • Install from sources 1. Get the sources: 2. Unzip it: 3. Make configuration: 4. Run configuration: 5. Install samba binaries and docs • In yast SuSE you need to install the following packages samba samba-client samba-winbind libsmbclient kdebase3-samba ldabsmb • SuSE is very active in maintaining samba • Consider use SuSE provided rpm packages above rather than sources # wget http://us1.samba.org/samba/ftp/stable/samba-3.0.21b.tar.gz # tar xvfz samba-3.0.21b.tar.gz # cd samba-3.0.20/source # ./autogen.sh # ./configure # make install

  4. How to Get Samba Started • Checkout /etc/services to confirm that • Start samba servies • nmb NetBios messages • smb Server messages • winbind resource browsing and naming • Make samba start at boot • Check that samba is running pgrep smb ; pgrep nmb • Samba is installed by default in SuSE • Samba main configuration sit in /etc/samba • Main configuration file has name smb.conf netbios-ssn 139/tcp netbios-ns 137/udp # rcnmb start # rcsmb start # rcwinbind start # chkconfig nmb on # chkconfig smb on # chkconfig winbind on

  5. The Samba Configuration File • Samba main configuration /etc/samba/smb.conf has 5 main sections • [global] General Samba configuration parameters • [printers] Used for configuring printers • [homes] Defines treatment of user logins • [netlogon] A share for storing logon scripts.(Not created by default.) • [profile] A share for storing domain logon information such as "favorites" and desktop icons.(Not created by default.)

  6. How SWAT Makes Samba Simpler • Basic SWAT Setup • Swat is xinetd dependent • Only access from localhost as default • Activate swat • Swat listens on port 901 • Swat is available through WEB interface http://localhost:901 Login as root with root password • SWAT can be secured with stunnel • Allways backup your original smb.conf before using SWAT # SWAT is the Samba Web Administration # Tool. service swat { socket_type = stream protocol = tcp wait = no user = root server = /usr/sbin/swat only_from = 127.0.0.1 log_on_failure += USERID } # chkconfig swat on # grep swat /etc/services swat 901/tcp # cp /etc/samba/smb.conf /etc/samba/smb.conf.original

  7. Starter: The [Global] Section /etc/samba/smb.conf domain logons = Yes # Tells Samba to become the PDC preferred master = Yes # Makes the PDC act as the central store for # the names of all windows clients, servers # and printers on the network. Very helpful # when you need to "browse" your local # network for resources. Also known as a # local master browser. domain master = Yes # Tells Samba to become the master browser # across multiple networks all over the # domain. The local master browsers register # themselves with the domain master to learn # about resources on other networks. os level = 65 # Sets the priority the Samba server should # use when negotiating to become the PDC # with other Windows servers. A value of 65 # will usually make the Samba server win. wins support = Yes # Allows the Samba server to provide name (default) # services for the network. In other words # keeps track of the IP addresses of all the # domain's servers and clients. time server = Yes # Lets the samba server provide time updates for the # domain's clients. workgroup = "homenet“ # The name of the Windows domain we'll create. # The name you select is your choice. I've decided # to use "homenet". security = user # Make domain logins query the Samba password database (default) # located on the samba server itself.

  8. Starter: The [Global] Section continued netbios name = SMBSRV # Tells the name of server kernel oplocks = false # file locking socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192 interfaces = lo eth0 # bind to these interfaces only bind interfaces only = yes # answer on same interface host allow = all # Begin with allowing all hosts log file = /var/log/samba/log.%m # Client machine logging max log size = 500 # Builtin logrotate dns proxy = no # Use DNS as wins proxy name resolve order = wins lmhosts hosts bcast wins server = 127.0.0.1 # We are local wins server enhanced browsing = yes load printers = no printing = lprng

  9. Starter: The [homes] Section /etc/samba/smb.conf Browseable = No # Doesn't allow others to browse # the contents of the directory read only = No # Allows the samba user to also # write to their Samba Linux # directory create mask = 0664 # Makes new files created by the # user to have "644" permissions. # You want to change this to # "0600" so that only the login # user has access to files. directory mask = 0775 # Makes new sub-directories # created by the user to have # "775" permissions. You # want to change this to # "0700" so that only the login # user has access to # directories.

  10. The [netlogon] and [profiles] Share Sections • The netlogon contain login scripts for clients • The profiles is storage for desktop enviroment [netlogon] path = /home/samba/netlogon guest ok = Yes [profiles] path = /home/samba/profiles read only = No create mask = 0600 directory mask = 0700 • Remember to create these share directories from the command line afterwards. # mkdir -p /home/samba/netlogon # mkdir -p /home/samba/profile # chmod -R 0755 /home/samba

  11. The [printers] Share Section • The samba default [printers] section: [printers] comment = All Printers path = /var/spool/samba printable = Yes browseable = No

  12. How To Create A Samba PDC Administrator User • Home Environment, adding the root admin • Samba passwords are stored in the /etc/samba/smbpasswd file • In corporate Environment you might want more than one person administer Samba • update your smb.conf [global] section with • Add some linux users that are members of this group • Use smbpasswd to add samba passwords for Domain logons for this group ( ux-passwd ! smbpasswd ) # /usr/bin/smbpasswd -a root password # groupadd sysadmin domain admin group = @sysadmin admin users = @sysadmin printer admin = @sysadmin

  13. How To Add Workstations To Your Samba Domain • Adding workstations to a Samba domain is a two step process • creation of workstation trust accounts on the samba server • logging into each workstation to add them to the domain • Create Samba Trust Accounts For Each Workstation • Manually • Automatically • Create the samba-clients Linux group # groupadd samba-clients # /usr/sbin/useradd -g samba-clients -d /dev/null -s /bin/false machine_name$ # passwd -l machine_name$ # smbpasswd -a -m machine_name [global] # <...remainder of parameters...> add machine script = /usr/sbin/useradd -d /dev/null -g samba-clients -s /bin/false -M %u # groupadd samba-clients

  14. Make Your PC Clients Aware Of Your Samba PDC Windows 95/98/ME and Windows XP Home Windows 9x machines do not implement full domain membership and therefore don't require machine trust accounts. Here's what you need to do: • Navigate to the Network section of the Control Panel (Start ->Settings->Control Panel->Network) • Select the Configuration tab • Highlight "Client for Microsoft Networks" • Click the Properties button. • Check "Log onto Windows NT Domain", and enter the domain name. • Click all the OK buttons and reboot!

  15. Make Your PC Clients Aware Of Your Samba PDC Windows NT For Windows NT, you must first create a manual Samba machine trust account as explained earlier, then follow these steps: • Navigate to the Network section of the Control Panel (Start ->Settings->Control Panel->Network ) • Select the "Identification" tab • Click the "Change" button • Enter the domain name and computer name, do not check the box Create a Computer Account in the Domain. In this case, the existing machine trust account is used to join the machine to the domain. • Click "OK". You should get "Welcome to <DOMAIN>" message as confirmation that you've been added. • Reboot. You can now log in using any account in the /etc/smbpasswd file with your domain as the domain name.

  16. Make Your PC Clients Aware Of Your Samba PDC Windows 200x and Windows XP Professional For the 200x and XP Professional varieties of Windows, create a dynamic Samba machine trust account, then go through these steps: • Press the Windows and Break keys simultaneously to access the System Properties dialogue box. • Click on the 'Network Identification' or 'Computer Name' tab on the top. • Click the "Properties" button. • Click on the "Member of Domain" button. • Also enter your domain name and computer name and then click "OK" • You will be prompted for a user account and password with rights to join a machine to the domain. Enter the information for your Samba administrator. In this home environment scenario, the user would be root with the corresponding smbpasswd password. Now, you should get a "Welcome to <DOMAIN>" message confirming that you've been added. • Reboot. Log in using any account in the /etc/smbpasswd file with your domain as the domain name.

  17. How To Add Users To Your Samba Domain • Adding The Users In Linux • Give them a Linux Password • Mapping The Linux Users To An smbpassword • Mapping A Private Windows Drive Share • By default $HOME is mapped to h: • Batch Login script • Add the following to /home/samba/netlogon/login.bat Convert to MSDOS format: • Set proper rights: Add at global in smb.conf: # useradd -m –g 100 peter # passwd peter # /usr/bin/smbpasswd -a peter password REM Drive Mapping Script net use P: \\bigboy\ unix2dos /home/samba/netlogon/login.bat [global] logon script = login.bat # chmod 644 /home/samba/netlogon/login.bat

  18. Domain Groups And Samba • Domain users • How To Delete Users From Your Samba Domain 1. 2. • How To Modify Samba Passwords • Samba can let users change their passwords themself • In [GLOBAL] section of smb.conf: unix passwd sync = Yes # Enables Samba/Linux # password # synchronization passwd program = /usr/bin/passwd %u # Lists the location of the # Linux password file # which is usually # /bin/passwd. passwd chat = *password* %n\n *password* %n\n *changed* # A short script to change the Linux # password using the Samba # password domain admin group = USER1 USER2 @GROUP # smbpasswd -x john # userdel -r john

  19. Summary

More Related