S7703与cisco3560通过trunk模式的端口互连,链路无法起来

根因:

由于思科设备在开启端口的trunk模式时会运行其私有协议DTP自动协商链路模式,导致S7703在与其对接时无法协商成功。
解决方案
当华为交换机需与思科交换机对接并需要将各自端口模式配置为trunk模式时,建议关闭两端端口自协商,且思科设备关闭DTP协商。配置命令如下:

华为设备:

interface GigabitEthernet x/x/x
undo negotiation auto
port link-type trunk
port trunk allow-pass vlan xx

思科设备:

interface GigabitEthernetx/x/x
switchport trunk encapsulation dot1q
switchport trunk allowed vlan xx
switchport mode trunk
switchport nonegotiate
speed nonegotiate

END