> Hello All,
> 
> I want to create a LAG using Ryu. I came across this code. However, this is
> for aggregation using LACP only.
> 
> Is there a way to create LAG without LACP(like in Round robin mode or
> active-passive mode)

do you mean, without any controlling protocols like lacp?
how about hardcoding the configuration somewhere?

YAMAMOTO Takashi

> 
> def add(self, dpid, ports):
> # ...
>        assert isinstance(ports, list)
>        assert 2 <= len(ports)
>        ifs = {}
>        for port in ports:
>                  ifs[port] = {’enabled’: False, ’timeout’: 0}
>                  bond = {}
>                  bond[dpid] = ifs
>                  self._bonds.append(bond)
> 
> Thanks,
> Sandesh Shrestha
> www.sandeshshrestha.blogspot.com

------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel

Reply via email to