Project Overview.
|
||||||||||||||||
In this project you will learn about Software Defined Networking (SDN). Using Virtualbox, Mininet, and Pox as the implementers of the OpenFlow protocol, you will build simple networks using SDN primitives.
|
||||||||||||||||
Background.
|
||||||||||||||||
Software Defined Networking and OpenFlow
|
||||||||||||||||
Software-Defined Networking (SDN) is a recently proposed networking paradigm in which the data and control planes are decoupled from one another. One can think of the control plane as being the networks "brain", i.e., it is responsible for making all decisions, for example, how to forward data, while the data plane is what actually moves the data. In traditional networks, both the control- and data planes are tightly integrated and implemented in the forwarding devices that comprise a network. The SDN control plane is implemented by the "controller" and the data plane by "switches". The controller acts as the "brain" of the network, and sends commands ("rules") to the switches on how to handle traffic. OpenFlow has emerged as the de facto SDN standard and specifies how the controller and the switches communicate as well as the rules controllers install on switches. |
||||||||||||||||
Mininet
|
||||||||||||||||
Mininet is a software stack that creates a virtual network on your computer/laptop. It accomplishes this task by creating host namespaces (h1, h2, etc) and connecting them through virtual interfaces. So when we run ping between the linux namespaces h1 and h2, the ping will run from h1s namespace through a virtual interface pair created for h1 and h2, before it reaches h2. If h1 and h2 are connected through a switch as shown in the python code in the Mininet walkthrough, the ping will transit multiple virtual interface pairs. The switches that we will be using are running OpenVSwitch (OVS), a software-defined networking stack. Mininet will connect additional virtual interfaces between each virtual port on the switch with each connected host. The host name space allows each host to see the same file system, but operates as its own process that will run separately from each of the other host processes. The OVS version running on the Ubuntu image supports OpenFlow. |
||||||||||||||||
POX
|
||||||||||||||||
Pox is a research/academic implementation of an OpenVFlow controller. It provides python hooks to program mininet-based software emulated networks. |
||||||||||||||||
Assignment
|
||||||||||||||||
Part 1: Mininet Primer
|
||||||||||||||||
Mininet VM Installation
Using Mininet
Programming Mininet Topologies Deliverables: Your task in part one is to modify part1.py to represent the following network topology: [h1]-----{s1}------[h2] [h3]----/ \-----[h4]Where [x] means you create a host named x, {y} means a switch named y, and --- means there is a link between the node and the switch. After creating the above architecture, provide the two items in a part1 folder in a compressed file:
|
||||||||||||||||
Part 2: SDN Controllers using POX
|
||||||||||||||||
In part 1, we experimented with Mininet using its internal controller. In this (and future) parts, we will instead be using our own controller to send commands to the switches. We will be using the POX controller, which is written in Python. [h1@10.0.1.2/24][h2@10.0.0.2/24][h3@10.0.0.3/24][h4@10.0.1.3/24] \ \ / / \ \ / / \ \----{s1}---/ / \-------------------/ | \-----------------/ | (controller) For part 2, we will also provide you with a skeleton POX controller: part2controller.py. This file will be where you will make your modifications to create the firewall. To run POX controller: sudo ~/pox/pox.py misc.part2controller Note: make sure ~/pox/pox/misc/part2controller.py is valid. It should already been linked to ~/461_mininet/pox/part2controller.py for your convenience. To run Mininet: sudo python ~/461_mininet/topos/part2.py The rules s1 will need to implement are as follows:
Basically, your Firewall should allow all ARP and ICMP traffic to pass. However, any other type of IPv4 traffic should be dropped. It as acceptable to flood the allowable traffic out all ports. Be careful! Flow tables match the rule with highest priority first, where priority is established based on the order rules are placed in the table. When you create a rule in the POX controller, you need to also have POX "install" the rule in the switch. This makes it so the switch "remembers" what to do for a few seconds. Do not handle each packet individually inside of the controller! Hint: To do this, look up ofp_flow_mod. The OpenFlow tutorial (specifically " Sending OpenFlow messages with POX") and the POX Wiki are both useful resources for understanding how to use POX. Deliverables:
|
||||||||||||||||
Part 3: A real network
|
||||||||||||||||
In part 2 you implemented a simple firewall that allowed ICMP packets, but blocked all other packets. For your part 3, you will be expanding on this to implement routing between subnets, and implementing firewalls for certain subnets. The idea is to simulate an actual production network. [h10@10.0.1.10/24]--{s1}--\ [h20@10.0.2.20/24]--{s2}--{cores21}--{dcs31}--[serv1@10.0.4.10/24] [h30@10.0.3.30/24]--{s3}--/ | | [hnotrust1@172.16.10.100/24 Your goal will be to allow traffic to be transmitted between all the hosts. In this assignment, you will be allowed to flood traffic on the secondary routers (s1,s2,s3,dcs31) in the same method that you did in part2 (using a destination port of of.OFPP_FLOOD). However, for the core router (cores21) you will need to specify specific ports for all IP traffic. You may do this however you choose-- however, you may find it easiest to determine the correct destination port by using the destination IP address and source IP address, as well as the source port on the switch that the packet originated from. Additionally, to protect our servers from the untrusted Internet, we will be blocking all IP traffic from the Untrusted Host to Server 1. To block the Internet from discovering our internal IP addresses, we will also block all ICMP traffic from the Untrusted Host. In summary of your goals:
Deliverables:
|
||||||||||||||||
Part 4: A learning router
|
||||||||||||||||
For part 4, we're extending your part 3 code to implement an actual level-3 router out of the cores21 switch. Copy the part3controller.py file to part4controller.py, there is no new skeleton. For the topology, we again provide a file (part4.py). The difference between part3.py and part4.py topologies is that the default route 'h10-eth0' was changed to 'via 10.0.1.1' where '10.0.1.1' is the IP address of the gateway (i.e. router) for that particular subnet. This effectively changes the network from a switched network (with hosts sending to a MAC address) into a routed network (hosts sending to an IP address). Your part3controller should not work on this new topology! To complete the assignment cores21 will need to:
Deliverables:
|
||||||||||||||||
Turn-in
|
||||||||||||||||
When you're ready to turn in your assignment, do the following:
|