Thank you Otto,
In fact the effective PVLAN configuration will be made on the virtual Distributed Switch side.
What I want to do is accessing the Virtual Machines (isolated hosts) from the CISCO Switch (port C2).
How should I configure the port C2 of CISCO Switch?
And how should I configure the ports linking the CISCO Switch to the vDS (A1 and C1)? Should I use simple trunking?
Main Topics
Browse All Topics





by: Otto_NPosted on 2009-09-18 at 06:27:20ID: 25365672
To configure PVLANs on the Cisco switch, you can use the following template:
/docs/swit ches/lan/c atalyst450 0/ 12.2/50s g/configur ation/guid e/pvlans.h tml
vtp transparent
vlan 201 !-- Isolated VLAN
name <iVLAN-name>
private-vlan isolated
vlan 20 !-- Primary VLAN
name <pVLAN-name>
private-vlan primary
private-vlan mapping 201
!-- Physical port config - Promiscuous port
interface <Type><Slot/subslot/port>
switchport mode private-vlan promiscuous
switchport private-vlan mapping 20 201
!-- Physical port config - Isolated port
interface <Type><Slot/subslot/port>
switchport mode private-vlan host
switchport private-vlan host-association 20 201
!-- SVI config (Promiscuous port)
interface vlan 20
private-vlan mapping 201
See the following Cisco documentation: http://www.cisco.com/en/US
Unfortunately I do not have much experience with the VMware virtual switch.