我们有一个带有单个网络端口的VMWare ESXi主机。它连接到Cisco催化剂3750交换机端口,w交换机端口的配置如下:
interface FastEthernet 1/0/2
switchport access vlan 10
switchport mode access
end我们需要在一个单独的vlan (vlan 11和12)上运行一个来宾,因此我们更改交换机配置如下:
interface FastEthernet 1/0/2
switchport trunk encapsulation dot1q
switchport mode trunk
switchport trunk native vlan 10
switchport trunk allowed vlan add 10,11,12
end当此操作完成后,我们将无法访问主机。这种配置有什么问题?
发布于 2015-04-22 10:00:58
ESXi不支持DTP动态集群协议,应该启用端口快速中继。
switchport nonegotiate !Skip DTP negotiation
spanning-tree portfast trunk !Fast forward STP state此外,不要在任何portgroups上使用本机(无标记) vlan。使用本机vlan进行管理或服务控制台VMKernel网络,这也允许在使用标记之前启动通过DHCP或BOOTP进行安装。
https://networkengineering.stackexchange.com/questions/18019
复制相似问题