Changes

Jump to: navigation, search

OPS335 Samba Lab

33 bytes added, 17:15, 4 November 2015
m
fixing warning.
[[Category:OPS335]][[Category:OPS335 Labs]]
=Samba - A Windows SMB/CIFS fileserver for UNIX=
{{Admon/important|Warning| Make sure that your VMs are fully updated before you begin this lab. }}
 
==Configuring a Samba Server on Linux==
*On your VM 2 install Samba
yum dnf install sambasamba-client
*Create a backup of the file /etc/samba/smb.conf, and create a new one that includes only the following:
[global]
encrypt passwords = yes
smb passwd file = /etc/samba/smbpasswd
hosts allow = 142.204.141. <first three octets of network address followed by period e.g. "192.168.6."> ; note: the above line will allow access from the Seneca domain in lab T2107
[home]
comment = "put your real name here without the quotes"
path = /home/<learnid>
valid users = <learnid>
; remember <learnid> is your learnid account name
public = no
writable = yes
printable = no
create mask = 0765
*Now add a parameter to 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.
*Add a parameter to the home section so that only your user account can access that share.
*Create a Samba password for user <learnid> with the command
smbpasswd -a <learnid>
*Test and review your configuration with the command
testparm
*You can now start your Samba server systemctl start (smb.service*Ensure your server starts ) and ensure it will start at boot. *You will need to determine which ports you need to open Modify the firewall on VM2 to allow connections to your server (hint: there are a total of six port and protocol combinations needed)samba traffic.
*Test if you have a connection with the command
smbclient -U <learnid> -L vm02vm2
*It will show you a list of all available shares.
== Using smbclient ==
*In a full installation you should not need to install samba-client on your vm01host, but if it is not present then do so.*You will also need to install the cifs-utils package to be able to mount the filesystem.*From vm01 the host use the "smbclient" command in a terminal window. smbclient '\\vm02vm2\home' -U <learnid>
*After entering your password you should get a prompt similar to
smb: \>
*SE Linux should be in Enforcing and will need to be adjusted (on the samba server) for this to work.
setsebool -P samba_enable_home_dirs 1
*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.
== Using 'mount -t cifs' ==
*The next way is to use the mount command.
*Use the mount command on vm01 the host to mount your home directory mkdir /tmp/vm02vm2-home mount -t cifs //vm02vm2/home /tmp/vm02vm2-home -o username=<learnid> ls /tmp/vm02vm2-home
== Using Nautilus to browse Samba shares ==
*Start a graphical interface on vm01.*Use the "ActivitiesPlaces" menu from the desktop on and open 'filesBrowse Network'.
*From the menu in the side-bar of the files tool, choose 'Connect to Server'.
*Enter 'smb://vm02vm2/home' as the location, and enter your samba password in the prompt.**Where vm02 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'.
yum install kdebase
*Start Konqueror, the web/file browser, and in the address bar enter the following
smb://vm02vm2/home
*Enter your username and password when prompted.
*Double click on a file you have some text in.
**When prompted, choose to upload the file.
*Close Konqueror.
*cat the file on your host machineto VM2 to ensure the changes were properly uploaded.
=Connecting to a Linux SMB Server from a Windows Client (Windows 7)=
While completing this lab you have gained experience using a service designed to allow interaction from a variety of client tools on multiple OS platforms. You have also experienced service related tools that allow you to view configuration parameters and errors in real-time.
Answer the following Exploration questions:
#What is the purpose of the testparm command?
#What does SMB stand for? CIFS?
932
edits

Navigation menu