Nexus 7k NXOS 6.2(8a)
我正在尝试配置一个语音vlan,但是这个命令似乎不可用?
有什么东西是我遗漏的吗?
interface Ethernet4/1
description AV_Hotline_501
switchport
switchport access vlan 501
spanning-tree port-priority 128
no shutdown
(config-if)# switchport ?
<CR>
access Set access mode characteristics of the interface
autostate Include or exclude this port from vlan link up calculation
dot1q Configure dot1q EtherType value
host Set port host
mode Enter the port mode
monitor Configures an interface as span-destination
trunk Configure trunking parameters on an interface
vlan Set VLAN translation mapping语音在交换端口详细信息中不显示。
Name: Ethernet4/1
Switchport: Enabled
Switchport Monitor: Not enabled
Operational Mode: access
Access Mode VLAN: 501 (AV_hotline_501)
Trunking Native Mode VLAN: 1 (default)
Trunking VLANs Allowed: 1-4094
FabricPath Topology List Allowed: 0
Pruning VLANs Enabled: 2-1001
Administrative private-vlan primary host-association: none
Administrative private-vlan secondary host-association: none
Administrative private-vlan primary mapping: none
Administrative private-vlan secondary mapping: none
Administrative private-vlan trunk native VLAN: none
Administrative private-vlan trunk encapsulation: dot1q
Administrative private-vlan trunk normal VLANs: none
Administrative private-vlan trunk private VLANs: none
Operational private-vlan: none发布于 2016-02-12 16:50:19
我还无法在任何文档中证实这一点,但我已经在我自己的Nexus 7k上的铜端口上查找了“开关端口声音”命令,这对我来说也不是一种选择:
(config)# int eth4/14
(config-if)# switchport ?
<CR>
access Set access mode characteristics of the interface
autostate Include or exclude this port from vlan link up calculation
dot1q Configure dot1q EtherType value
host Set port host
mode Enter the port mode
monitor Configures an interface as span-destination
trunk Configure trunking parameters on an interface
vlan Set VLAN translation mapping我可以确认该命令在连接到我的n 5548‘S之一的Nexus2248TP上是可用的--我没有n7k托管的n2k可以进行测试。你也不是唯一一个拥有以前问过这个问题的人,没有可靠的答案。基于我在这里看到的,以及当Nexus70xx的设计时,它们被设计成仅仅是DC核心/聚合开关,而不是像Nexus的更新迭代那样灵活的体系结构,我只能推测,像语音vlans这样的访问层功能没有内置到Nexus7k线卡中。我希望我有一个更好的答案,但由于似乎没有任何文件可公开证实这一点,我建议联系你最近的思科SE,如果你可以访问一个,看看他们是否可以提供一个更好的答案,从Nexus工程团队。
发布于 2016-02-12 17:01:02
Nexus 7000从未打算成为访问层交换机,因此它们不包括语音vlan命令。但是,您可以使用这些命令(数据vlan 100、语音vlan 200)完成相同的任务。
int eth 1/1
switchport mode trunk
switchport trunk native vlan 100
switchport trunk allowed vlan 100,200https://networkengineering.stackexchange.com/questions/26767
复制相似问题