1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
.. _int: https://docs.python.org/2/library/stdtypes.html
.. _str: https://docs.python.org/2/library/stdtypes.html
.. _vmodl.DynamicData: ../../vmodl/DynamicData.rst
.. _vim.host.PortGroup: ../../vim/host/PortGroup.rst
.. _vim.host.PhysicalNic: ../../vim/host/PhysicalNic.rst
.. _vim.host.VirtualSwitch.Specification: ../../vim/host/VirtualSwitch/Specification.rst
vim.host.VirtualSwitch
======================
The virtual switch is a software entity to which multiple virtual network adapters can connect to create a virtual network. It can also be bridged to a physical network.
:extends: vmodl.DynamicData_
Attributes:
name (`str`_):
The name of the virtual switch. Maximum length is 32 characters.
key (`str`_):
The virtual switch key.
numPorts (`int`_):
The number of ports that this virtual switch currently has.
numPortsAvailable (`int`_):
The number of ports that are available on this virtual switch. There are a number of networking services that utilize a port on the virtual switch and are not accounted for in the Port array of a PortGroup. For example, each physical NIC attached to a virtual switch consumes one port. This property should be used when attempting to implement admission control for new services attaching to virtual switches.
mtu (`int`_, optional):
The maximum transmission unit (MTU) associated with this virtual switch in bytes.
portgroup ([`vim.host.PortGroup`_], optional):
The list of port groups configured for this virtual switch.
pnic ([`vim.host.PhysicalNic`_], optional):
The set of physical network adapters associated with this bridge.
spec (`vim.host.VirtualSwitch.Specification`_):
The specification of a PortGroup.
|