Difference between revisions of "OPS335 Lab 6"

From CDOT Wiki
Jump to: navigation, search
m (Modifying the instructions so that they do not run afoul of SELinux.)
Line 31: Line 31:
 
#Switch to your '''VM2''' machine as the '''root''' user.
 
#Switch to your '''VM2''' machine as the '''root''' user.
 
#Issue the following Linux command to install Samba server utlity:<br>'''yum install samba samba-client'''<br>
 
#Issue the following Linux command to install Samba server utlity:<br>'''yum install samba samba-client'''<br>
#Move the file '''/etc/samba/smb.conf''' to another filename by issuing the following command:<br>'''mv /etc/samba/smb.conf /etc/samba/smb.conf.original'''
+
#Copy the file '''/etc/samba/smb.conf''' to another filename by issuing the following command:<br>'''cp /etc/samba/smb.conf /etc/samba/smb.conf.original'''
#Create a <u>new</u> '''smb.conf''' file that contains the following lines:
+
#Clear the contents of the configuration file by running '''cat /dev/null > /etc/samba/smb.conf'''
 +
#Edit '''/etc/samba/smb.conf''' so that the file that contains the following lines:
 
  [global]
 
  [global]
 
  workgroup = WORKGROUP  
 
  workgroup = WORKGROUP  

Revision as of 09:46, 7 April 2016


SAMBA SERVER RESOURCES

Online References:

OVERVIEW

According to the samba.org website:

"Samba is the standard Windows interoperability suite of programs for Linux and Unix. Samba is Free Software licensed under the GNU General Public License, the Samba project is a member of the Software Freedom Conservancy."

Although a Samba server can provide many features such as printer sharing and backups, this lab's primary focus is to set up a Samba server on a Linux server in order to allow MS Windows users to share common files from the Linux's Samba server.

This lab will first install, setup, and enable a Samba server. Then another virtual machine will be created for a Windows operating system. Finally, within the Windows virtual machine, users will access files from the Linux Samba server (both graphically and command line).


INVESTIGATION 1: INSTALLING & CONFIGURING A SAMBA SERVER

In this investigation, we will set up a Samba server on our VM2 machine. We will first install, configure and enable the samba server on our virtual machine, and then we will quickly test to see if the Samba server works.


Important.png
Prerequistites
Due to the changes made in lab3, you will now need your vm1 running (as the DNS server) in order for any of your virtual machines to be able to use the internet.

Perform the following steps:

  1. Make certain that both your VM1 and VM2 machines are running.
  2. Switch to your VM2 machine as the root user.
  3. Issue the following Linux command to install Samba server utlity:
    yum install samba samba-client
  4. Copy the file /etc/samba/smb.conf to another filename by issuing the following command:
    cp /etc/samba/smb.conf /etc/samba/smb.conf.original
  5. Clear the contents of the configuration file by running cat /dev/null > /etc/samba/smb.conf
  6. Edit /etc/samba/smb.conf so that the file that contains the following lines:
[global]
workgroup = WORKGROUP 
server string = "put your real name here without the quotes"
encrypt passwords = yes
smb passwd file = /etc/samba/smbpasswd
  
[home]
comment = "put your real name here without the quotes"
path = /home/<yourSenecaID>
public = yes
writable = yes
printable = no
create mask = 0765
  1. Append (add) the following parameter to the bottom of the [global] section that will limit access to the share so that only machines in your virtual network and those in the lab room will be able to access it:
hosts allow = 192.168.x. 127.0.0.1
  1. Append (add) the following parameter to the [home] section so that only your user account can access that share:
valid users = <yourSenecaID>
  1. Create a Samba account and password for yourSenecaID by issuing the following command:
    smbpasswd -a <yourSenecaID>
Idea.png
Changing Existing Samba Account Passwords
If you need to change a user's existing Samba account password, you can issue the following command as root: smbpasswd username.
  1. Confirm the user you created has been added using the following command:
    pdbedit -L -v
  2. Test and review your configuration with the command:
    testparm
  3. Use the systemctl command to start the smb.service and enable the service to run on boot-up
  4. Install the netstat command by issuing the following command:
    yum install net-tools
  5. Issue the netstat -nautp command to see with port Samba is running on.
  6. Use the information in the previous step to modify the firewall on VM2 machine to allow samba traffic.
  7. Test to see that you can connect to your Samba server (locally) by issuing the following command:
    smbclient -U <yourSenecaID> -L 127.0.0.1
  8. When prompted, enter your Samba account password.
  9. The output from that issued command show appear similar to example displayed below:
Sharename       Type       Comment
---------       ----       -------
home             Disk      Your Name
IPC$             IPC       IPC Service ("Your Name")
Domain=[WORKGROUP] OS=[Windows 6.1] Server=[Samba 4.2.3]

Server                Comment
------                -------

