Franske ITC-2480 Lab 7

From ITCwiki
Revision as of 14:48, 28 February 2014 by Riptide wave (talk | contribs)
Jump to navigation Jump to search

Introduction

Lab Procedure

Prerequisites

  1. Open an SSH console to your Linux system using the PuTTY software, login with your standard user account
  2. Make sure that webmin is installed on your system.

Install Samba

  1. With your favorite package manager, install the samba package.
  2. After samba is installed, login into webmin on your local computers web browser.
  3. Under the servers tab, notice how samba does not show up. This is because we just installed the package.
  4. On the bottom of the left toolbar, click refresh modules. After a minute, it should refresh the page. Now look under the servers tab again. Does samba now show up?

Setup a Guest Folder

  1. The first thing we are going to do is we are going to create a guest share. This share will allow for all users, even those who have not authenticated, to read files.
  2. To help you better understand samba, this first share will be configured from putty and command line. First, cd into /etc/samba/ and run a ls. In here we have two main files. smb.conf, which holds all of the samba share and authentication settings, and dhcp.conf which is no longer used, but used to be used to define host names and dns servers for samba to use.
  3. Now with your favorite text editor, open up smb.conf as root (remember to use sudo).
  4. Scroll to the bottom of the file, and notice how shares are defined. They all have a similar format such as:
[Share Name]
        comment = Share Comment
        options....
  1. Where options are the different configuration settings. Lets try creating the guest share folder from the config file manually.
  2. Exit out of nano, and create the folder /srv/Guest-Files as root. This will be the folder we are sharing.
  3. Now open up /etc/samba/smb.conf in a text editor again as root, and go to the bottom of the file.
  4. Enter the following:
[Guest Share]
        comment = Public File Share
        public = yes
        path = /srv/Guest-Files
  1. You have now created the public share. To test this share, go into /srv/Guest-Files and create a text file and enter some information. We will use this file to test the read-only settings of the share.
  2. At this point, we should be ready to test out our configuration. On your Local Computer, open up command line, and enter \\172.17.50.xx (Your IP you setup for the static address), and press enter. You should see a share folder called Guest Share. Open it up, and see if your text file is in the share. Open up the file, and try to edit and save the file. What error do you get?

Share Home Folders

  1. Now we are going to setup Home Folders. By default they are enabled, but write access is not. Notice what other folders are enabled in samba by default.
  2. First it must be noted that samba requires separate user accounts from the system, just like mysql. So first, we are going to add your user account.
  3. To do this, we are now going to use webmin to configure the shares. Remember you can access webmin from 172.17.50.xx:10000.
  4. On the Webmin Samba config page, click Samba Users. Notice how none are currently defined. Go back, and then click Convert Users. This is the tool we will use to convert the local unix user accounts to samba.
  5. Leave the Unix users to convert option set to all except listed users and UID ranges with the option of -499. This will add all user counts with a UID of 500 or more to samba.
  6. Now on the bottom, select "No password". We are doing this as we will define unique passwords for each user. Then click Convert Users when ready.
  7. When you are done, go to the Samba Users page again. Notice how your user account is now listed. From here you can now add passwords to the different user accounts you added in the last step.
  8. Lastly we are going to setup write access to home folders, so you will be able to add files to your home directory over samba.
  9. On the samba config page, under Shares, click the home share. Next click Security and Access Control. Now set the Writable option to Yes, and then click save.
  10. Now go back to the Samba config page, and click the Restart Samba Servers option at the bottom. We do this to force samba to load the new configuration. You can also wait a minute or two if you don't want to disconnect any connected users.
  11. At this point, we should be ready to test out our configuration. On your Local Computer, open up command line, and enter \\172.17.50.xx (Your IP you setup for the static address), and press enter. Notice how you have an empty share because you are connected without any authentication. Now, in the top URL window, add \username to the path, so ex \\172.17.50.xx\user. You should now get a login popup. Login as your user, and you should be greeted with your home folder.
  12. Test creating and deleting a file to verify write access is working.
  13. Now try to access a home share of another user that was added to samba. Notice how you do not have permissions. Try logging in with another user account to access a different home share.
  14. Note: To use another user account in a samba share, you may have to logout and then back in on your local machine.

Setup a Group Share Folder

  1. Now we are going to setup a group folder share that will allow for all samba users to read and write to the folder.
  2. Now back in the webmin samba config panel, we are going to create a new share. Under shares, select the Create a new file share link.
  3. Use the following base configuration:
Share Name: Share-Files
Directory to share: /srv/Group-Share
Automatically Create Directory: Yes
Create with owner: root
Create with permissions: 775
Create with group: users
Available: yes
Browsable: yes
Share Comment: group share folder
  1. Once the share is setup, click it to edit it. Once you are at the Edit File Share page, click File Permissions. Notice how the New Unix file and New Unix directory are set to 755 by default, even though we set the share to use 775 to create the directory. This is done for security purposes.
  2. Now set the New Unix file and New Unix directory mode to 775, and set Force Unix group to users. You can now press save. We do this to allow authenticated users to modify and edit files that may have been added by other users.
  3. Now we will need to enable write access to the folder. On the Edit file share page again, click Security and Access Control. Now set the Writable option to Yes, and press save.
  4. At this point, you can test the share exactly the same way we did with the home folder share. Notice though how this share is set to browsable, so it shows up in the root share folder. Go ahead and create a file, and in putty, look at the user and group assigned to the files you created.