Software >> OS >> Unix >> Solaris >> 11 >> Zones >> Network >> What are the characteristics of virtual switch and etherstub and what are their differences
Virtual Switch
Example # dladm create-vnic -l e1000g0 vnic0 # dladm create-vnic -l e1000g0 vnic1 This creates a virtual switch between the vnic0/vnic1 and the physical interface e1000g0
Etherstub
# dladm create-etherstub stub0 # dladm create-vnic -l stub0 vnic0 # dladm create-vnic-l stub0 vnic1 etherstub stub0 is purely software and has no connection to any physical interface. The vnics (vnic0/vnic1) are created over the ether stub and are on a private isolated network
|