[docs]@require_class(Ubuntu1604Server)classOpenvSwitch:""" This object installs Open vSwitch on an Ubuntu server endpoint. Open vSwitch is useful for many applications. Specific use cases include transparent firewalls and passive taps, among other possible applications. """def__init__(self):""" Install openvswitch-switch and related debian packages. """self.install_debs(-100,"openvswitch-switch.tgz")
[docs]defbridge_layer2(self,time,bridge_name="br0",interfaces=None):""" Create layer 2 connections by putting all the specified interfaces on a newly created bridge with the specified name. Args: time (int): Schedule time to execute the bridging VM resource on the VM. bridge_name (str): Name of bridge to create on the VM. interfaces (list): List of MAC addresses corresponding to the interfaces to be added to the layer 2 bridge. Uses MAC addresses because interface names aren't guaranteed to be consistent. """ifnotinterfaces:interfaces=[]argument=bridge_nameforinterfaceininterfaces:argument+=f" {interface.lower()}"self.run_executable(time,"bridge_layer2.sh",argument,vm_resource=True)