OPS335 Lab 2

From CDOT Wiki
Revision as of 17:50, 9 May 2016 by Peter.callaghan (talk | contribs) (Editing for accuracy.)
Jump to: navigation, search


OBJECTIVE & PREPARATION

In this lab, you will learn how to use iptables to build a simple Linux firewall on your servers.

iptables is a very complex topic. Fortunately, you are not required to become an "iptables expert", but by the end of the course, you should be able to use iptables to properly secure your servers.

You were exposed to iptables in your OPS235 course. You should refer to OPS235 or OPS335 notes or find and use documentation to learn how to complete these tasks. You can also ask your professor or lab assistant during the lab for help when using iptables. Some basic iptables commands are provided in this lab for reference, but it is also essential that you know how to obtain help (man pages and online) in order to become self-reliant.


Important.png
firewalld
In this course, we will be using iptables, not firewalld. Although firewalld can present information in the familiar iptables format, learning both would be too advanced at this point of learning Linux network administration.
In the first labs Prep for Labs, you should have disabled and stopped the firewalld service: .

You can also check the status of the firewalld service by issuing the systemctl command. You can also check if the firewalld service is running by issuing iptables -L and noting a high volume of unexpected output (i.e. "a strange result").

Online Resources

  • Week 3 Notes Recommended to review and understand prior to performing this lab.
  • Overview A excellent concise overview of iptables (ignore diagram).
  • CentOS Wiki Listing of basic commands (not all required to know).

How Firewalls (iptables) Relate to the Labs in this Course

We will use an example of setting up a firewall to secure a web server. You will be installing, configuring, protecting, and maintaining a web-server of one of your VMs in a later lab.


The diagram displayed below shows how iptables can be used with a web-server:


Iptables.png


There are some important things to be aware of in terms of this diagram:

  • There are two sets of IPtables rules (chains) that apply: OUTPUT/INPUT on the client and INPUT/OUTPUT on the server.
    It is important to think about trafic from the perspective from the client as well as the server.
  • Outbound traffic is rarely blocked unless there is a security policy to prevent some kind of traffic.
    Even in that case, that security policy is usually performed on a router.
  • Inbound traffic is of two distinct types. Our diagram shows:
  1. New incoming connections (what you normally think of as inbound traffic): the web server receives a new incoming connection.
  2. Incoming data that client receives as a response from the server: the web page that the server sent back in the diagram above.
The analogy would be like making a telephone call:
  • A NEW packet is like the phone ringing
  • An ESTABLISHED packet is the connection and the packet says "hello", along with any further communication.
  • A RELATED packet would be the same person calling on a second line. (eg. a second connection that is made because of something that happened in the first, like an ftp transfer).
We normally don't want to do anything special for the response. It is safe to assume that a connection that was allowed to be established should be allowed to receive a response. This is accomplished with the following INPUT chain rule that should be there by default on your machines:
ACCEPT     all  --  anywhere             anywhere             state RELATED,ESTABLISHED
  • Rules are applied to: chains (e.g. input/output) and contain information regarding the type of traffic they apply to. For example, protocols (e.g. tcp/udp/icmp), ports (e.g. 22, 80, 443), addresses, and many other things.
  1. For the request, the source port (sport) is 40112 and the destination port (dport) is 80
  2. For the response, the source port is 80 and the destination port is 40112
  3. Since the RELATED,ESTABLISHED rule already exists, we are only concerned about controlling the incoming traffic on the server, which in our example, the chain is: INPUT, the protocol is: tcp, and the destination is: port 80.
  • Basically, most other services work in a similar way as discussed above.

Critical iptables Elements

This may seem like another task to perform, but it is an essential task! You need to "become one" with basic iptables and focus on these important elements on this section, since you will be troubleshooting MANY connection issues with MANY VMs for labs and assignments! You need to become comfortable when using iptables to not only set policy, but troubleshoot and fix mistakes when you set your firewall policies!

... the more you practice and get comfortable with iptables, the quicker you will be able to isolate and fix connection issues...

We don't expect you to become firewall experts, but there are some basics you need to become familiar for this and future labs:

  • What is a chain?
  • Which chain applies to which traffic?
  • What's the default action for a chain and when that applies?
  • What order the rules are executed in?
  • Reading and/or creating a rule for a specific service. That includes a basic understanding of:
    • Ports
    • Protocols

The best way to learn that is to practice.

Record steps, commands, and your observations from this section in your OPS335 lab log-book

INVESTIGATION 1: PREPARATION & GETTING TO KNOW IPTABLES

