Updates README.md of load_balance and mri (#79)

This commit is contained in:
alex1230608
2017-11-05 09:21:37 -06:00
committed by Robert Soule
parent 6c82b6fbe7
commit 65a4334734
2 changed files with 10 additions and 7 deletions

View File

@@ -4,9 +4,9 @@ In this exercise, you will implement a form of load balancing based on
a single version of Equal-Cost Multipath Forwarding. The switch you
will implement will use two tables to forward packets to one of two
destination hosts at random. The first table will use a hash function
(applied to a 5-tuple consisting of the source and destination
Ethernet addresses, source and destination IP addresses, and IP
protocol) to select one of two hosts. The second table will use the
(applied to a 5-tuple consisting of the source and destination
IP addresses, IP protocol, and source and destination TCP ports)
to select one of two hosts. The second table will use the
computed hash value to forward the packet to the selected host.
> **Spoiler alert:** There is a reference solution in the `solution`