Difference between revisions of "OPS335 Samba Lab"

From CDOT Wiki
Jump to: navigation, search
(Connecting to a Linux SMB Server (Matrix) from a Linux Client (Fedora 13))
m (fixing warning.)
 
(83 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
[[Category:OPS335]][[Category:OPS335 Labs]]
 
[[Category:OPS335]][[Category:OPS335 Labs]]
==SAMBA==
+
=Samba - A Windows SMB/CIFS fileserver for UNIX=
===Connecting to a Linux SMB Server (Matrix) from a Windows Client (Windows 7)===
+
{{Admon/important|Warning| Make sure that your VMs are fully updated before you begin this lab. }}
*Power up a Windows 7 system in the lab and login using your LEARN username and password.
+
 
*You should see an icon of Tux, the Linux penguin, on your desktop. Double-click it to login to your Matrix account. A window of your Matrix home directory should open.
+
==Configuring a Samba Server on Linux==
*Use the mouse to drag and drop files to and from your Matrix account and your Windows 7 lab machine.
+
*On your VM 2 install Samba
*Once you are satisfied that you can easily move files to/from your Matrix account power off the PC.
+
  dnf install samba samba-client
*Set the HD selector switch to boot from your Fedora 13 Linux drive and power on the PC.
+
*Create a backup of the file /etc/samba/smb.conf, and create a new one that includes only the following:
===Connecting to a Linux SMB Server (Matrix) from a Linux Client (Fedora 13)===
+
[global]
There are 4 ways that a Linux client can connect to an SMB server. Start by logging into your Fedora 13 system as joker and opening a terminal window.
+
workgroup = <yourlearnid>.org
#The first way is to use the "Places" menu from a Gnome desktop:
+
server string = "put your real name here without the quotes"
#*Switch to root and ensure you are using the default Fedora 13 firewall.
+
encrypt passwords = yes
#*As root, ensure Samba is installed. Use these two commands: "yum install samba" and "yum install samba-client"
+
smb passwd file = /etc/samba/smbpasswd
#*Fedora encrypts passwords when authenticating SMB connections. Unfortunately Windows clients (here at Seneca) insist on passwords being sent in plain text. For this reason Matrix SMB is set to use plain text passwords. To change Fedora to use plain text passwords switch to root and edit the /etc/samba/smb.conf file and immediately after the [global] section header insert these two lines:
+
 
#**client plaintext auth = yes
+
[home]
#**client lanman auth = yes
+
comment = "put your real name here without the quotes"
#*Create a new account on Fedora with the same name as your LEARN acount. Set the password to 'seneca99'.
+
path = /home/<learnid>
#*Logout of joker and login to Fedora using your LEARN name.
+
public = no
#*Now try the following:
+
writable = yes
#*From the "Places" menu at the top of your screen, select "Network" and wait until the network scan completes. Then click on the "Windows Network" and then click the "File" menu and select "Connect to Server", change the service type to "Windows Share" and input matrix.senecac.on.ca for the server, your username for the ShareName and UserName fields. Then click the Connect button. You should now be able to browse your Matrix files.
+
printable = no
#The second way is to use a web browser with support for the SMB protocol such as Konqueror.  
+
create mask = 0765
#*If Konqueror is not installed then install it with the command: 'yum install kdebase'.
+
*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.
#*Start Konqueror, the web/file browser, and in the Location edit box enter the following: 'smb://matrix/xxxxxx'. Where xxxxxx is your Matrix username.  
+
*Add a parameter to the home section so that only your user account can access that share.
#*Login to your Matrix account. Konqueror should open a window of your Matrix home directory.  
+
*Create a Samba password for user <learnid> with the command
#*Use the mouse to drag and drop files to and from your Matrix account and your Fedora Linux machine.Close Konqueror.
+
smbpasswd -a <learnid>
#The third way is to use the "smbclient" command in a terminal window.
+
*If you need to, you can change a user's password by using the command
#*At the command prompt enter the following:
+
smbpasswd <username>
#** smbclient '\\matrix\xxxxxx' -U xxxxxx
+
*Confirm the user you created has been added using the following command
#***where xxxxxx is your Matrix username
+
pdbedit -L -v
#**You should get a prompt similar to
+
*Test and review your configuration with the command
#***smb: \>
+
testparm
#*Enter the ls command to see a list of your Matrix files.
+
*You can now start your Samba server (smb.service) and ensure it will start at boot.  
#**Enter ? to see a list of smbclient commands.
+
*Modify the firewall on VM2 to allow samba traffic.
#**Use the get and put commands (similar to ftp) to move files to and from your Matrix account and your Fedora 13 Linux system.
+
*Test if you have a connection with the command
#**When done enter the quit command.
+
smbclient -U <learnid> -L vm2
#The fourth way is to use the mount command. '''THIS PART WILL PROBABLY NOT WORK !'''
+
*It will show you a list of all available shares.
#*Use the mount command to mount your matrix home directory. NOTE: This mount command will only work if your kernel was configured to allow mounting CIFS with unencrypted passwords.
+
 
#**mount -t cifs //matrix/xxxxxx /mnt -o username=xxxxxx
+
=Connecting to a Linux SMB Server from a Linux Client=
#***where xxxxxx is your your Matrix username.
+
There are many ways that a Linux client can connect to an SMB server.
#*If the previous step worked, browse your /mnt directory using cd and ls commands and when done use the umount command to unmount your Matrix home directory.
+
 
 +
== Using smbclient ==
 +
*In a full installation you should not need to install samba-client on your host, 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 the host use the "smbclient" command in a terminal window.
 +
smbclient '\\vm2\home' -U <learnid>
 +
*After entering your password you should get a prompt similar to
 +
smb: \>
 +
*Enter the ls command to see a list of the files in your home directory - you may receive the following error.
 +
smb: \> ls
 +
NT_STATUS_ACCESS_DENIED listing \*
 +
*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 the host to mount your home directory
 +
mkdir /tmp/vm2-home
 +
mount -t cifs //vm2/home /tmp/vm2-home -o username=<learnid>
 +
ls /tmp/vm2-home
 +
 
 +
== Using Nautilus to browse Samba shares ==
 +
*Use the "Places" menu from the desktop and open 'Browse Network'.
 +
*From the menu in the side-bar of the files tool, choose 'Connect 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'.
  
===Configuring an SMB Server on Linux===
+
== Using a browser ==
Login to Fedora as joker and open a terminal window.
+
*You can also use a web browser with support for the SMB protocol such as Konqueror.
Use "su -" to become root.
+
**Note that firefox does not have such support.  
Ensure SAMBA is installed:
+
*If Konqueror is not installed then install it with the command:  
  yum install samba
+
yum install kdebase
Create a backup of the file /etc/samba/smb.conf, and create a new one that includes the following:
+
*Start Konqueror, the web/file browser, and in the address bar enter the following
        [global]
+
smb://vm2/home
        workgroup = OPS335
+
*Enter your username and password when prompted.
        server string = "put your real name here without the quotes"
+
*Double click on a file you have some text in.
        encrypt passwords = yes
+
**Open it with gedit, make some changes, and save it.
        smb passwd file = /etc/samba/smbpasswd
+
**When prompted, choose to upload the file.
        hosts allow = 142.204.141.
+
*Close Konqueror.
        ; note: the above line will allow access from the Seneca domain in lab T2107
+
*cat the file on your VM2 to ensure the changes were properly uploaded.
   
 
        [home]
 
        comment = "put your real name here without the quotes"
 
        path = /home/xxxxxxx
 
        valid users = xxxxxxx
 
        ; remember xxxxxxx is your LEARN/MATRIX account name
 
        public = no
 
        writable = yes
 
        printable = no
 
        create mask = 0765
 
You can comment out all other lines in the file.
 
Create a SAMBA password for user xxxxxxx with the command
 
        smbpasswd -a xxxxxxx
 
Test your configuration with the command
 
        testparm
 
You can now start your SAMBA server
 
  /etc/init.d/smb start
 
or
 
  service smb start
 
Test if you have a connection with the command
 
  smbclient -L 142.204.141.yyy -Uxxxxxxx%ppppppp
 
*where 142.204.141.yyy is your Fedora Linux IP address and xxxxxxx is your Matrix account name and ppppppp is your SAMBA password
 
*If the previous command worked, use another PC (Fedora then Windows) to establish a connection with the SMB server on your Fedora Linux machine. This step is important to ensure your SMB server on Linux is working.  
 
**NOTE: If your set up looks correct but you can't connect to your SMB server from the outside then you may need to adjust your firewall to allow SMB connections.
 
From another Linux PC, use the mount command to mount your home directory onto /mnt. Record this command as you'll need it for your lab submission.
 
  
 +
=Connecting to a Linux SMB Server from a Windows Client (Windows 7)=
 +
*Power up a Windows 7 system in the lab and login using your LEARN username and password.
 +
*Add the prerouting and forwarding rules to your Centos host's iptables necessary to redirect samba traffic from outside your network to your VM 2.
 +
*Open up Explorer and Right click on Computer > Map network drive.. > Select a Drive Letter and '\\<ip-address-of-host>\home' > you will then be asked for your username and password.
 +
*You should now be able to browser, drag and drop your files to and from the Windows machine.
 
==Completing the Lab==
 
==Completing the Lab==
Answer the following questions
+
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.
#What is your full name and 9 digit Seneca student ID?
+
 
#Explain how you connected to your SMB server on Linux from a Windows PC. List exactly what you had to do on the Windows PC to test your Linux server.
+
Exploration questions:
 
#What is the purpose of the testparm command?
 
#What is the purpose of the testparm command?
#What is the purpose of the smbclient command?
 
 
#What does SMB stand for? CIFS?
 
#What does SMB stand for? CIFS?
#What does the text inside square brackets in the smb.conf file mean? (e.g., "[homes]").
+
#What does the text inside square brackets in the smb.conf file mean? (e.g., "[home]").
 
#Explain the meaning of the line "create mask = 0765" in the smb.conf file?
 
#Explain the meaning of the line "create mask = 0765" in the smb.conf file?
 
#What does the smbpasswd command do?
 
#What does the smbpasswd command do?
#What was the exact mount command that you used in the last step of the lab?
+
#What did the setsebool command do?

Latest revision as of 17:15, 4 November 2015

Samba - A Windows SMB/CIFS fileserver for UNIX

Important.png
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
 dnf install samba samba-client
  • Create a backup of the file /etc/samba/smb.conf, and create a new one that includes only the following:
[global]
workgroup = <yourlearnid>.org 
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/<learnid>
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>
  • If you need to, you can change a user's password by using the command
smbpasswd <username>
  • Confirm the user you created has been added using the following command
pdbedit -L -v
  • Test and review your configuration with the command
testparm
  • You can now start your Samba server (smb.service) and ensure it will start at boot.
  • Modify the firewall on VM2 to allow samba traffic.
  • Test if you have a connection with the command
smbclient -U <learnid> -L vm2
  • It will show you a list of all available shares.

Connecting to a Linux SMB Server from a Linux Client

There are many ways that a Linux client can connect to an SMB server.

Using smbclient

  • In a full installation you should not need to install samba-client on your host, 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 the host use the "smbclient" command in a terminal window.
smbclient '\\vm2\home' -U <learnid>
  • After entering your password you should get a prompt similar to
smb: \>
  • Enter the ls command to see a list of the files in your home directory - you may receive the following error.
smb: \> ls
NT_STATUS_ACCESS_DENIED listing \*
  • 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 the host to mount your home directory
mkdir /tmp/vm2-home
mount -t cifs //vm2/home /tmp/vm2-home -o username=<learnid>
ls /tmp/vm2-home

Using Nautilus to browse Samba shares

  • Use the "Places" menu from the desktop and open 'Browse Network'.
  • From the menu in the side-bar of the files tool, choose 'Connect 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 the command:
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 to upload the file.
  • Close Konqueror.
  • cat the file on your VM2 to ensure the changes were properly uploaded.

Connecting to a Linux SMB Server from a Windows Client (Windows 7)

  • Power up a Windows 7 system in the lab and login using your LEARN username and password.
  • Add the prerouting and forwarding rules to your Centos host's iptables necessary to redirect samba traffic from outside your network to your VM 2.
  • Open up Explorer and Right click on Computer > Map network drive.. > Select a Drive Letter and '\\<ip-address-of-host>\home' > you will then be asked for your username and password.
  • You should now be able to browser, drag and drop your files to and from the Windows machine.

Completing the Lab

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.

Exploration questions:

  1. What is the purpose of the testparm command?
  2. What does SMB stand for? CIFS?
  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?
  6. What did the setsebool command do?