-
Notifications
You must be signed in to change notification settings - Fork 139
Tutorial 2: rftest2
This tutorial is incomplete and still being written
This tutorial assumes you've read the first one. We will not go into much detail about the basic steps, instead we will focus on configuring a more complex setup with OSPF and using Mininet as a simulation tool.
We are simulating the following scenario:

There are four routers (A, B, C and D), each connected to a host. They will route traffic from the different networks in the topology by using OSPF.
The RouteFlow approach to this scenario is given below:

The basic steps for creating virtual machines were given in the first tutorial. The basic steps are the same, so now we will show how to configure Quagga for this new scenario.
The main difference between the LXC containers in this test from the previous one is that the interfaces configuration is now done through Quagga. The OSPF routing will be managed by the engine as well. We modify some configuration files to fit our scenario:
- daemons: it's where we choose what parts of Quagga we'll be running
- ospfd.conf: OSPF options; here we declare the routed networks and message intervals
- zebra.conf: interface settings; here we declare the interfaces addresses
If you have any doubts, check Quagga's documentation. However, for simple setups, it should be straighforward.
Still being written...