Confirming Existing Network Connections

Before proceeding with iptables, we should first verify that your host machine and vms can connect with each other. We can also take the opportunity to record some observations which could be used for future labs.

Perform the Following Steps:

  1. Find the MAC address of the virtual network device on your host machine and the IP address assigned to it. Record this information in your lab log book.
  2. Launch all three of your VMs.
  3. For each VM:
    • Login as root.
    • Find the MAC address of the Network Interface and the IP address assigned to it. Record this information on your lab log book.
  4. Change to your host machine, open a terminal window, and perform the following connectivity tests for each vm:

ping -c 1 [ip-of-vm]
ssh [ip-of-vm]

Default vs Updated Firewall Rules for VMs

You should have learned in OPS235 how to view existing iptables rules with the command: iptables -L -v. Although you may assume that this listing of rules should be empty, they may not be!

In fact, several rules were automatically added to your chains because you are using a virtual network. As an exercise, we will determine which of those rules when running a virtual network were added.

Perform the Following Steps:

  1. Leave your VMs running for this section (which seems counter-intuitive).
  2. On your host machine, stop the libvirtd service (refer to systemctl command).
  3. Run iptables -L -v but redirect the output to a text file called before.txt (you will be using this file later).
  4. Restart the iptables service
  5. Re-issue iptables -L -v commands making certain to redirect output to a second file (after.txt). This should provide a listing of the new state of your firewall settings.
  6. You now should have two text files representing the before and after states of your firewall. Compare differences between these two files using the diff command
    (You should have used this tool in ULI101).
  7. Run diff -u before.txt after.txt and figure out how to read the output.
Idea.png
Graphically Compare File Differences
You can also install a graphical tool that makes it much easier to see differences: kompare before.txt after.txt

NOTE: Make certain to run the command as a regular user (not root!).
  1. You can use these tools to compare any two text files, they often come in handy. Note in your lab logbook the iptables rules that were added automatically by the libvirtd service.
  2. Are there any differences between those 2 files? What does this mean if your VMs get disconnected in terms of the firewall rules?
  3. You should notice the virtual machine manager no longer contains the vms. Close and then restart the virtual machine manager. What Happens?
    What are the states of your VMs? Record your observations in your lab logbook.
  4. Close the virtual machine manager application window again
  5. Use the systemctl command to start the libvirtd service.
  6. Now, restart the virtual machine mangaer. What happens? What is the status of your VMs?
  7. What does this mean when you lose your vm connections (including the disruption of the libvirtd service)? Record your observations in your lab logbook.

Practice Setting Firewall Rules

We will run some iptables commands to practice and get a basic understanding of how to set rules.

  1. First, issue an iptables command to set the policy to disable all inbound traffic. Issue an iptables command to list rules for verification.
    The remaining tasks will relate to that same inbound traffic chain.
  2. Issue an iptables command to delete the default ssh rule, and issue another iptables command to verify.
  3. Issue an iptables command to insert the SSH rule in the beginning of the chain. Verify that did what you thought it did, then delete that rule (by number), and verify that it was deleted.
  4. Issue an iptables command to append the SSH rule to the end of the chain, verify, delete that same rule, and verify.
  5. Issue an iptables command to delete the related,established rule. Test your network connectivity between your hosts and vms. What happened?
  6. Issue an iptables command to restore your firewall to its default settings.

Record steps, commands, and your observations in INVESTIGATION 1 in your OPS335 lab log-book

INVESTIGATION 2: BEST PRACTICES & CUSTOMIZED CHAINS

In this investigation, we will use shell scripting to help automate our firewalls, and create our own customized chains for packet filtering.

Best Practices for iptables

Refer to this "best practices" chart when using iptables:

TipExplanation
Always start with the default iptables settingsWhen you install Iptables in CentOS it already has some rules predefined.
You will always get the default rules if you restart the iptables service.
Place your iptables commands (i.e. Rules) within a bash scriptIf you need to reset iptables, then you can run a shell script to quickly apply rules to save time.
Don't Panic if disconnected from a VM Some of the traffic between your host and VirtManager goes through IPtables.
When you mess with IPtables rules on the host, you might end up losing the console connection to the virtual machines.
Don't worry, iptables rules are still running and you can still use them.
If your most recent iptables Rule messes up your systemReload the default rules. You can do that by restarting the iptables and libvirtd services (you can also do that at the beginning of your shell script).
Then run your script with all the working iptables commands that you already finished.
Return to work on creating the rule that didn't work.


