版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、1. Nexus产品介绍2. Nexus 基本系统管理3. Nexus 7K 配置VDC4. Nexus L2 L3配置介绍5. FEX技术介绍与配置6. Port Channel与vPC 7.FabricPatch8. OTV9. 组 播 与 QoS 10.Nexus安全技术 Yeslab数据中心课程Nexus 交换机系列 作者:马海波 现任明教教主北京Yeslab数据中心实验室出品现任明教教主马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍内容简介 内容简介第一部分:基本接口配置 第二部分:配置动态路由协议第三部分:配置VTP与STP第四部分:配置HSRP与VRRP
2、马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置第一部分 基本接口配置马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置端口的默认模式 所有端口默认处于“Shutdown”状态 F1端口默认为二层的“Switchport”端口M1端口默认为三层“routed”路由端口 系统默认命令(sh run all | in system default) no system default switchport system default switchport shudown默认的端口模式可以通过如下的命令修
3、改 system default switchportn 修改所有的M口为二层switchport no system default switchport shutdown修改所有二层switchport为管理打开状态Nexus 5K端口默认为二层Switchport和管理打开状态。马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置基本接口配置实验马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置N7K基本接口配置(1) DC1-N7K-3(config)# feature interface-vla
4、n DC1-N7K-3(config)# vlan 10DC1-N7K-3(config-vlan)# no shutdown DC1-N7K-3(config)# interface vlan 10DC1-N7K-3(config-if)# ip address 10.1.1.254/24 DC1-N7K-3(config-if)# no shutdown马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置N7K基本接口配置(2) 查看E3/17插的SFP:DC1-N7K-3# show interface ethernet 3/17 transc
5、eiver Ethernet3/17transceiver is present type is 1000base-T name is CISCO-AVAGOpart number is QBCU-5798R revision isserial number is AGM1051Q1R5 nominal bitrate is 1300 MBit/secLink length supported for copper is 100 m cisco id is -cisco extended id number is 4马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一
6、部分:基本接口配置N7K基本接口配置(3)查看E3/17的能力:DC1-N7K-3# show interface capabilities Ethernet3/17Model:Type (SFP capable): Speed:Duplex:Trunk encap. type: FabricPath capable: Channel:N7K-F132XP-151000base-T 1000,10000full 802.1Qyes yes忽略马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置N7K基本接口配置(4) 配置E3/17为访问端口:DC1
7、-N7K-3(config)# interface e3/17 DC1-N7K-3(config-if)# speed 1000DC1-N7K-3(config-if)# switchport mode access DC1-N7K-3(config-if)# switchport access vlan 10 DC1-N7K-3(config-if)# no shutdown配置E3/21为Trunk,并且只允许VLAN10:DC1-N7K-3(config)# interface e3/21DC1-N7K-3(config-if)# switchport mode trunkDC1-N7K
8、-3(config-if)# switchport trunk allowed vlan 10 DC1-N7K-3(config-if)# no shutdown马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置N5K基本接口配置N5K-1(config)# vlan 10N5K-1(config-vlan)# no shutdownN5K-1(config)# interface e1/21N5K-1(config-if)# switchport mode trunkN5K-1(config-if)# switchport trunk allow
9、ed vlan 10N5K-1(config)# interface e1/5 N5K-1(config-if)# shutdown N5K-1(config-if)# speed 1000N5K-1(config-if)# switchport access vlan 10 N5K-1(config-if)# no shutdown马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置接口描述与beaconDC1-N7K-3(config)# interface e3/21DC1-N7K-3(config-if)# description Link-
10、to-N5K1 DC1-N7K-3(config-if)# beaconBeacon技术通过闪烁的LED灯,快速定位物理接口马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置MTU配置介绍 For Layer 3 interfaces, you can configure an MTU size that is between 576 and 9216 bytes.For Layer 2 interfaces, you can configure all Layer 2 interfaces to use either the default MT
11、U size (1500 bytes) or the system jumbo MTU size (default size of 9216 bytes).马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置配置MTU为三层口配置MTU:DC1-N7K-3(config)# interface e4/20DC1-N7K-3(config-if)# mtu 2346为二层口配置MTU:DC1-N7K-3(config)# interface e3/21DC1-N7K-3(config-if)# mtu 9216DC1-N7K-3(config-if)#
12、 mtu 1500DC1-N7K-3(config-if)# mtu 2346ERROR: Ethernet3/21: MTU on L2 interfaces can only be set to default or system-jumboMTU马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置修改系统默认MTU修改系统默认MTU:DC1-N7K-3(config)# system jumbomtu 9000配置非系统默认jumbomtu会产生报错:DC1-N7K-3(config)# interface e3/21DC1-N7K-3(con
13、fig-if)# mtu 9216% Invalid number, range is (1500:9000) at marker. DC1-N7K-3(config-if)# mtu 9000马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置理解UDLD技术 UDLD技术使交换机检查单向链路故障 当一个单向链路被发现,这个端口会被关闭 UDLD aggression模式使用主动的探针,快速的检查故障马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置配置UDLDDC1-N7K-3(config)# fe
14、ature udld DC1-N7K-3(config)# interface e3/21 DC1-N7K-3(config-if)# udld enableDC1-N7K-3(config-if)# udld aggressive DC1-N7K-3(config-if)# no udld aggressive DC1-N7K-3(config-if)# no udld enable马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置查看UDLD状态 DC1-N7K-3# show udld ethernet 3/21DC1-N7K-3# show
15、 udld neighborsDC1-N7K-3# show udld global马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置Rate Mode(速率模式)On a 32-port 10-Gigabit Ethernet module, each set of four ports can handle 10 gigabits per second (Gb/s) of bandwidth. You can use the rate-mode parameter to dedicate that bandwidth to the first
16、port in the set of four ports or share the bandwidth across all four ports.马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置Rate Mode示意图马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置配置Rate Mode为Dedicated关闭所有Port-Group内的端口:DC1-N7K-1(config)# interface e4/1,e4/3,e4/5,e4/7 DC1-N7K-1(config-if-range)#
17、shutdown配置E4/1的速率模式为Dedicated:DC1-N7K-1(config)# interface e4/1DC1-N7K-1(config-if)# rate-mode dedicated DC1-N7K-1(config-if)# no shutdown马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置配置Rate Mode为Share关闭E4/1端口:DC1-N7K-1(config)# interface e4/1 DC1-N7K-1(config-if)# shutdown配置整个Port-Group的所有端口速率模式为
18、SharedDC1-N7K-1(config)# interface e4/1,e4/3,e4/5,e4/7DC1-N7K-1(config-if-range)# rate-mode shared DC1-N7K-1(config-if-range)# no shutdown)马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置Port profiles介绍Port Profiles技术能够为一组端口配置一些普通命令 一个Port Profile能够从其它Port Profile继承属性(嵌套的Profiles 修改一个Port Profile的配置
19、,会自动更新所有成员端口的配置。任何Cisco Nexus 7K上的接口配置命令,都可以成为Port Profile 的一部分,例如:ACL,L3, Netflow,VLAN等等。 马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置Port Profiles类型 有如下四种Port Profile类型Ethernet Interface-VLAN Port-Channel Tunnel马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置配置基本Port Profiles配置Port Profile:DC1
20、-N7K-1(config)# port-profile type ethernet MingJiao-Ethernet DC1-N7K-1(config-port-prof)# switchportDC1-N7K-1(config-port-prof)# switchport mode access DC1-N7K-1(config-port-prof)# switchport access vlan 10 DC1-N7K-1(config-port-prof)# state enabled配置接口继承Port Profile:DC1-N7K-1(config)# interface e4/
21、1-4DC1-N7K-1(config-if-range)# inherit port-profile MingJiao-Ethernet马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第一部分:基本接口配置配置嵌套Port Profiles配置Port Profile:DC1-N7K-1(config)#port-profile type ethernet PORT-TYPE-EDGEDC1-N7K-1(config-port-prof)# DC1-N7K-1(config-port-prof)# DC1-N7K-1(config-port-prof)# DC1-N
22、7K-1(config-port-prof)#switchportspanning-tree port type edge no shutdownstate enabled配置嵌套的Port Profile:DC1-N7K-1(config-port-prof)# port-profile type ethernet MODE-ACCESSDC1-N7K-1(config-port-prof)# DC1-N7K-1(config-port-prof)# DC1-N7K-1(config-port-prof)# DC1-N7K-1(config-port-prof)# DC1-N7K-1(con
23、fig-port-prof)#inherit port-profile PORT-TYPE-EDGE switchportswitchport mode access switchport access vlan 10 state enabled马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由协议第二部分 配置动态路由协议马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由协议拓扑图介绍马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由协议在N7K-1上配置
24、OSPFDC1-N7K-1(config)# feature ospf DC1-N7K-1(config)# router ospf 1 DC1-N7K-1(config-router)# exitDC1-N7K-1(config)# interface loopback 0DC1-N7K-1(config-if)# ip address 61.128.1.1/24 DC1-N7K-1(config-if)# ip router ospf 1 area 0 DC1-N7K-1(config-if)# exitDC1-N7K-1(config)# interface e4/5DC1-N7K-1(
25、config-if)# ip address 172.16.13.1/24 DC1-N7K-1(config-if)# ip router ospf 1 area 0 DC1-N7K-1(config-if)# no shutdownDC1-N7K-1(config-if)# exitDC1-N7K-1(config)# interface e4/1DC1-N7K-1(config-if)# ip address 172.16.14.1/24 DC1-N7K-1(config-if)# ip router ospf 1 area 0 DC1-N7K-1(config-if)# no shutd
26、own马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由协议在N7K-3上配置OSPF(1)DC1-N7K-3(config)# feature ospf DC1-N7K-3(config)# router ospf 1 DC1-N7K-3(config-router)# exit DC1-N7K-3(config)# interface e4/20DC1-N7K-3(config-if)# ip address 172.16.13.3/24 DC1-N7K-3(config-if)# ip router ospf 1 area 0 DC1-N7K
27、-3(config-if)# no shutdownDC1-N7K-3(config)# vlan 34 DC1-N7K-3(config-vlan)# exitDC1-N7K-3(config)# interface e4/22 DC1-N7K-3(config-if)# switchportDC1-N7K-3(config-if)# switchport mode access DC1-N7K-3(config-if)# switchport access vlan 34 DC1-N7K-3(config-if)# no shutdown马海波/现任明教教主Nexus交换机系列 Nexus
28、 L2 L3配置介绍 第二部分:配置动态路由协议在N7K-3上配置OSPF(2)DC1-N7K-3(config)# interface e3/17 DC1-N7K-3(config-if)# speed 1000DC1-N7K-3(config-if)# switchport mode access DC1-N7K-3(config-if)# switchport access vlan 34 DC1-N7K-3(config-if)# no shutdownDC1-N7K-3(config)# feature interface-vlan DC1-N7K-3(config)# interf
29、ace vlan 34DC1-N7K-3(config-if)# ip address 172.16.34.3/24 DC1-N7K-3(config-if)# ip router ospf 1 area 0 DC1-N7K-3(config-if)# no shutdown马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由协议在N7K-4上配置OSPF(1)DC1-N7K-4(config)# feature ospf DC1-N7K-4(config)# router ospf 1 DC1-N7K-4(config-router)# exit
30、DC1-N7K-4(config)# interface e4/29DC1-N7K-4(config-if)# ip address 172.16.14.4/24 DC1-N7K-4(config-if)# ip router ospf 1 area 0 DC1-N7K-4(config-if)# no shutdownDC1-N7K-4(config)# vlan 34 DC1-N7K-4(config-vlan)# exitDC1-N7K-4(config)# interface e4/28 DC1-N7K-4(config-if)# switchportDC1-N7K-4(config-
31、if)# switchport mode access DC1-N7K-4(config-if)# switchport access vlan 34 DC1-N7K-4(config-if)# no shutdown马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由协议在N7K-4上配置OSPF(2)DC1-N7K-4(config)# feature interface-vlan DC1-N7K-4(config)# interface vlan 34DC1-N7K-4(config-if)# ip address 172.16.34.4/24
32、 DC1-N7K-4(config-if)# ip router ospf 1 area 0 DC1-N7K-4(config-if)# no shutdown马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由协议测试shutdown E4/22在N7K-3上Shutdown E4/22测试OSPF探测故障对等体的时间马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由协议为OSPF配置BFD技术Bidirectional Forwarding Detection(BFD) DC1-N7K-1(confi
33、g)# feature bfd DC1-N7K-1(config)# router ospf 1 DC1-N7K-1(config-router)# bfdDC1-N7K-3(config)# feature bfd DC1-N7K-3(config)# router ospf 1 DC1-N7K-3(config-router)# bfdDC1-N7K-4(config)# feature bfd DC1-N7K-4(config)# router ospf 1 DC1-N7K-4(config-router)# bfd马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍
34、 第二部分:配置动态路由协议BFD邻居关系的建立(1).When OSPF discovers a neighbor.(2).It sends a request to the local BFD process to initiate a BFD neighbor session with the OSPF neighbor router. (3).The BFD neighbor session with the OSPF neighbor router is now established.马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由协
35、议BFD邻居关系失效检查(1). The BFD neighbor session with the OSPF neighbor router is torn down (2). BFD notifies the local OSPF process that the BFD neighbor is no longer reachable(3). The local OSPF process tears down the OSPF neighbor relationship(4). If an alternative path is available, the routers immedia
36、tely start converging on it.Note:The BFD failure detection occurs in less than a second, which is much faster than OSPF Hello messages could detect the same failure.马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由协议查看BFD邻居关系Shutdown E4/22测试,OSPF邻居关系会立即消失:DC1-N7K-3(config)# interface e4/22 DC1-N7K-3(
37、config-if)# shutdownDC1-N7K-3# sh ip ospf neighbors OSPF Process ID 1 VRF default Total number of neighbors: 1Neighbor ID 61.128.1.1Pri State1 FULL/BDRUp Time AddressInterface00:55:37 172.16.13.1Eth4/20马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由协议PSS简介 Cisco NX-OS services use the persistent st
38、orage service (PSS) to store and manage the operational run-time information. The PSS component works with system services to recover states in the event of a service restart. PSS functions as a database of state and run- time information, which allows services to make a checkpoint of their state in
39、formation whenever needed. A restarting service can recover the last known operating state that preceded a failure, which allows for a stateful restart.(Cisco NX-OS服务使用持续存储服务(PSS)来存储和管理操作的实时信息。PSS组件与系统服务一起工作,在出现服务重启时,恢复这个服务的状态。PSS的功能就像一个存储实时信息和状态的数据库, 它允许服务在任何时候,制造一个它自身信息的一个检查点。一次服 务的重启,可以恢复到故障前的最后一
40、个已知的操作状态,它允许一次状态话的重启。) 马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由协议测试PSS(1)启用OSPF的Debug:DC1-N7K-1# terminal monitorDC1-N7K-1# debug ip ospf adjacencyDC1-N7K-3# terminal monitorDC1-N7K-3# debug ip ospf adjacencyDC1-N7K-4# terminal monitorDC1-N7K-4# debug ip ospf adjacencyN7K-4持续Ping测试网络的通讯状况:DC
41、1-N7K-4# ping 172.16.13.1 count 100000复制杀进程文件:DC1-N7K-1# copy bootflash:n7000-s2-debug-sh.6.1.1.gbin kill.gbin马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由协议测试PSS(2)查看OSPF进程号:马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由协议测试PSS(3)杀掉OSPF进程:马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由协议测试PSS
42、(4)查看新的OSPF进程:在整个杀掉进程并重新启动进程的过程中,OSPF邻居关系没有任何异常,ping测试也能完全通过。 马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由协议Graceful Restart介绍(1) A graceful restart, or nonstop forwarding (NSF), allows OSPFv2 to remain in the data forwarding path through a process restart. When OSPFv2 needs to perform a gracefu
43、l restart, it sends a link-local opaque (type 9) LSA, called a grace LSA (see the Opaque LSAs section). This restarting OSPFv2 platform is called NSF capable.(一个完美重启(Graceful restart),或者不停歇发送 (NSF),允许OSPFv2在一次进程重启的过程中,维持数据层面的发送。当OSPFv2需要执行一次完美重启时, LSA(第九类)。 他发送一个链路本地马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配
44、置介绍 第二部分:配置动态路由协议Graceful Restart介绍(2) The grace LSA includes a grace period, which is a specified time that the neighbor OSPFv2 interfaces hold onto the LSAs from the restarting OSPFv2 interface. (Typically, OSPFv2 tears down the adjacency and discards all LSAs from a down or restarting OSPFv2 inte
45、rface.) The participating neighbors, which are called NSF helpers, keep all LSAs that originate from the restarting OSPFv2 interface as if the interface was still adjacent.(这种Grace LSA包括一个宽限周期,在这个时间内,邻居OSPFv2接口保持从重启OSPFv2接口收到的LSA。参与的邻居, 也叫做NSF helpers。他们保持所有源自于重启OSPFv2接口的LSA,就像这个接口依然有比邻一样。) 马海波/现任明教
46、教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由协议Graceful Restart介绍(3) When the restarting OSPFv2 interface is operational again, it rediscovers its neighbors, establishes adjacency, and starts sending its LSA updates again. At this point, the NSF helpers recognize that the graceful restart has finished.(当
47、重启的OSPFv2接口恢复工作,他重新发现他的邻 居,建立比邻,和开始再次发送它的LSA更新。此时, NSF Helpers认为到这一次的完美重启已经结束了) 马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由协议Graceful Restart介绍(4) Graceful restart is used in the following scenarios: (完美重启用于如下环境) Second recovery attempt after the process experiences problems within a 4-minute i
48、nterval(第二个恢复的尝试,当一个进程在4分钟的间隔内经历故障) Manual restart of the process using the restart ospf command(手动重启进程)Active supervisor removal(Active引擎被移除)Active supervisor reload using the reload module active-sup command(Active引擎重启,使用“reload module active-sup”命令)马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第二部分:配置动态路由
49、协议测试Graceful Restart介绍N7K-4持续Ping测试网络的通讯状况:DC1-N7K-4# ping 172.16.13.1 count 100000查看重启进程前的进程ID:DC1-N7K-1# show processes | in ospf15094S455fa9f09-VLospf重启N7K-1的OSPF进程:DC1-N7K-1# restart ospf 1查看重启进程后的进程ID:DC1-N7K-1# show processes | in ospf15332S455fa9f010-VLospf断(Ping测试),能够看到OSPF整个重启过程中数据层面的流量没有邻居
50、重新交换信息的过程。 马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第三部分:配置VTP与STP第三部分 配置VTP与STP马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第三部分:配置VTP与STPN7K-3上配置Trunk,VLAN和VTPDC1-N7K-3(config)# interface e3/21DC1-N7K-3(config-if)# switchport mode trunk DC1-N7K-3(config-if)# no shutdownDC1-N7K-3(config)# vlan 10DC1-N7K-3(conf
51、ig-vlan)# no shutdown DC1-N7K-3(config-vlan)# vlan 20DC1-N7K-3(config-vlan)# no shutdown DC1-N7K-3(config-vlan)# exitDC1-N7K-3(config)# feature vtpDC1-N7K-3(config)# vtp domain mingjiao DC1-N7K-3(config)# vtp password cisco DC1-N7K-3(config)# vtp mode server马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第三部分:
52、配置VTP与STPN5K-1上配置Trunk和VTPN5K-1(config)# interface e1/21,e1/31N5K-1(config-if-range)# switchport mode trunk N5K-1(config-if-range)# exitN5K-1(config)# feature vtpN5K-1(config)# vtp domain mingjiao N5K-1(config)# vtp password cisco N5K-1(config)# vtp mode client马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第三
53、部分:配置VTP与STPN7K-4上配置Trunk和VTPDC1-N7K-4(config)# interface e3/31DC1-N7K-4(config-if)# switchport mode trunk DC1-N7K-4(config-if)# no shutdownDC1-N7K-4(config-if)# exitDC1-N7K-4(config)# feature vtpDC1-N7K-4(config)# vtp domain mingjiao DC1-N7K-4(config)# vtp password cisco DC1-N7K-4(config)# vtp mode
54、 client马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第三部分:配置VTP与STP调整STPNX-OS支持MST和rapid-pvst两种STP模式,默认模式为rapid-pvstDC1-N7K-3(config)# spanning-tree vlan 10 root primary DC1-N7K-3(config)# spanning-tree vlan 20 root secondaryDC1-N7K-4(config)# spanning-tree vlan 10 root secondary DC1-N7K-4(config)# spanning-
55、tree vlan 20 root primary马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第三部分:配置VTP与STPN7K-3查看STP马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第三部分:配置VTP与STPN7K-4查看STP马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第三部分:配置VTP与STPN5K-1查看STP马海波/现任明教教主Nexus交换机系列 Nexus L2 L3配置介绍 第三部分:配置VTP与STPN7K-3配置MSTDC1-N7K-3(config)# no spanning-tree vlan 10 root DC1-N7K-3(config)# no spanning-tree vlan 20 rootDC1-N7K-3(config)# spanning-tree mode mstDC1-N7K-3(config)# spanning-tree mst configuration DC1-N7K-3(config-ms
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2024版股权转让合同:公司股权交易2篇
- 商铺租赁意向协议书
- 二零二四年度智能化安防系统合同2篇
- 发光字生产厂家2024年度供货与安装合同3篇
- 房屋住宅租赁合同3篇
- 牙科根管治疗流程
- 2024版商标许可使用合同内容详解2篇
- 河北农业大学现代科技学院《结构力学》2021-2022学年第一学期期末试卷
- 昆明市环保局2024年度玻璃钢化粪池采购与安装合同3篇
- 2024年度富士康企业合作研发合同3篇
- 恙虫病患者的护理查房
- 人生四时唐诗九味
- 基模高斯光束光斑半径
- 2024年高中学业水平合格性考试数学模拟试卷试题(含答案详解)
- 工业自动化中的智能装配线布局
- 社会心理学研究中的数据分析方法
- 人教版三年级数学上册“双减”作业设计 7.3周长的认识(解析版)
- 曼昆宏观经济学课后习题答案
- 北京市社保培训课件
- 防止生产现场滑倒事故的安全培训
- 气相色谱法(样品前处理)课件
评论
0/150
提交评论