Difference between revisions of "OPS235 Lab 6 - CentOS7"

From CDOT Wiki
Jump to: navigation, search
 
(42 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
{{Admon/caution|THIS IS AN OLD VERSION OF THE LAB|'''This is an archived version. Do not use this in your OPS235 course.'''}}
 
=LAB PREPARATION=
 
=LAB PREPARATION=
  
 
==Purpose / Objectives of Lab 6==
 
==Purpose / Objectives of Lab 6==
 +
[[Image:network.png|thumb|right|150px|Setting up networks is an essential operation for a system administrator. Maintaining network connectivity and securing the network are also essential operations for a system administrator.]]
 +
  
 
In this lab, you will learn the basics of networking by using your '''Virtual Machines''' and your '''c7host''' machine. You will first set up a virtual private network among those machines. In addition, you will learn to set up '''network names''' (to associate with server's IP Addresses), '''associate network services with port numbers''' for troubleshooting purposes, and setup '''firewall policies''' via the '''iptables''' command.
 
In this lab, you will learn the basics of networking by using your '''Virtual Machines''' and your '''c7host''' machine. You will first set up a virtual private network among those machines. In addition, you will learn to set up '''network names''' (to associate with server's IP Addresses), '''associate network services with port numbers''' for troubleshooting purposes, and setup '''firewall policies''' via the '''iptables''' command.
Line 66: Line 69:
 
# Make certain that <u>'''ALL'''</u> virtual machines are powered off.
 
# Make certain that <u>'''ALL'''</u> virtual machines are powered off.
 
# In the Virtual Machine Manager dialog box, Select '''Edit'''-> '''Connection Details'''.
 
# In the Virtual Machine Manager dialog box, Select '''Edit'''-> '''Connection Details'''.
# In the '''c6host Connection Details''' dialog box, select the '''Virtual Networks''' tab
+
# In the '''c7host Connection Details''' dialog box, select the '''Virtual Networks''' tab
 
# Disable the default configuration from starting at boot by '''<u>deselecting</u>''' '''Autostart (on boot)''' check-box and click the '''Apply''' button.
 
# Disable the default configuration from starting at boot by '''<u>deselecting</u>''' '''Autostart (on boot)''' check-box and click the '''Apply''' button.
 
# Then Stop the default network configuration by clicking on the '''stop''' button at the bottom left-side of the dialog box.
 
# Then Stop the default network configuration by clicking on the '''stop''' button at the bottom left-side of the dialog box.
Line 111: Line 114:
 
# When finished, check your settings, and then click the '''Apply''' button.
 
# When finished, check your settings, and then click the '''Apply''' button.
 
# Open a terminal and issue the '''ifconfig''' command to confirm the IP ADDRESS settings change.
 
# Open a terminal and issue the '''ifconfig''' command to confirm the IP ADDRESS settings change.
# '''Repeat the same steps to configure your centos2 VM!!''' Use the IP ADDRESS : '''192.168.235.12''' (but all other settings are identical to centos1 VM network setting).
+
# Verify that '''centos1'''VM is now connected to the VPN by issuing the following command from your '''c7host''' machine:<br><b><code><span style="color:#3366CC;font-size:1.2em;">ping 192.168.235.11</span></code></b>
# Verify that '''centos1''' and '''centos2''' are now connected to the VPM by issuing the following commands from your '''c7host''' machine:<br><br><b><code><span style="color:#3366CC;font-size:1.2em;">ping 192.168.235.11</span></code></b><br><b><code><span style="color:#3366CC;font-size:1.2em;">ping 192.168.235.12</span></code></b>
 
  
 
'''Answer Part 2 observations / questions in your lab log book.'''
 
'''Answer Part 2 observations / questions in your lab log book.'''
Line 118: Line 120:
 
== Part 3: Backing up Only Recent File Changes ==
 
== Part 3: Backing up Only Recent File Changes ==
  
This part is a repeat of part2, except we will be demonstrating how to use the '''find''' command to backup recent changes to files. In this case, we will save date/time stamp information in a file, configure to connect centos2 to the network, run the find command, and prove that the incremental backup worked (showing the files created as a result of the configuration of centos2 to the private network).
+
This part is a repeat of part2, except we will be demonstrating how to use the '''find''' command to backup recent changes to files. In this case, we will save date/time stamp information in a file, configure to connect '''centos2''' to the network, run the '''find''' command, and prove that the incremental backup worked (showing the files created as a result of the configuration of centos1 to the VPN).
  
 
{| width="40%" align="right" cellpadding="10"
 
{| width="40%" align="right" cellpadding="10"
Line 125: Line 127:
 
|}
 
|}
  
# Start the '''centos1''' VM and login
+
# Keep your '''centos1''' VM running (you will need it running later in this lab).
# Before we configure centos1 we should create a timestamp file that can be used to see which files have changed as a result of using the GUI tool. Issue the following command:
+
# Start the '''centos2''' VM and login
 +
# Before we configure centos2 network configuration, we should create a timestamp file that can be used to see which files have changed as a result of using the GUI tool. Issue the following command:
 
#: <b><code><span style="color:#3366CC;font-size:1.2em;">date > /tmp/timestamp</span></code></b>
 
#: <b><code><span style="color:#3366CC;font-size:1.2em;">date > /tmp/timestamp</span></code></b>
# Run the network configuration tool and enter the following static configuration in the same way that you configured '''centos2'''.
+
# Run the network configuration tool and enter the following static configuration in the same way that you configured '''centos1'''.
#* IP Address: '''192.168.235.11'''
+
#* IP Address: '''192.168.235.12'''
 
#* Subnetmask: '''255.255.255.0'''
 
#* Subnetmask: '''255.255.255.0'''
 
#* Default Gateway: '''192.168.235.1'''
 
#* Default Gateway: '''192.168.235.1'''
Line 135: Line 138:
 
# Save and exit the network configuration tool.
 
# Save and exit the network configuration tool.
 
# You may have to restart the network using the correct command.
 
# You may have to restart the network using the correct command.
# Verify the configuration by pinging centos host ('''192.168.235.1''') and centos2 ('''192.168.235.12''')
+
# Verify the configuration by pinging the VMs and c7host using their IP addresses.
#We will now create an '''Incremental Backup'''.
+
# We will now create an '''Incremental Backup'''. Run the following Linux command as root:
#Run the following Linux command:
 
 
#: <b><code><span style="color:#3366CC;font-size:1.2em;">find /etc -newer /tmp/timestamp &gt; /root/netcfg.lst</span></code></b>
 
#: <b><code><span style="color:#3366CC;font-size:1.2em;">find /etc -newer /tmp/timestamp &gt; /root/netcfg.lst</span></code></b>
 
#View the '''/root/netcfg.lst''' file. What does it contain?</li>
 
#View the '''/root/netcfg.lst''' file. What does it contain?</li>
Line 161: Line 163:
 
Our centos3 VM is a '''text-based only''' system, thus we cannot use a graphical tool to configure centos3 to connect to our private network. Therefore we will learn how to perform this task by using command-line tools.
 
Our centos3 VM is a '''text-based only''' system, thus we cannot use a graphical tool to configure centos3 to connect to our private network. Therefore we will learn how to perform this task by using command-line tools.
  
# Start '''centos3''' VM and login as root
+
# Leave your '''centos1''' and '''centos2''' VM running, but start your '''centos3''' VM, login, and su to '''root'''.
# Use the command <code>ifconfig</code> to list active interfaces, you should see one with a name of <code>eth0</code> or a similar name.
+
# Use the command '''ifconfig''' to list active interfaces, you should see one with a name of '''eth0''' or a similar name.
 
# To configure your card with a static address use the following command:
 
# To configure your card with a static address use the following command:
 
#:<b><code><span style="color:#3366CC;font-size:1.2em;">ifconfig eth0 192.168.235.13 netmask 255.255.255.0</span></code></b>
 
#:<b><code><span style="color:#3366CC;font-size:1.2em;">ifconfig eth0 192.168.235.13 netmask 255.255.255.0</span></code></b>
 
# To configure a default gateway for that interface enter the command:
 
# To configure a default gateway for that interface enter the command:
 
#: <b><code><span style="color:#3366CC;font-size:1.2em;">route add default gw 192.168.235.1</span></code></b>
 
#: <b><code><span style="color:#3366CC;font-size:1.2em;">route add default gw 192.168.235.1</span></code></b>
# To configure a DNS server for this VM, edit the file <code>/etc/resolv.conf</code>. Change the <code>nameserver</code> line to be:
+
# To configure a DNS server for this VM, edit the file '''/etc/resolv.conf'''. Change the nameserver line to read:
#: <b><code><span style="color:#3366CC;font-size:1.2em;">nameserver 192.168.235.1</span></code></b>
+
#: <b>nameserver 192.168.235.1</b>
# Confirm your settings work by doing the following:
+
# Save your editing session.
 +
# Confirm your settings work by doing the following (you might need to do the steps '''3''' and '''4''' a few times before it works; keep checking with the commands below and wait a bit before each attempt):
 
#: <b><code><span style="color:#3366CC;font-size:1.2em;">ifconfig</span></code></b>
 
#: <b><code><span style="color:#3366CC;font-size:1.2em;">ifconfig</span></code></b>
 
#:<b><code><span style="color:#3366CC;font-size:1.2em;">route -n</span></code></b>
 
#:<b><code><span style="color:#3366CC;font-size:1.2em;">route -n</span></code></b>
#: <b><code><span style="color:#3366CC;font-size:1.2em;">ping</span></code></b> (your other VM's and centos host)
+
#: <b><code><span style="color:#3366CC;font-size:1.2em;">ping</span></code></b> (your other VM's and c7host)
#: <b><code><span style="color:#3366CC;font-size:1.2em;">ssh</span></code></b> ( to your matrix account to test your DNS)
+
#: <b><code><span style="color:#3366CC;font-size:1.2em;">ssh</span></code></b> ( to your Seneca's Matrix account to test your DNS)
 
# Restart the <code>centos3</code> VM, or just wait a few minutes.
 
# Restart the <code>centos3</code> VM, or just wait a few minutes.
 
# Login and test your configuration again. What happened?
 
# Login and test your configuration again. What happened?
# While we can configure network settings from the command line those settings are not persistent. To configure persistent network configurations we need to edit the configuration files. #:* Change to the '''/etc/sysconfig/network-scripts''' directory on <code></code><br>[[Image:new-network-config.png|thumb|300px|right|This diagram should show the newer network configuration of your '''c7host''' machine in relation to your '''Virtual Machines'''.]]
+
# While we can configure network settings from the command line those settings are not persistent. To configure persistent network configurations we need to edit the configuration files.
# List the contents of the directory and you should see 2 different types of files, network config scripts and network configuration files.
+
# Change to the '''/etc/sysconfig/network-scripts''' directory<br>[[Image:new-network-config.png|thumb|300px|right|This diagram should show the newer network configuration of your '''c7host''' machine in relation to your '''Virtual Machines'''.]]
 +
# List the contents of this directory. You should see 2 different types of files, network config scripts and network configuration files.
 
# Look for the configuration file for your original interface, it should be named '''ifcfg-eth0'''
 
# Look for the configuration file for your original interface, it should be named '''ifcfg-eth0'''
 
# Edit the new file for you interface and give it the following settings (or create a brand new file, might be easier than editing the old one):
 
# Edit the new file for you interface and give it the following settings (or create a brand new file, might be easier than editing the old one):
Line 184: Line 188:
 
#::NETMASK="255.255.255.0"
 
#::NETMASK="255.255.255.0"
 
#::GATEWAY="192.168.235.1"
 
#::GATEWAY="192.168.235.1"
#::HWADDR="52:54:00:3f:5c:fa" <-- '''use the MAC address for YOUR interface
+
#::HWADDR="52:54:00:3f:5c:fa" <-- '''DO NOT COPY THIS VALUE! Use MAC address for YOUR interface using:''' <code><span style="color:#3366CC;font-size:1.2em;">ifconfig eth0</span></code>
 
#::DNS1="192.168.235.1" '''
 
#::DNS1="192.168.235.1" '''
 
#::BOOTPROTO="static"
 
#::BOOTPROTO="static"
Line 196: Line 200:
  
 
'''Answer Part 4 observations / questions in your lab log book.'''
 
'''Answer Part 4 observations / questions in your lab log book.'''
 
  
 
=INVESTIGATION 2: VIRTUAL NETWORKING ENVIRONMENT TWEAKS AND OTHER USEFUL UTILITIES=
 
=INVESTIGATION 2: VIRTUAL NETWORKING ENVIRONMENT TWEAKS AND OTHER USEFUL UTILITIES=
Line 320: Line 323:
 
<li>This entry in the OUTPUT policy will therefore log all packets being sent out of the machine.</li>
 
<li>This entry in the OUTPUT policy will therefore log all packets being sent out of the machine.</li>
 
<li>Try to access the Internet again.  Because the policies have been set to DROP, you should be unsuccessful.  However, every packet of data that your PC attempted to send out was logged.  Let's have a look at the log file and analyze the data:<br><b><code><span style="color:#3366CC;font-size:1.2em;">tail /var/log/messages</span></code></b></li>
 
<li>Try to access the Internet again.  Because the policies have been set to DROP, you should be unsuccessful.  However, every packet of data that your PC attempted to send out was logged.  Let's have a look at the log file and analyze the data:<br><b><code><span style="color:#3366CC;font-size:1.2em;">tail /var/log/messages</span></code></b></li>
<li>This command shows us the last 10 lines of the file.  While there are many things being logged to this file, the last thing we did was try to access the Internet so we should be able to see the data we need.  Look for a line that looks similar to the following:<br /><blockquote><code>Mar  3 09:21:03 koala-laptop kernel: [90775.407304] IN= OUT=wlan0 SRC=192.168.1.107 DST=66.249.90.104 LEN=1470 TOS=0x00 PREC=0x00 TTL=64 ID=19752 DF PROTO=TCP SPT=45431 DPT=80 WINDOW=108 RES=0x00 ACK PSH URGP=0</code></blockquote></li>
+
<li>This command shows us the last 10 lines of the file.  While there are many things being logged to this file, the last thing we did was try to access the Internet so we should be able to see the data we need.  Look for a line that looks similar to the following:<br /><blockquote><code>Jun 24 12:41:26 c7host kernel: IN= OUT=lo SRC=127.0.0.1 DST=127.0.0.1 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=16442 DF PROTO=TCP SPT=57151 DPT=5902 WINDOW=1024 RES=0x00 ACK URGP=0</code></blockquote></li>
 
<li>Your IP, host names and date will be different, but the one thing that should be the same is the DPT=80 value.</li>
 
<li>Your IP, host names and date will be different, but the one thing that should be the same is the DPT=80 value.</li>
 
<li>When your computer tried to send OUT a request to connect to the Internet using the WWW, the computer used a destination port of 80.  This is the standard port for the WWW.  Because we have set the default policy to DROP it drops these packets.  The problem is we are dropping all packets.  What if we just want to drop the WWW packets?</li>
 
<li>When your computer tried to send OUT a request to connect to the Internet using the WWW, the computer used a destination port of 80.  This is the standard port for the WWW.  Because we have set the default policy to DROP it drops these packets.  The problem is we are dropping all packets.  What if we just want to drop the WWW packets?</li>
Line 333: Line 336:
 
<li>Once you have confirmed that ssh is running on the host machine, insert an iptables rule on the host machine to prevent access to the ssh server from all VM's on the virtual network.</li>
 
<li>Once you have confirmed that ssh is running on the host machine, insert an iptables rule on the host machine to prevent access to the ssh server from all VM's on the virtual network.</li>
 
<li>Confirm that your rule works by testing from your VM's</li>
 
<li>Confirm that your rule works by testing from your VM's</li>
<li>Does iptables close the port? Check using <code>netstat</code></li>
+
<li>Does iptables close the port? Check using '''netstat'''</li>
 
<li>Now insert a rule on the CentOS host that would ACCEPT connections from the centos2 VM only.</li>
 
<li>Now insert a rule on the CentOS host that would ACCEPT connections from the centos2 VM only.</li>
 
<li>Fully test your configuration.</li>
 
<li>Fully test your configuration.</li>
Line 340: Line 343:
 
=== Making iptables Policies Persistent ===
 
=== Making iptables Policies Persistent ===
  
It should be noted that all of the commands that we do here with iptables will not be persistent unless you have your configuration. That means if you re-boot, the default iptables configuration will be loaded. When your iptables service starts or at boot time it has to load the rules from the file '''/etc/sysconfig/iptables'''.
+
It should be noted that all of the commands that we do here with iptables will not be persistent unless you have your configuration. That means if you re-boot, the default iptables configuration will be loaded. When your iptables service starts or at boot time it has to load the rules from the file '''/etc/sysconfig/iptables-config'''.
  
 
The final section below teaches you to make your iptables settings permanent.
 
The final section below teaches you to make your iptables settings permanent.
  
# Make a backup of the file '''/etc/sysconfig/iptables'''
+
# Make a backup of the file '''/etc/sysconfig/iptables''' by issuing the command:<br><b><code><span style="color:#3366CC;font-size:1.2em;">iptables-save > /etc/sysconfig/iptables.bk</span></code></b>
# Examine the file to see how rules are added.
+
#To make the iptables rules '''persistent''' (i.e. keeps rules when system restarts), you issue the command: <br><b><code><span style="color:#3366CC;font-size:1.2em;">iptables-save > /etc/sysconfig/iptables</span></code></b>
# Issue the command: <b><code><span style="color:#3366CC;font-size:1.2em;">iptables-save > /etc/sysconfig/iptables</span></code></b> to save the rules you added with the iptables command, above.
+
# Verify that the file  '''/etc/sysconfig/iptables''' exists.
# Verify that the file  ''''/etc/sysconfig/iptables''' was updated with your new rules.
 
 
# Restart your iptables service and test your configuration.
 
# Restart your iptables service and test your configuration.
  
Line 359: Line 361:
 
'''Arrange proof of the following on the screen:'''
 
'''Arrange proof of the following on the screen:'''
  
<ol><li><span style="color:green;font-size:1.5em;">&#x2713;</span> '''centos1''' VM:<ul><li>Contents of '''/tmp/lab6''' directory.</li></ul><li><span style="color:green;font-size:1.5em;">&#x2713;</span> '''centos2''' VM:<ul><li>'''ssh''' from centos2 to the CentOS host</li></ul></li></li><li><span style="color:green;font-size:1.5em;">&#x2713;</span> '''<u>All</u> VMs''':<ul><li>'''ifconfig''' information</li><li>Contents of '''/etc/host''' file</li></ul></li><li><span style="color:green;font-size:1.5em;">&#x2713;</span>'''c7host''' machine<ul><li>'''arp''' cache information</li><li>Contents of '''/etc/host''' file</li><li>Proof of backup</li><li>A list of your '''iptables''' rules</li></ul></li><li><span style="color:green;font-size:1.5em;">&#x2713;</span> '''Lab6''' log-book filled out.</li></ol>
+
<ol><li><span style="color:green;font-size:1.5em;">&#x2713;</span> '''centos2''' VM:<blockquote><ul><li>Contents of '''/tmp/lab6''' directory.</li><li>'''ssh''' from centos2 to the CentOS host</li></ul></blockquote></li></li><li><span style="color:green;font-size:1.5em;">&#x2713;</span> '''<u>All</u> VMs''':<blockquote><ul><li>'''ifconfig''' information</li><li>Contents of '''/etc/hosts''' file</li></ul></blockquote></li><li><span style="color:green;font-size:1.5em;">&#x2713;</span>'''c7host''' machine<blockquote><ul><li>'''arp''' cache information</li><li>Contents of '''/etc/hosts''' file</li><li>Proof of backup</li><li>A list of your '''iptables''' rules</li></ul></blockquote></li><li><span style="color:green;font-size:1.5em;">&#x2713;</span> '''Lab6''' log-book filled out.</li></ol>
 
 
  
= Preparing for Quizzes =
+
== Practice For Quizzes, Tests, Midterm &amp; Final Exam ==
  
 
# What is a port?  
 
# What is a port?  

Latest revision as of 12:16, 27 November 2019

Stop (medium size).png
THIS IS AN OLD VERSION OF THE LAB
This is an archived version. Do not use this in your OPS235 course.

LAB PREPARATION

Purpose / Objectives of Lab 6

Setting up networks is an essential operation for a system administrator. Maintaining network connectivity and securing the network are also essential operations for a system administrator.


In this lab, you will learn the basics of networking by using your Virtual Machines and your c7host machine. You will first set up a virtual private network among those machines. In addition, you will learn to set up network names (to associate with server's IP Addresses), associate network services with port numbers for troubleshooting purposes, and setup firewall policies via the iptables command.

Main Objectives

  1. Configure a private (virtual) network for your VMs and your c7host machine
  2. Configure network interfaces for your Virtual Machines using both graphical and command-line utilities.
  3. Use local hostname resolution to resolve simple server names with their corresponding IP Addresses
  4. Backup more recent files (eg. incremental backup) using the find command and a date/time-stamp file
  5. Use common networking utilities to associate network services with port numbers for troubleshooting purposes
  6. Gain initial exposure to the iptables command used to configure and maintain a firewall for protection and troubleshooting
  7. Configure iptables to allow/disallow/forward different types of network traffic


Minimum Required Materials

Removable Hard Disk Pack (SATA)
USB key
(for backups)
Lab6 Log Book

My Toolkit (CLI Reference)

Networking Utilities: Additional Utilities:

INVESTIGATION 1: CONFIGURING A VIRTUAL PRIVATE NETWORK

For the remainder of this course, we will focus on networking involving our VMs and our c7host machine. This lab will focus on setting up a virtual private network (VPN), connecting our VMs and c7host machine to the VPN, and configuring our VPN to make more convenient to use, troubleshoot and protect. Lab 7 will focus more on configuring SSH and making access to the VPN more secure. Finally, lab 8 will focus on configuring the network for fixed workstations, mobile devices, or both at the same time.

There are several reasons for creating VPNs. The main reason is to safely connect servers together (i.e. to safely limit but allow share information among computer network users). This allows for a secure connection of computers yet controlling access to and monitoring (protecting) access to permitted users (discussed in more depth in lab7).


Part 1: Configuring a Private Network (Via Virtual Machine Manager)

This diagram shows the current network configuration of your c7host machine in relation to your Virtual Machines. In this section, you will be learning to change the default network settings for both your c7host machine and VMs to belong to a virtual network using fixed IP Addresses.

If we are going to setup a private network, we must do 2 major operations: First, define a new private network in the Virtual Manager application; and second, configure each of our VMs to connect to this new private network. In Part 1, we will be perform the first operation. In parts 2, 3, and 4, we will be performing the second operation for all VMS (graphical and command-line).


  1. Perform this section in your c7host machine.

    NOTE: Before configuring our network we want to turn off dynamic network configuration for our Virtual Machines by turning off the "default" virtual network. We will then define our virtual private network. Follow the steps in order to perform these operations.

  2. Make certain that ALL virtual machines are powered off.
  3. In the Virtual Machine Manager dialog box, Select Edit-> Connection Details.
  4. In the c7host Connection Details dialog box, select the Virtual Networks tab
  5. Disable the default configuration from starting at boot by deselecting Autostart (on boot) check-box and click the Apply button.
  6. Then Stop the default network configuration by clicking on the stop button at the bottom left-side of the dialog box.
  7. Click the add button (the button resembles a "plus sign") to add a new network configuration.
  8. Give your new network a name (i.e. network1) then click the Forward button.
  9. In the next screen, enter in the new network IP address space:
    192.168.235.0/24
  10. Disable DHCP4 by deselecting the check box and click the Forward button twice (accepting the defaults).
  11. Enable Network Forwarding by Selecting Forwarding to physical network, the destination should be Any physical device and the mode should be NAT
  12. Proceed with changes, and click Finish.
  1. We will now reconfigure each of our VMs to use our new virtual network network1
    1. Let's start with our centos1 VM. Double-click on your centos1 VM, but instead of running the VM, click on the view menu, and select: Details
      (Note: the Virtual Machine window will appear - do not start virtual machine)
    2. In the left pane of the Virtual Machine window, select NIC: and note that this NIC is on the "default" virtual network
    3. Change it to Virtual Network network1: NAT (i.e. the VPN that you just created) and click the Apply button.
  2. Repeat the same steps for your centos2 and centos3 VMs!

Answer Part 1 observations / questions in your lab log book.


Part 2: Configuring VM Network Setup Graphically (system-config-network)

For Parts 2 and 3 of this investigation, we will be using a graphical tool to connect our centos1 and centos2 VMs to our private network.

Although the private network has been setup via the Virtual Machine Manager, each virtual machine requires to change its own network setting individually (either graphically or by command line).
  1. On your c7host machine, run ifconfig and make note of the IP address assigned to the virbr1 (i.e. "Virtual Bridge) interface. This will be the default gateway and DNS server for your VMs.
  2. Start your centos1 VM and login.
  3. Within your centos1 VM, click Applications menu, then select System Tools, and then Settings.
  4. In the Settings Dialog Box, click on the Network icon.
  5. For the Wired connection, click the settings button (The icon appears as a gear located at the bottom right-hand corner of the dialog box).
  6. Select the IPv4 tab. Change Address from Automatic (DHCP) to Manual.
  7. Edit the existing wired connection, using the information displayed below:
  8. In the IPv4 Settings tab change the method from "Automatic (DHCP)" to "Manual".
  9. In the Addresses section, enter the following information:
    IP Address: 192.168.235.11
    Subnet Mask: 255.255.255.0
    Default Gateway: The IP address of virbr1 on your centos host.
  10. Click on the DNS' field and add The IP address (virbr1 on your centos host) as the primary DNS server.
  11. When finished, check your settings, and then click the Apply button.
  12. Open a terminal and issue the ifconfig command to confirm the IP ADDRESS settings change.
  13. Verify that centos1VM is now connected to the VPN by issuing the following command from your c7host machine:
    ping 192.168.235.11

Answer Part 2 observations / questions in your lab log book.

Part 3: Backing up Only Recent File Changes

This part is a repeat of part2, except we will be demonstrating how to use the find command to backup recent changes to files. In this case, we will save date/time stamp information in a file, configure to connect centos2 to the network, run the find command, and prove that the incremental backup worked (showing the files created as a result of the configuration of centos1 to the VPN).

Note.png
Backing up Files
One very important aspect of system admin is performing backups. There are many methods for backing up the data on a a computer system. The following is an example of a common backup system used in Business Unix/Linux systems:

Full Backup: Backup all specified files (eg. configuration, data files, etc)
Incremental Backup: Backup of only files that have changed since last (full) backup.
  1. Keep your centos1 VM running (you will need it running later in this lab).
  2. Start the centos2 VM and login
  3. Before we configure centos2 network configuration, we should create a timestamp file that can be used to see which files have changed as a result of using the GUI tool. Issue the following command:
    date > /tmp/timestamp
  4. Run the network configuration tool and enter the following static configuration in the same way that you configured centos1.
    • IP Address: 192.168.235.12
    • Subnetmask: 255.255.255.0
    • Default Gateway: 192.168.235.1
    • DNS Server: 192.168.235.1
  5. Save and exit the network configuration tool.
  6. You may have to restart the network using the correct command.
  7. Verify the configuration by pinging the VMs and c7host using their IP addresses.
  8. We will now create an Incremental Backup. Run the following Linux command as root:
    find /etc -newer /tmp/timestamp > /root/netcfg.lst
  9. View the /root/netcfg.lst file. What does it contain?</li>
  10. Create a new directory called: /tmp/lab6
Idea.png
Tip
You can create a Bash Shell script file using the find command above, give the shell script executable permissions, and use the crontab command to schedule running this script on a periodic basis.
  1. Issue the following commands:
    find /etc -newer /tmp/timestamp -exec cp {} /tmp/lab6 \;
  2. View the contents of the /tmp/lab6 directory. What does it contain?


Answer Part 3 observations / questions in your lab log book.

Part 4: Configuring VM Network Setup via Command Line (centos3)

Our centos3 VM is a text-based only system, thus we cannot use a graphical tool to configure centos3 to connect to our private network. Therefore we will learn how to perform this task by using command-line tools.

  1. Leave your centos1 and centos2 VM running, but start your centos3 VM, login, and su to root.
  2. Use the command ifconfig to list active interfaces, you should see one with a name of eth0 or a similar name.
  3. To configure your card with a static address use the following command:
    ifconfig eth0 192.168.235.13 netmask 255.255.255.0
  4. To configure a default gateway for that interface enter the command:
    route add default gw 192.168.235.1
  5. To configure a DNS server for this VM, edit the file /etc/resolv.conf. Change the nameserver line to read:
    nameserver 192.168.235.1
  6. Save your editing session.
  7. Confirm your settings work by doing the following (you might need to do the steps 3 and 4 a few times before it works; keep checking with the commands below and wait a bit before each attempt):
    ifconfig
    route -n
    ping (your other VM's and c7host)
    ssh ( to your Seneca's Matrix account to test your DNS)
  8. Restart the centos3 VM, or just wait a few minutes.
  9. Login and test your configuration again. What happened?
  10. While we can configure network settings from the command line those settings are not persistent. To configure persistent network configurations we need to edit the configuration files.
  11. Change to the /etc/sysconfig/network-scripts directory
    This diagram should show the newer network configuration of your c7host machine in relation to your Virtual Machines.
  12. List the contents of this directory. You should see 2 different types of files, network config scripts and network configuration files.
  13. Look for the configuration file for your original interface, it should be named ifcfg-eth0
  14. Edit the new file for you interface and give it the following settings (or create a brand new file, might be easier than editing the old one):
    DEVICE="eth0"
    IPADDR="192.168.235.13"
    NETMASK="255.255.255.0"
    GATEWAY="192.168.235.1"
    HWADDR="52:54:00:3f:5c:fa" <-- DO NOT COPY THIS VALUE! Use MAC address for YOUR interface using: ifconfig eth0
    DNS1="192.168.235.1"
    BOOTPROTO="static"
    ONBOOT="yes"
    NM_CONTROLLED="yes"
    IPV6INIT="no"
  15. Save the file and then restart the network connection by issuing the commands: ifdown eth0 and then ifup eth0
  16. Verify your configuration as you did before.
  17. Restart the centos3 VM.
  18. Login and attempt to ssh to your matrix account to verify the settings.

Answer Part 4 observations / questions in your lab log book.

INVESTIGATION 2: VIRTUAL NETWORKING ENVIRONMENT TWEAKS AND OTHER USEFUL UTILITIES

Connecting a private network is an important task, but a system administrator also needs to "tweak" the network to make it convenient to use, make it safer from unauthorized access, and use troubleshooting utilities to help troubleshoot network connectivity problems as they occur. This investigation will expose you to some useful tricks and utilities to help accomplish this task.

NOTE: Lab 7 requires that you understand these concepts and have a good general understanding how to use these troubleshooting utilities (like netstat and iptables).


Part 1: Using Local Hostname Resolution

Note.png
Hosts files vs. the Domain Name System
On large public networks like the Internet or even large private networks we use a network service called Domain Name System (DNS) to resolve the human friendly hostnames like centos.org to the numeric addresses used by the IP protocol. On smaller networks we can use the /etc/hosts on each system to resolve names to addresses.

After setting up a private network, it can be hard to try to remember IP addresses. In this section, we will setup your network to associate easy-to-remember server names with IP ADDRESSES.

  1. Complete this investigation on all of your VMs and the c7host machine.
  2. Use the hostname and ifconfig commands on your c7host machine and all of your 3 VM's to gather the information needed to configure the /etc/hosts file on all of your Linux systems.
  3. Edit the /etc/hosts file on each of the virtual machines and host machine. Add the following contents to the bottom of the /etc/hosts file:

    192.168.235.1 c7host
    192.168.235.11 centos1
    192.168.235.12 centos2
    192.168.235.13 centos3

  4. Confirm that each host can ping all three of the other hosts by name.

Answer Part 1 observations / questions in your lab log book.

Part 2: Obtaining MAC (Hardware) addresses on Network Computers

Note.png
Obtaining Remote MAC Addresses
The term MAC address stands for Media Access Control address, which provides a unique ID to prevent confusion among computer systems within a network. While we use 32bit IP addresses to communicate over an internet, on the local ethernet network packets are delivered to a 48bit hardware address (sometimes called a MAC address). The ARP protocol resolves 32bit IP addresses to 48bit MAC addresses by using a broadcast and caching the results. We can examine the ARP cache to get the MAC addresses of other computers to solve problems involving MAC addresses (such as Wake Up on Lan).

When our CentOS system provides any services on a network, those services are accessible through a port number. All network services are configured to be accessed on a particular port number. By examining which ports are active on our system we can know what services (and points of attack) are available on our system. The ability to examine this information is important for troubleshooting network services and securing our systems. One great tool for this is the netstat command.

  1. Perform this section on your c7host machine.
  2. On the centos host ping each of your VM's
  3. Examine the contents of the ARP cache by using the command: arp
  4. Check the contents of the cache again by using the command: arp -n
  5. What was the difference in output? For what other command did the option -n have a similar effect?
  6. On your CentOS host execute the command: netstat -at
  7. This command will list all active TCP ports. Note the state of your ports.
  8. TCP is a connection oriented protocol that uses a handshaking mechanism to establish a connection. Those ports that show a state of LISTEN are waiting for connection requests to a particular service. For example you should see the ssh service in a LISTEN state as it is waiting for connections.
  9. From one of your VM's login to your host using ssh
  10. On the CentOS host rerun the command and in addition to the LISTEN port it should list a 2nd entry with a state of ESTABLISHED. This shows that there is a current connection to your ssh server.
  11. Exit your ssh connection from the VM and rerun the command on the CentOS host. Instead of ESTABLISHED it should now show a state of CLOSE_WAIT. Indicating that the TCP connection is being closed.
  12. On your CentOS host try the command netstat -atn. How is this output different?
  13. Without the -n option netstat attempts to resolve IP addresses to host names (using /etc/hosts) and port numbers to service names (using /etc/services)
  14. Examine the /etc/services file and find which ports are used for the services: ssh, sftp, http
  15. Now execute the command netstat -au What is the difference between the options: -at and -au?
  16. When examining UDP ports why is there no state?

Answer Part 2 observations / questions in your lab log book.


Part 3: Introduction to Firewalls: iptables

Note.png

Iptables is the built-in firewall for LINUXconsisting of a list of rules (or "tables of policies"). If data matches a specified policy, it must “jump” to an existing condition. Simple conditions include ACCEPT, DROP and LOG but there are also more complex conditions that can be applied and there is even the option to create your own conditions.

When using iptables, the Filter table is important because it contains the following essential chains:

INPUT:
Data is checked against the INPUT chain to see if it is allowed into the PC.

OUTPUT:
Data is checked against the OUTPUT chain to see if it is allowed to go outside of the PC.

FORWARD:
PC is acting as a router it does not actually send or receive data, it FORWARDS data from one machine to another.

Since Linux servers may be connected to the Internet, it is very important to run a firewall to control what comes into the computer system, what goes out of the computer system, and what may be forwarded to another computer. Linux uses the command called iptables to set the firewall rules. Although graphical programs can be used to configure iptables, it is important for students of Linux Administration to learn how to use the iptables command for more complex and automated configuration via shell scripting.


  1. For the remainder of this section, use your c7host machine.
  2. As root on the CentOS host enter the following commands at the prompt:
    iptables -L
    iptables -F
  3. What did those commands issued above do? Refer to the manpages for iptables if not certain.
  4. Set the default policy for the INPUT chain to DROP by issuing the command:
    iptables -P INPUT DROP
  5. Now try on your own to change the default policies for the OUTPUT and FORWARD chains to DROP
  6. Write the commands you executed in your lab book.
  7. Can we mix these policies? Try to set the FORWARD chain policy to ACCEPT. Did it work?

Testing iptables Policies

  1. Execute the command iptables -L and check that the policies on your INPUT and OUTPUT chain are set to DROP
  2. Open a browser and attempt to access the Internet. Were you successful?
  3. Using the commands you have learned so far, change the policies on the INPUT and OUTPUT chains to ACCEPT
  4. Open your browser and attempt to access the Internet again. Were you successful?
  5. Change the policies on all of the chains to DROP
Note.png
Interpreting iptables commands
Here is the command you issue in step #15:
iptables -I OUTPUT  -p tcp -s0/0 -d 0/0 --dport 80 -j DROP

Which can be read like this: Insert a rule into the iptables OUTPUT chain that will match any tcp packet, with any a source address, any destination address, and a deistination port of 80. Any packet that matches will be dropped.

Let's break down the command to see how it works:

The -I switch tells iptables to INSERT this line into the OUTPUT policy. This means it will be the first line in the policy. If we used a -A switch it would have appended the line and it would be the last line of the policy. If you are writing complex iptables rules where multiple matches can occur, it is important that the lines go in the right order. If you follow the -I with a number, the new rule will be inserted at that location in the chain (for example, -I 3 OUTPUT will insert the rule into the 3rd position in the OUTPUT chain, moving the existing rules down as necessary (the old rule #3 will become the new rule #4, for example).

The -p tcp switch tells iptables to only match TCP packets. Alternately, the protocol could be set to udp, icmp, or all.

The -s0/0 switch specifies the source IP address. 0/0 means a source address of “anywhere.” this has been put into the lab because your ip address will change because it is dynamically assigned. You can change this value if you want to the IP address that has been specifically assigned to your PC.

The -d0/0 switch specifies the destination address. It makes sense that this address is set to “anywhere” because if we want to block all requests to the WWW, we will never know the specific IP address of web server that is trying to be accessed.

The switch --dport 80 tells iptables to look at the destination port in the packet and see if it is equal to 80. Alternately, you can filter based on source addresses using the --sport switch.

-j means jump to a particular target – Basic targets are ACCEPT, DROP, REJECT, and LOG. The available targets depend on which table contains the chain.

DROP means drop the packet – make it disappear - and do not continue processing rules. REJECT is similar, but causes an error packet to be sent back to the source host. ACCEPT causes the packet to be processed. LOG causes an entry to be made in the system logs showing that the packet was processed. Note that the LOG target is the only one that does not stop rule-checking in the chain - so you can log a packet with one rule, and then use a later rule in the chain to DROP, REJECT, or ACCEPT it.

  1. In the OUTPUT chain, add the following rule:
    iptables -A OUTPUT -j LOG
  2. The above rule tells iptables to log packets and relevant information to /var/log/messages.
  3. This entry in the OUTPUT policy will therefore log all packets being sent out of the machine.
  4. Try to access the Internet again. Because the policies have been set to DROP, you should be unsuccessful. However, every packet of data that your PC attempted to send out was logged. Let's have a look at the log file and analyze the data:
    tail /var/log/messages
  5. This command shows us the last 10 lines of the file. While there are many things being logged to this file, the last thing we did was try to access the Internet so we should be able to see the data we need. Look for a line that looks similar to the following:
    Jun 24 12:41:26 c7host kernel: IN= OUT=lo SRC=127.0.0.1 DST=127.0.0.1 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=16442 DF PROTO=TCP SPT=57151 DPT=5902 WINDOW=1024 RES=0x00 ACK URGP=0
  6. Your IP, host names and date will be different, but the one thing that should be the same is the DPT=80 value.
  7. When your computer tried to send OUT a request to connect to the Internet using the WWW, the computer used a destination port of 80. This is the standard port for the WWW. Because we have set the default policy to DROP it drops these packets. The problem is we are dropping all packets. What if we just want to drop the WWW packets?
  8. Using the commands we already know, change the default policies on all of your chains to ACCEPT.
  9. Open a browser and confirm that you can access the world wide web.
  10. Enter the command:
    iptables -I OUTPUT -p tcp -s0/0 -d 0/0 --dport 80 -j DROP
  11. Try to access the Web. If you have done everything right, you should not have been successful.
  12. After you have completed the test execute the following command:
    iptables -F
  13. Using the information you have learned, try on your own to achieve the same goal as above (block www access to your computer) by using the INPUT chain instead of the OUTPUT chain.
  14. After you have completed this task, flush the iptables again.
  15. Make sure that your ssh server is running on the host machine and try to access it from a virtual machine of your choice.
  16. Once you have confirmed that ssh is running on the host machine, insert an iptables rule on the host machine to prevent access to the ssh server from all VM's on the virtual network.
  17. Confirm that your rule works by testing from your VM's
  18. Does iptables close the port? Check using netstat
  19. Now insert a rule on the CentOS host that would ACCEPT connections from the centos2 VM only.
  20. Fully test your configuration.

Making iptables Policies Persistent

It should be noted that all of the commands that we do here with iptables will not be persistent unless you have your configuration. That means if you re-boot, the default iptables configuration will be loaded. When your iptables service starts or at boot time it has to load the rules from the file /etc/sysconfig/iptables-config.

The final section below teaches you to make your iptables settings permanent.

  1. Make a backup of the file /etc/sysconfig/iptables by issuing the command:
    iptables-save > /etc/sysconfig/iptables.bk
  2. To make the iptables rules persistent (i.e. keeps rules when system restarts), you issue the command:
    iptables-save > /etc/sysconfig/iptables
  3. Verify that the file /etc/sysconfig/iptables exists.
  4. Restart your iptables service and test your configuration.


Answer the Part 3 observations / questions in your lab log book.


LAB 6 SIGN-OFF (SHOW INSTRUCTOR)

Important.png
Time for a new backup, INCLUDING YOUR VIRTUAL HARD DRIVE!
If you have successfully completed this lab, make a new backup of your virtual machines.

Virtual hard-drives created lab5 are image files and may have data changed as a result of performing this lab. Therefore, you need to be backed up this hard disk image as well!.

Arrange proof of the following on the screen:

  1. centos2 VM:
    • Contents of /tmp/lab6 directory.
    • ssh from centos2 to the CentOS host
  2. All VMs:
    • ifconfig information
    • Contents of /etc/hosts file
  3. c7host machine
    • arp cache information
    • Contents of /etc/hosts file
    • Proof of backup
    • A list of your iptables rules
  4. Lab6 log-book filled out.

Practice For Quizzes, Tests, Midterm & Final Exam

  1. What is a port?
  2. What command will set your IP configuration to 192.168.55.22/255.255.255.0 ?
  3. What file contains the systems iptables rules?
  4. What is the difference between UDP and TCP?
  5. What port number is used for DHCP servers?
  6. What is the function of the file /etc/services ?
  7. What is the function of the file /etc/hosts ?
  8. What is the purpose of the file /etc/sysconfig/network-scripts/ifcfg-eth0 ?
  9. What tool is used to show you a list of current TCP connections?