Creating Customized Chains

You have the ability to create your own customized chains - you can actually name them!

The purpose of creating your own customized chains is to separate all the rules related to a single service (e.g. SSH, HTTP, FTP, ICMP, etc) from other unrelated rules.


Perform the following steps for your vm1 machine:

  1. Change the default policy on the INPUT and FORWARD chains in the filter table to DROP.
  2. Remove the rules from the INPUT and FORWARD chains that are rejecting all traffic (we are now better protected by the default policy).

    We will now create a new chain in order to create rules just relating to the ssh service:

  3. Create a new chain named MYSSH in the filter table. Refer to notes or other resources to learn now to name a chain.
  4. Add a rule to the INPUT chain of your filter table that sends all ssh traffic (i.e. tcp packets with destination port 22) to your MYSSH chain. Make sure this new rule follows (not preceeds) the RELATED,ESTABLISHED rule, so it doesn't apply to existing connections.
    • Note: Use --jump or -j (not --goto) to move to a target.
  5. Add a rule to your MYSSH chain to accept all traffic on your virtual interface from 192.168.X.0/24 (i.e. your internal network).
  6. Add rules to the end of the MYSSH chain to drop all remaining ssh connections, but to log these denied packets with log level 'info' and log prefix "DENIED BY MYSSH" before doing so.
  7. Issue iptables -L -v to view your firewall rules for your newly-created chain.

    Let's create a new chain to create rules relating only to the ICMP protocol (ping):

  8. Remove the rules in your INPUT chain that are allowing all icmp and ssh traffic.
  9. Make a new chain named MYICMP.
  10. Add a rule to the beginning of the INPUT chain to send ICMP packets to your MYICMP chain.
  11. Find a partner and get the ipaddress and MAC address of their external facing interface. If you don't have a partner - use a virtual machine.
  12. Add a rule to your MYICMP chain that allows ICMP packets coming in from 192.168.X.0/24 (i.e. your internal network).
  13. Add a rule to the beginning of your MYICMP chain that denies ICMP pings originating with MAC address of your partner's machine.
  14. Add a rule to the beginning of your MYICMP chain that denies ICMP pings originating with IP address of your partner's machine.
  15. Issue iptables -L -v to view your firewall rules for your newly-created chains.
  16. Once you are happy with how your firewall works - make a backup of the original default rules:
    cp /etc/sysconfig/iptables /etc/sysconfig/iptables.original
  17. Overwrite the defaults with the current state of the firewall:
    /usr/libexec/iptables/iptables.init save
  18. Store the above commands into a shell script called: myicmp_restore.bash

  19. Since the same iptables rules (i.e. above steps) for your vm1 also apply for your vm2, vm3, and other vms, it would make sense to use your shell script you created to set your iptables rules for vm1 for these other vms.
  20. Copy your myicmp_restore.bash script to both of your vm2 and vm3 machines, set execute permisisons, and then run the shell script in order to setup the same firewall rules.
  21. Make certain to save your firewall rules for both vm2 and vm3.

    NOTE: We have now demonstrated how a simple shell script has saved you time when setting up firewall rules for other vms.


Upon completion of this lab, each of your vms has a firewall protecting them from unexpected traffic. You should now have a basic understanding of the commands necessary to modify firewalls using iptables. You will be building on these rules for the rest of the course. Record the URLs of the websites you've used to figure out how to do the work.

Idea.png
Time for a new backup!
Once have successfully completed this lab, make a new backup of your virtual machines.


Record steps, commands, and your observations in INVESTIGATION 2 in your OPS335 lab log-book

COMPLETING THE LAB

Students should be prepared with all required commands (system information) displayed in a terminal (or multiple terminals) prior to calling the instructor for signoff.

Arrange evidence (command output) for each of these items on your screen, then ask your instructor to review them and sign off on the lab's completion:

Listing of iptables rules (vm1, vm2, vm3).
Proof that the iptables rules work for at least vm1.
Shell script containing your iptables rules called: myicmp_restore.bash


EXPLORATION QUESTIONS

  1. View your firewall rules using the output of the 'iptables -L -n -v' command. Also save the output to a text file.
  2. How could you display the log records generated by your invalid ssh attempts without including any unrelated entries.
  3. What iptables rule would you need to add to your firewall to allow a maximum of 3 concurrent ssh connections from your host to your VM1?
  4. Which rule in the MYICMP chain is actually responsible for denying icmp packets from your partner? Why?
  5. Which optional module could be used to work with packets based on whether they are new connections or not?