WorkGroup             Master
---------             ------

  1. To access the Samba client shell on your local Samba share, issue the following command:
    smbclient '\\127.0.0.1\home' -U <yourSenecaID>
  2. Enter your Samba account password.
  3. Issue the help command to note common commands (dir, cd, ls, put, get). Note how similar they are to sftp commands.
  4. Enter exit to terminal your local Samba session.

Although you can use smbclient to access, browse and share files within other Linux and Windows servers, it is more practical to setup a Samba server to allow MS Windows Users to access a common file share on a Linux machine, and will be demonstrated in Investigation 2.

Record steps, commands, and your observations in INVESTIGATION 1 in your OPS335 lab log-book

INVESTIGATION 2: CONNECTING TO A SAMBA SERVER FROM A WINDOWS CLIENT

This investigation will configure your VM2 machine to act as a Samba File server to allow Windows OS Users access to the Linux Samba server files.

Creating a Windows7 Professional VM

To demonstrate how to access and share files from a remote MS Windows server using smbclient on your host machine, we will install a Windows7 Professional machine as a virtual machine.

Perform the following steps:

  1. Make certain you are using your host machine.
  2. Download a version of MS Windows7 Professional ISO file to your host machine. If you have already downloaded an ISO file, then you can use that (i.e. transfer to your host machine).
    NOTE: You cannot use a CD/DVD since KVM does not install by CD/DVD.

    ALTERNATIVE METHOD: You could also refer to the following link to download Windows7 OS image: https://inside.senecacollege.ca/its/software/ ,
    select Software Downloads, login with your senecaid and password, select MSDN, and then select a Windows7 Professional iso image to download.
    You are not required to obtain a product key since you will not need to extend the use of this Windows OS over 60 days.
Idea.png
Rearming the Windows Trial Version
If are your trial period for your Windows machine is nearly over, you can extend the trial period for another 30 days by running a command prompt as the administrator (right-click on cmd icon) and issuing the command: slmgr -rearm. Obviously, you are required to perform this operation prior to the termination of the initial trial period.


  1. Create a new virtual machine (RAM: 1024 MB, hard drive size: 20 GB, accept all other defaults) making certain to specify the location of your downloaded Windows OS iso file.
  2. Install the Windows OS creating a default user as the administrator.
  3. Upon successful installation, log into the Windows machine as a regular user, open a command prompt and using the ping command to confirm that you can connect to your VM2 machine.

Accessing Files on a Linux Samba Server via Windows Explorer

With some additional "tweaking" to your Linux Samba server configuration file, you should be able to access files on that file from a Windows machine on the same network. You will be creating a Samba share for your home directory of your regular user account.

Perform the following tasks:

  1. Make certain that both your VM2 and Windows virtual machines are running.
  2. On your Windows VM, temporarily turn off the firewall for your Windows machine.
  3. Open the Windows Explorer application.
  4. At the top of the application, enter the following:
    \\IPADDR_OF_VM2_MACHINE\home
You will be prompted (once only) for the Samba user-name and password for your VM2 machine).
You can create a mapped network drive (z:) for your Linux Samba server network share). Make certain that Reconnect at Login option is enabled.
  1. You will be prompted to enter your VM2 username and password (one time only). Refer to diagram on right.

    NOTE: It may take approximately 30 seconds to display the file contents.

  2. Where your successful? If not, try to troubleshoot the problem first, then ask your lab assistant or instructor for assistance.
  3. Close the Windows Explorer application window.
  4. Click on the START menu, and click on Computer.
  5. Click on the Map Network Drive button, and create a mapped network drive (called it drive Z:) which is a Samba share of your VM2 machine for the home directory making certain option to Reconnect at Login is enabled.
  6. When finished, click on Network in Windows file manager to confirm that the network share is present.
  7. Restart your Windows VM and confirm that the network share is active.
  8. Try to create a file on your Windows VM on your Linux Samba machine. Were you able to create a save a file?
  9. Switch to your VM2 machine and check to see if that file was created in your home directory.
  10. Finally, enable your Windows VM firewall, but with an exception for a Samba connection (i.e. the port number obtained from the previous investigation).


Record steps, commands, and your observations in INVESTIGATION 2 in your OPS335 lab log-book


COMPLETING THE LAB

Arrange evidence (command output) for each of these items on your screen, then ask your instructor to review them and sign off on the lab's completion:

Proof of network share of VM2 machine from Windows VM via Windows Explorer application
Firewall settings on your Windows VM to allow Linux Samba network share
Display contents of /etc/samba/smb.conf file on VM2 machine
Firewall exceptions (both machines) to allow Samba traffic
Lab logbook completed


EXPLORATION QUESTIONS

  1. What does SMB?
  2. What is the purpose of the testparm command?
  3. What does the text inside square brackets in the smb.conf file mean? (e.g., "[home]").
  4. Explain the meaning of the line "create mask = 0765" in the smb.conf file?
  5. What does the smbpasswd command do?