Complete the following assignment by yourself, or in a group of two. Submit your work on D2L into the "Programming Assignment 3" folder. Please have only one member of the group submit.
In this programming assignment you will:
- Packetize streams at the network layer
- Implement packet segmentation
- Implement forwarding through routing tables
During this project, you will implement several key data plane functions of a router, including stream packetization, packet segmentation, and forwarding. The next assignment will complement these functions at the control plane.
The starting code for this project provides you with the implementation of several network layers that cooperate to provide end-to-end communication.
NETWORK LAYER (network.py)
DATA LINK LAYER (link.py)
The code also includes simulation.py
that manages the threads running the different network objects.
Currently, simulation.py
defines the following network.
At a high level a network defined in simulation.py
includes hosts, routers and links.
Hosts
generate and receive traffic.
Routers
forward traffic from one Interface
to another based on routing tables that you will implement.
Links
connect network interfaces of routers and hosts.
Finally, the LinkLayer
runs a thread to forward traffic along links.
To run the starting code you may execute:
python simulation.py
The current simulation_time
in simulation.py
is one second.
As the network becomes more complex and takes longer to execute, you may need to extend the simulation to allow the time for all the packets to transfer.
Your task is to extend the given code to implement several data link router functions.
-
[2 points] Currently
simulation.py
is configured to send three very short messages. Instead, generate a message forHost_2
that's at least 80 characters long. You will notice that this messages is too large for the interface MTUs. Your first task is to break this message up into two separate packets.Implement your solution in files
link_1.py
,network_1.py
, andsimulation_1.py
. -
[10 points] The packets you created are small enough to transmit over the client's interface. However, if we change the MTU of link between
router_a
andserver
to 30, the packets will now need to be segmented.Your task is to extend the network layer to support segmentation. Study lecture notes and the book on how IP implements segmentation. Extend the classes (including packet format) in
network.py
to match IP's mechanisms for packet segmentation and reconstruction.Implement your solution in files
link_2.py
,network_2.py
, andsimulation_2.py
. -
[13 points] The current router implementation supports very simple forwarding. The router has only one input and one output interface and just forwards packets from one to the other. Your tasks is to implement forwarding of packets within routers based on routing tables.
First configure
simulation.py
to reflect the following network topology.Second, create routing tables so that both Host 1 and Host 2 can send packets to Host 3 and Host 4 respectively. The routing table for each router should be passed into the
Router
constructor, and so it should be defined insimulation.py
. The format of these tables is up to you. You will also need to modify theRouter
class to forward the packets correctly between interfaces according to your routing tables.Finally, third, configure the routing tables to forward packets from Host 1 through Router B and from Host 2 through Router C. You may extend
NetworkPacket
with a source address, if you find that useful.Implement your solution in files
link_3.py
,network_3.py
, andsimulation_3.py
. -
[1 point] BONUS: The communication in the network above is one directional. Extend the network to carry packets both ways and have Host 3 send acknowledgements to Hosts 1 and 2.
Implement your solution in files
link_4.py
,network_4.py
, andsimulation_4.py
.
You will submit the different link.py
, network.py
, and simulation.py
files.
You will also submit a link to a single YouTube video under 5 minutes in length that shows the execution of your code implementing the different functionalities outlined in the grading rubric.