The Default Link Bandwidth in Mininet

3.8k Views Asked by At

When running Mininet, it is possible to create a new link and to also set the bandwidth (using bw). For example: addLink(host, switch, bw=10, delay='5ms')

To my understanding, it is also possible to create the link without specifically setting the bandwidth. My question to you is, what is the default link bandwidth that is set if it is not given in the command?

If there is not a default, is it just set to whatever the computer can best handle? If this is the case, I would assume that it would very depending on the computer that is currently running Mininet.

1

There are 1 best solutions below

2
On BEST ANSWER

According to this link, the default bandwidth does not have a specific value, seems unlimited, but is actually limited by the power of your system.

Also from this link we have that :

For CPU-limited experiments, you will also need to make sure that you carefully limit the CPU bandwidth of your Mininet hosts. If you mainly care about functional correctness, you can run Mininet without specific bandwidth limits

which again shows that the bandwidth is limited by the CPU.