CCNP642-892真实考试实验题-2
创始人
2024-06-10 11:21:21
0

SIM 1: Spanning Tree

 

-Switch should not participate in VTP

-Switch should forward VTP advertisement that are received on trunk ports

-All non-trunking interfaces (f0/1-f0/24) should immediately to the forwarding state of the Spanning tree.

-Config all Fast Ethernet port such as they are nontrunking.

*But dont enter 'vtp mode transparent' command at begining of configuration. if you do that you will not be able to add vlan 10 to the switch. vlan 10 is not existing in the switch and it needs to be created, it will create automatically if you follow the pass4sure answer. In transparent mode vlan creation is not possible. So, do every configuration and the last moment change the vtp mode to transparent.

Switch#conf t

Switch(config)#interface range fa0/1 - 24

Switch(config-if-range)#switchport mode access (Brings the interfaces into access mode)

Switch(config-if-range)#spanning-tree portfast (Enables the PortFast on interface.)

_The fastEthernet interfaces 0/12 through 0/24 should be placed in VLAN 20

Switch(config)#interface range fa0/12 - 24

Switch(config-if-range)#switchport access vlan 20 (Makes the members of vlan 20)

Switch(config-if-range)#exit

Switch(config)#vtp mode transparent

Switch(config)#exit

Switch#copy run start

Spanning tree PortFast is a Catalyst feature that causes a switch or trunk port to enter the spanning tree Forwarding state immediately, bypassing the Listening and Learning states. IOS-based switches only use PortFast on access ports connected to end stations. When a device is connected to a port, the port normally enters the spanning tree Listening state. When the Forward Delay timer expires, the port enters the Learning state. When the Forward Delay timer expires a second time, the port is transitioned to the Forwarding or Blocking state. When PortFast is enabled on a switch or trunk port, the port is immediately transitioned to the Forwarding state. As soon as the switch detects the link, the port is transitioned to the Forwarding state (less than 2 seconds after the cable is plugged in).

SIM 2 : VTP

 

These are your specific tasks:

1. Configure the VTP information with the distribution layer switch as the VTP server

DLSwitch#conf t

DLSwitch(config)#vtp mode server

DLSwitch(config)#vtp domain CISCO

2. Configure VLANs on the distribution layer switch

DLSwitch(config)#vlan 20

DLSwitch(config)#vlan 21

3.Configure Ip address for Vlans :

DLSwitch(config)#int vlan 20

DLSwitch(if-config)#ip add 172.16.200.1 255.255.255.0

DLSwitch(if-config)#no shut

DLSwitch(if-config)#int vlan 21

DLSwitch(if-config)#ip add 172.16.39.1 255.255.255.0

DLSwitch(if-config)#no shut

DLSwitch(if-config)#exit

4. Configure inter-VLAN routing on the distribution layer switch

DLS

5. Configure the VTP information with the access layer switch as a VTP client

ALSwitch#conf t

ALSwitch(config)#vtp mode client

ALSwitch(config)#vtp domain CISCO

ALSwitch(config)#exit

ALSwitch#copy run start

SIM 3: EIGRP - ISIS

 
 

- Seed metric for IS-IS must be set to 15. Redistribute EIGPR routes into IS-IS as Level-1 routes.

Cordon# conf t

Cordon(config)# router isis

Cordon(config-router)# redistribute eigrp 100 level-1 metric 15

- Seed metric for EIGRP must have the following characteristics: Bandwidth=256 Kbps; Delay=4 ms; Reliability=255; Load=1; MTU=1500. Only redistribute Level-1 IS-IS routes into EIGRP.

+ 1 milisecond(ms) = 1000 microsecond

+ 1 second(s)         = 1000,000 microsecond

+ Delay                  = microsecond /10

=> 4 (ms)              = 4000 / 10 = 400

Cordon(config)# router eigrp 100

Cordon(config-router)# redistribute isis level-1 metric 256 400 255 1 1500

