From aaf14bdc40853dc2df7d61b94e6ff0406b04b002 Mon Sep 17 00:00:00 2001 From: Harsh Gondaliya Date: Mon, 7 Oct 2019 00:43:03 +0000 Subject: [PATCH] Edited description of topo used in multicast exercise (#293) --- exercises/multicast/README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/exercises/multicast/README.md b/exercises/multicast/README.md index 8d13791..a7e8c99 100644 --- a/exercises/multicast/README.md +++ b/exercises/multicast/README.md @@ -17,14 +17,16 @@ static rules. Each rule will map an Ethernet MAC address to the output port. We have already defined the control plane rules, so you only need to implement the data plane logic of your P4 program. -We will use the linear topology for this exercise. It is a single switch that +We will use the star topology for this exercise. It is a single switch that connects four hosts as follow: - h1 h2 - | | - ---------------------------- s1 - | | - h3 h4 + h1 h2 + \ / + \ / + s1 + / \ + / \ + h3 h4 Our P4 program will be written for the V1Model architecture implemented on P4.org's bmv2 software switch. The architecture file for the V1Model can be