Changes

Jump to: navigation, search

OPS335 Lab 5

926 bytes removed, 20:32, 4 January 2021
Using Nautilus to browse Samba shares
==OBJECTIVE & PREPARATION==
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 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 users will access files on the Linux Samba server from Linux and Windows client machines (both graphically and command line).
 
=== Online Resources===
* (Course Notes on Samba Server)
*[http://www.tomsitpro.com/articles/linux-server-configuration-guide-book-excerpt,2-777-2.html Samba Server Setup] (Simple setup guide for samba server]
==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.
 
{{Admon/important|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:'''
server string = "put your real name here without the quotes"
encrypt passwords = yes
smb passwd file security = /etc/samba/smbpasswduser passdb backend = tdbsam
[home]
comment = "put your real name here without the quotes"
printable = no
create mask = 0765
[homes]
comment = automatic home share
public = no
writable = yes
printable = no
create mask = 0765
browseable = no
<ol><li value="3">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 will be able to access it:</li></ol>
hosts allow = 192.168.x. 127.0.0.1
{{Admon/tip|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'''.}}
<ol><li value="6">Confirm the user you created has been added using the following command:<br>'''pdbedit -L -v'''</li><li>Test and review your configuration with the command:<br>'''testparm'''</li><li>Use the '''systemctl''' command to start the smb.service and enable the service to run on boot-up</li><li>Since we If you have SELinux set SELinux to enforcing, we you'll will need to tell it to allow samba access to home directoriesby running: <br> '''setsebool -P samba_enable_home_dirs 1'''</li><li>Use the '''ss -nautp''' command to see with port Samba is running on.</li><li>Use the information in the previous step to modify the firewall on VM2 machine to allow samba traffic.</li><li>Test to see that you can connect to your Samba server (locally) by issuing the following command:<br>'''smbclient -U <yourSenecaID> -L 127.0.0.1'''</li><li>When prompted, enter your Samba account password.</li><li>The output from that issued command show appear similar to example displayed below:</li></ol>
Sharename Type Comment
#Install the '''samba-client''' and '''cifs-utils''' packages.
#Use the "smbclient" command in a terminal window.<source>
smbclient '\\vm2\home' -U <learnidyourSenecaID></source>
#After entering your password you should get a prompt similar to:<source>
smb: \></source>
#Once you have access to the directory use the get and put commands (similar to ftp) to move files.
#When you are finished close the connection.
# Try again using '''[homes]''' share instead<source> smbclient '\\vm2\homes' -U <yourSenecaID></source>
Note that this tool only gave temporary access with a limited set of commands.
'''Perform the following steps on your VM1'''
*#Issue the following commands to create a mount-point and to mount your home directory from your vm2 machine:<source>
mkdir /tmp/vm2-home
mount -t cifs //vm2/home /tmp/vm2-home -o username=<learnidyourSenecaID>
ls /tmp/vm2-home</source>
*#Create a file in that directory, then switch to '''vm2''' to confirm that it was created.*#Use umount on '''vm1''' to unmount that directory.*Note that this tool would leave the directory mounted until the machine rebooted or it was manually unmounted. It would also allow other users access to the directory, as it effectively became part of the local filesystem. It could even be added to fstab to be mounted on boot (if it didn't need a password).
'''The following steps require a graphical interface; perform them on your HOST'''
=== Using Nautilus to browse Samba shares ===*Install Note that this tool would leave the '''samba-client''' and '''cifs-utils''' packages.*Use directory mounted until the "Places" menu from the desktop and open 'Browse Network'machine rebooted or it was manually unmounted.*From the menu in the side-bar of the files tool, choose 'Connect It would also allow other users access to Server'. *Enter 'smb://vm2/home' as the location, and enter your samba password in the prompt.**Where vm2 is the name of the server, and home is the name of the directory it is sharing.*After you have checked that you can access your files, unmount the share by right-clicking its icon in the side-bar and clicking 'Unmount'. === Using a browser ===*You can also use a web browser with support for the SMB protocol such as Konqueror.**Note that firefox does not have such support. *If Konqueror is not installed then install it with effectively became part of the command: local filesystem. yum install kdebase*Start Konqueror, the web/file browser, and in the address bar enter the following smb://vm2/home*Enter your username and password when prompted.*Double click on a file you have some text in.**Open it with gedit, make some changes, and save it.**When prompted, choose It could even be added to fstab to upload the file.*Close Konqueror.*cat the file be mounted on your VM2 to ensure the changes were properly uploaded. '''Record steps, commands, and your observations from boot (though this INVESTIGATION in your OPS335 lab log-book''would require another configuration file we don't cover).
==INVESTIGATION 3: CONNECTING TO A SAMBA SERVER FROM A WINDOWS CLIENT==
# Make certain that your '''VM2''' machine is running, is still allowing samba traffic through the firewall, and is still running the samba service.
# Power up Use the Windows machine you are already running Vmware on. If you have a Linux host - good for you, you can either use a Windows system in the lab and loginVM or skip this part.# Add the prerouting and forwarding rules to your host's iptables necessary to redirect samba traffic from outside your network to your VM 2VM2, making sure to replace the X with your own network address.::<code>iptables -I FORWARD -p tcp --dport 139 -d 192.168.X.3 -j ACCEPT</code>::<code>iptables -I FORWARD -p tcp --dport 445 -d 192.168.X.3 -j ACCEPT</code>::<code>iptables -t nat -A PREROUTING -p tcp --dport 139 -j DNAT --to-destination 192.168.X.3</code>::<code>iptables -t nat -A PREROUTING -p tcp --dport 445 -j DNAT --to-destination 192.168.X.3</code>OR with specifing the interface (whichever works):::<code>iptables -t nat -A PREROUTING -i *externalinterface* -p tcp --dport 139 -j DNAT --to-destination 192.168.X.3</code>::<code>iptables -t nat -A PREROUTING -i *externalinterface* -p tcp --dport 445 -j DNAT --to-destination 192.168.X.3</code>where *externalinterface* is an interface name (e.g. ens33)<br>'''NOTE:''' when you restart libvirtd, it will move your FORWARD rules to the end of the chain, invalidating them.# Modify the '''hosts allow ''' setting on your '''vm2''' to also accept connections from the windows machine you are using.# Open the Windows File Explorer application.# At the top of the application, enter the following:<br>'''\\IPADDR_OF_HOST_MACHINEEXTERNAL_IPADDR_OF_HOST\home'''
{| width="40%" align="right" cellpadding="10"
|}
<ol><li value="5"> You will be prompted to enter your VM2 samba username and password (one time only). Refer to diagram screenshot on right.<br><br>'''NOTE:''' It may take approximately 30 seconds to display the file contents.<br><br></li><li>Where Were you successful? You should have received an error stating the your credentials are incorrect. You will notice that it adds SENEDS to the beginning of your user name, as the Seneca machine is pre-configured to be part of that workgroup.</li><li>Change the workgroup parameter in smb.conf on VM2 to match the seneca domain SENEDS, and try to connect again.</li><li>Were you successful? If not, try to troubleshoot the problem first, then ask your lab assistant or instructor for assistance.</li><li>Close the Windows File Explorer application window.</li><li>Click on the '''START''' menu, and click on '''This PC'''.</li><li>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.</li><li>When finished, click on '''Network''' in Windows file manager to confirm that the network share is present.</li><li>Try to create a file on Windows on your Linux Samba machine. Were you able to create a save a file?</li><li>Switch to your VM2 machine and check to see if that file was created in your home directory.</li></ol>
{{Admon/important |Backup your VMs!|You MUST perform a '''full backup''' of ALL of your VMs whenever you complete your '''OPS335 labs''' or when working on your '''OPS335 assignments'''. You should be using the dump or rsync command, and you should use the Bash shell script that you were adviced to create in order to backup all of your VMs.}}
'''Record steps, commands, and your observations from this INVESTIGATION in your OPS335 lab log-book'''
In completing this lab you have gained experience using a service that allows remote access to files stored on a Linux server. You have also learned how to use several different tools to access those files, both from a Linux and Windows client..
'''Depending on your professor you will either be asked to submit the lab in class, or online. ===Online Submission===Follow the appropriate set of instructions belowfor lab 5 on blackboard.<!--===Andrew'''s sections===
===Online Submission (Peter CallaghanYou may choose to:* Submit screenshots of your work on Blackboard, in which case you don's Classes only)===t need to come to the lab.Follow * Or come to the instructions for lab 5 on moodle, show me your work, and talk to me about it. I want to hear what you've learned and answer any questions you have.
===In Class Submission===You'''Arrange evidence (command output) for each ll get the same grade regardless of these items on how you choose to submit your screen, then ask your instructor to review them and sign off on the lab's completion:'''work.
::<span style="color:green;font-size:1.5em;">&#x2713;</span> Proof of network share of VM2 machine from Windows VM via Windows Explorer application
::<span style="color:green;font-size:1.5em;">&#x2713;</span> Display contents of '''/etc/samba/smb.conf''' file on VM2 machine
::<span style="color:green;font-size:1.5em;">&#x2713;</span> Firewall exceptions (both machines) to allow Samba traffic
::<span style="color:green;font-size:1.5em;">&#x2713;</span>Download the labcheck5.bash checking bash shell script by issuing the command:<br><br>and run '''wget httphttps://matrixict.senecac.onsenecacollege.ca/~peterandrew.callaghan/filessmith/OPS335ops335/labcheck5.bash'''<br><br>set execute permission and run the shell script on your '''c7host''' machine. ::*For '''Peter's classes''', follow his Online Submission instructions in Moodle.::*For '''Murray's classes''', run command (piping to the '''more''' command) and show output to instructor.
::<span style="color:green;font-size:1.5em;">&#x2713;</span>Completed Lab5 log-book notes.
-->
==EXPLORATION QUESTIONS==

Navigation menu