尝试为Cisco路由器设置实验室,我有两个通过Hyper-V Manager创建的CSR1000v,并且只要Hyper-V适配器模式为“未标记”或“访问”即可相互通信而没有问题。在适配器模式设置为“ Trunk”的情况下,无法使其“完全”运行。看来Hyper-V虚拟交换机并未在VM之间切换任何标记的流量。
!!!! VM Status - Native VLAN 10, Allowed VLAN's 1 to 999
PS ~\dev> Get-VMNetworkAdapterVlan -VMName csr1
VMName VMNetworkAdapterName Mode VlanList
------ -------------------- ---- --------
csr1 Network Adapter Trunk 10,1-999
csr1 Network Adapter Trunk 10,1-999
csr1 Network Adapter Trunk 10,1-999
csr1 Network Adapter Trunk 10,1-999
csr1 Network Adapter Trunk 10,1-999
csr1 Network Adapter Trunk 10,1-999
csr1 Network Adapter Trunk 10,1-999
csr1 Network Adapter Trunk 10,1-999
PS ~\dev> Get-VMNetworkAdapterVlan -VMName csr2
VMName VMNetworkAdapterName Mode VlanList
------ -------------------- ---- --------
csr2 Network Adapter Trunk 10,1-999
csr2 Network Adapter Trunk 10,1-999
csr2 Network Adapter Trunk 10,1-999
csr2 Network Adapter Trunk 10,1-999
csr2 Network Adapter Trunk 10,1-999
csr2 Network Adapter Trunk 10,1-999
csr2 Network Adapter Trunk 10,1-999
csr2 Network Adapter Trunk 10,1-999
!!!! CSR's config brief
! CSR1
interface GigabitEthernet1
ip address 10.10.10.1 255.255.255.0
interface GigabitEthernet1.11
encapsulation dot1Q 11
ip address 10.10.11.1 255.255.255.0
! CSR2
interface GigabitEthernet1
ip address 10.10.10.2 255.255.255.0
interface GigabitEthernet1.11
encapsulation dot1Q 11
ip address 10.10.11.2 255.255.255.0
两个CSR之间的G1网络上的Ping很好。但是,在VLAN 11下的G1.11上,两者之间没有通信-没有ping,没有arp条目。将encap dot1q设置为VLAN 10以使其与Virtual Switch本机VLAN匹配也不起作用。在VMware ESXi下,CSR的工作正常。看来Hyper-V VSwitch在这里的表现不佳。
是由于Windows 10 Pro下Hyper-V虚拟适配器上对VLAN标记的支持还是缺乏? Win 10 Pro驱动程序版本页面上显示日期为2006年6月21日的Microsoft 10.0.19041.1。 “更新驱动程序”按钮显示已经安装了最好的驱动程序。
!!!! IPConfig on Win 10 Pro showing the Hyper-V Internal Network
Ethernet adapter vEthernet (intnet1):
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Hyper-V Virtual Ethernet Adapter #4
Physical Address. . . . . . . . . : 00-15-5D-0E-B2-08
DHCP Enabled. . . . . . . . . . . : No
Autoconfiguration Enabled . . . . : Yes
Link-local IPv6 Address . . . . . : fe80::b46d:c278:c174:fe28%24(Preferred)
IPv4 Address. . . . . . . . . . . : 172.31.1.254(Preferred)
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . :
DHCPv6 IAID . . . . . . . . . . . : 1627395421
DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-25-D0-2A-A5-E8-D8-D1-A9-0F-5B
DNS Servers . . . . . . . . . . . : fec0:0:0:ffff::1%1
fec0:0:0:ffff::2%1
fec0:0:0:ffff::3%1
NetBIOS over Tcpip. . . . . . . . : Enabled
谢谢, 里克。