Cordon(config-router)# redistribute connected

Cordon# copy run start

- Enter "redistribute connected" command because address of ISIS is NET address, NOT network address. When we redistribute, we need "redistribute connected" command. ISIS just redistributed routes that have " i " word at header. Example:

Condon# sh ip route

C 192.168.74.4.0 ( C is connected, NOT " i ")

So, 192.168.74.0 network will NOT redistributed to Trebuchet router if you do NOT enter "redistribute connected" command.

SIM 4 : OSPF

 
 

The current situation is such as Area 0 and Area 2 have been configured correctly as follows:

-the S0/1 interface of Atlanta is in Area 0.

-The S0/0 interface of StLouis is in Area 0.

-The loopback address of Atlanta is in Area2.

Your boss at the Seattle, has asked you to Area 1 as follows:

-the S0/0 interface of Seattle should be in Area 1

-the S0/1 interface of StLouis should be in Area 1

-no other interfaces should be in Area 1

-no external routes or inter-area, with the exception of the default route, should be receive by Area 1. As a final advice Seattle tells you to make sure that you use the appropriate OSPF mask.

Seattle# conf t

Seattle(config)# router ospf 1

Seattle(config-router)# network 192.168.8.4 0.0.0.3 area 1

Seattle(config-router)# area 1 stub (This command is configured on each router in the stub location)

Seattle(config-router)# end

Seattle# copy run start

StLouis# conf t

StLouis(config)# router ospf 1

StLouis(config-router)# network 192.168.8.4 0.0.0.3 area 1

StLouis(config-router)# area 1 stub no-summary (The no-summary keyword creates a totally stubby area)

StLouis(config-router)# end

StLouis# copy run start

- Stub area -A stub area is an area that does not accept information about routes external to the autonomous system, the OSPF internetwork, such as routes from non-OSPF sources. If routers need to reach networks outside the autonomous system, they use a default route. A default route is noted as 0.0.0.0/0.

- Totally stubby area - A totally stubby area is an area that does not accept external autonomous system (AS) routes and summary routes from other areas internal to the autonomous system. Instead, if the router needs to send a packet to a network external to the area, it sends it using a 0.0.0.0/0 default route. Totally stubby areas are a Cisco proprietary feature.

witch#ip routing

DLSwitch#copy run start

【编辑推荐】

  1. 最新版思科CCNP认证教材介绍
  2. 介绍思科认证CCNP学习方法
  3. CCNP配置实验之CCNP-BGP/MPLS VPN配置

相关内容

热门资讯

如何允许远程连接到MySQL数... [[277004]]【51CTO.com快译】默认情况下,MySQL服务器仅侦听来自localhos...
如何利用交换机和端口设置来管理... 在网络管理中,总是有些人让管理员头疼。下面我们就将介绍一下一个网管员利用交换机以及端口设置等来进行D...
施耐德电气数据中心整体解决方案... 近日,全球能效管理专家施耐德电气正式启动大型体验活动“能效中国行——2012卡车巡展”,作为该活动的...
Windows恶意软件20年“... 在Windows的早期年代,病毒游走于系统之间,偶尔删除文件(但被删除的文件几乎都是可恢复的),并弹...
20个非常棒的扁平设计免费资源 Apple设备的平面图标PSD免费平板UI 平板UI套件24平图标Freen平板UI套件PSD径向平...
规避非法攻击 用好路由器远程管... 单位在市区不同位置设立了科技服务点,每一个服务点的员工都通过宽带路由器进行共享上网,和单位网络保持联...
范例解读VB.NET获取环境变... VB.NET编程语言的使用范围非常广泛,可以帮助开发人员处理各种程序中的需求,而且还能对移动设备进行...
德国电信门户网站可实时显示全球... 德国电信周三推出一个门户网站,直观地实时提供其安装在全球各地的传感器网络检测到的网络攻击状况。该网站...