Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.01 KB

File metadata and controls

39 lines (26 loc) · 1.01 KB
title Limitations
nav_order 9

Limitations

We build Distrinet to be compatible with Mininet, but there are some limitation in the current versions.

No Underscore in the vSwitch and vHost names

LXD do not support containers names with underscore(_), i.e.

from mininet.topo import Topo

class Personalized(Topo):
    def build(self):
        self.addSwitch('s_1')
        self.addSwitch('s2')

's_1' is a valid name in Mininet, but not for Distrinet; 's2' is a valid name.

github discussion

Compatibility with Mininet switch=ovsk

Distrinet uses by defoult OVS for the virtual switches. This can be a problem when the dpid is not directly set in the addSwitch() function.

Github discussion

##Os Supported For now we support Ubuntu 18.04 for the Master and the workers, while the client is compatible with any system using Docker. We are working to support more Linux Distributions.