Open main menu

CDOT Wiki β

Changes

OPS335 Lab 5

1,729 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==
{{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>If you have SELinux set to enforcing, 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
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 (though this would require another configuration file we don't cover).
 
=== Using Nautilus to browse Samba shares ===
 
Instead of accessing your file share via CLI, you can also connect, navigate and access your file share via a graphical application such as a file browser or a web-browser.
 
'''Perform the following steps on your HOST machine:'''
 
#Install the '''samba-client''' and '''cifs-utils''' packages.
#Use the "Places" menu from the desktop and open 'Browse Network'.
#From the menu in the side-bar of the files tool, choose 'Other Locations'.
#In the bar titled 'Connect to Server' enter '''smb://vm2/home''' as the location, and enter your samba password in the prompt<br>(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'.
 
 
:You can also use a web browser with support for the SMB protocol such as Konqueror (Note that firefox does not have such support)
 
<ol><li value="6">If Konqueror is not installed then install it with the command: <source>
yum install kdebase</source></li>
<li>Start Konqueror, the web/file browser, and in the address bar enter the following:<br>'''smb://vm2/home'''</li>
<li>Enter your username and password when prompted.</li>
<li>Double click on a file you have some text in.</li>
<li>Open it with gedit, make some changes, and save it.</li>
<li>When prompted, choose to upload the file.</li>
<li>Close Konqueror.</li>
<li>cat the file on your VM2 to ensure the changes were properly uploaded.</li>
</ol>
 
 
'''Record steps, commands, and your observations from this INVESTIGATION in your OPS335 lab log-book'''
==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.
# 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 VM 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 VM2, 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 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>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 blackboard, 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 (Murray SaulYou's Classes only)==='''Arrange evidence (command output) for each ll get the same grade regardless of these items on your screen, then ask how you choose to submit 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 '''host''' machine. ::*For '''Peter's classes''', follow his Online Submission instructions in Moodle.::*For '''Murray's classes''', run the bash script on host and vm2 (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==