( self, controllers )
| 24 | class MultiSwitch( OVSSwitch ): |
| 25 | "Custom Switch() subclass that connects to different controllers" |
| 26 | def start( self, controllers ): |
| 27 | return OVSSwitch.start( self, [ cmap[ self.name ] ] ) |
| 28 | |
| 29 | |
| 30 | topo = TreeTopo( depth=2, fanout=2 ) |