stp: enable Spanning Tree Protocol (False) see OVSSwitch for other options
( self, *args, **kwargs )
| 1325 | "OVSBridge is an OVSSwitch in standalone/bridge mode" |
| 1326 | |
| 1327 | def __init__( self, *args, **kwargs ): |
| 1328 | """stp: enable Spanning Tree Protocol (False) |
| 1329 | see OVSSwitch for other options""" |
| 1330 | kwargs.update( failMode='standalone' ) |
| 1331 | OVSSwitch.__init__( self, *args, **kwargs ) |
| 1332 | |
| 1333 | def start( self, controllers ): |
| 1334 | "Start bridge, ignoring controllers argument" |