+ All Categories
Home > Documents > Guia para packetracer

Guia para packetracer

Date post: 23-Dec-2015
Category:
Upload: mago-zarate
View: 223 times
Download: 1 times
Share this document with a friend
Description:
Con esta guia pueden aprender a usar el paquetracer
15
Tarea 1: Configurar y verificar las configuraciones básicas del dispositivo Paso 1. Configurar comandos básicos. Configure cada switch con los siguientes comandos básicos. Packet Tracer sólo califica los nombres de hosts y gateways por defecto. Nombres de host Bandera Habilitar contraseña secreta Configuraciones de la línea Cifrado de Servicio Puertas de enlace predeterminada del switch S1 Switch>en Switch#conf t Enter configuration commands, one per line. End with CNTL/Z. Switch(config)#hostname S1 S1(config)#banner motd #Welcome Authorized Users Unauthorized access prohibited!# S1(config)#enable secret class S1(config)#line vty 0 4 S1(config-line)#password cisco S1(config-line)#login S1(config-line)#exit S1(config)#service password-encryption S1(config)#ip default-gateway 172.17.99.1 S1(config)#
Transcript
Page 1: Guia para packetracer

Tarea 1: Configurar y verificar las configuraciones básicas del dispositivo Paso 1. Configurar comandos básicos. Configure cada switch con los siguientes comandos básicos. Packet Tracer sólo califica los nombresde hosts y gateways por defecto. Nombres de host Bandera Habilitar contraseña secreta Configuraciones de la línea Cifrado de Servicio Puertas de enlace predeterminada del switch

S1 Switch>en Switch#conf t Enter configuration commands, one per line. End with CNTL/Z. Switch(config)#hostname S1 S1(config)#banner motd #Welcome Authorized Users Unauthorized access prohibited!# S1(config)#enable secret class S1(config)#line vty 0 4 S1(config-line)#password cisco S1(config-line)#login S1(config-line)#exit S1(config)#service password-encryption S1(config)#ip default-gateway 172.17.99.1

S1(config)#

Page 2: Guia para packetracer

S2 Switch>en Switch#conf t Enter configuration commands, one per line. End with CNTL/Z. Switch(config)#hostname S2 S2(config)#banner motd #Welcome Authorized Users Unauthorized access prohibited!# S2(config)#enable secret class S2(config)#line vty 0 4 S2(config-line)#password cisco S2(config-line)#login S2(config-line)#exit S2(config)#service password-encryption S2(config)#ip default-gateway 172.17.99.1

S2(config)#

S3 Switch>en Switch#conf t Enter configuration commands, one per line. End with CNTL/Z. Switch(config)#hostname S3 S3(config)#banner motd #Welcome Authorized Users Unauthorized access prohibited!# S3(config)#enable secret class S3(config)#line vty 0 4 S3(config-line)#password cisco S3(config-line)#login S3(config-line)#exit S3(config)#service password-encryption S3(config)#ip default-gateway 172.17.99.1

S3(config)#

Paso 2. Configurar la interfaz VLAN de administración en S1, S2 y S3. Crear y habilitar la interfaz VLAN 99 en cada switch. Utilice la tabla de direccionamiento para la configuración de direcciones.

S1 S1(config)#int vlan 99 S1(config-if)#ip address 172.17.99.31 255.255.255.0 S1(config-if)#exit

S1(config)#

S2 S2(config)#int vlan 99 S2(config-if)#ip address 172.17.99.32 255.255.255.0 S2(config-if)#exit

Page 3: Guia para packetracer

S2(config)#

S3 S3(config)#int vlan 99 S3(config-if)#ip address 172.17.99.33 255.255.255.0 S3(config-if)#exit

S3(config)#

Paso 3. Verificar los resultados. Su porcentaje de finalización debe ser del 13%. Si no, haga clic en Verificar resultados para ver qué componentes requeridos aún no se han completado.

Tarea 2: Configurar VTP Paso 1. Configurar el modo VTP en los tres switches. Configure S1 como el servidor. Configure S2 y S3 como clientes.

S1 S1(config)#vtp mode server Setting device to VTP SERVER mode.

S1(config)#

S2 S2(config)#vtp mode client Setting device to VTP CLIENT mode.

S2(config)#

S3 S3(config)#vtp mode client Setting device to VTP CLIENT mode.

S3(config)#

Paso 2. Configurar el nombre de dominio VTP en los tres switches. Use CCNA como el nombre de dominio VTP.

S1 S1(config)#vtp domain CCNA Changing VTP domain name from NULL to CCNA

S1(config)#

S2 S2(config)#vtp domain CCNA Changing VTP domain name from NULL to CCNA

S2(config)#

S3 S3(config)#vtp domain CCNA Changing VTP domain name from NULL to CCNA

S3(config)#

Paso 3. Configurar la contraseña de dominio VTP en los tres switches.

Page 4: Guia para packetracer

Utilice cisco como contraseña de dominio VTP.

S1 S1(config)#vtp password cisco Setting device VLAN database password to cisco

S1(config)#

S2 S2(config)#vtp password cisco Setting device VLAN database password to cisco

S2(config)#

S3 S3(config)#vtp password cisco Setting device VLAN database password to cisco

S3(config)#

Paso 4. Verificar los resultados. Su porcentaje de finalización debe ser del 21%. Si no, haga clic en Verificar resultados para ver qué componentes requeridos aún no se han completado.

Tarea 3: Configurar Trunking Paso 1. Configurar enlaces troncales en S1, S2 y S3. Configure las interfaces correspondientes como troncos y asigne VLAN 99 como la VLAN nativa.

S1 S1(config)#interface range f0/1 - f0/5 S1(config-if-range)#switchport mode trunk S1(config-if-range)#switchport trunk native vlan 99 S1(config-if-range)#no sh

S1(config-if-range)#exit

S2 S2(config)#interface range f0/1 - f0/4 S2(config-if-range)#switchport mode trunk S2(config-if-range)#switchport trunk native vlan 99 S2(config-if-range)#no sh S2(config-if-range)#exit

S2(config)#

S3 S3(config)#interface range f0/1 - f0/4 S3(config-if-range)#switchport mode trunk S3(config-if-range)#switchport trunk native vlan 99 S3(config-if-range)#no sh S3(config-if-range)#exit

S3(config)#

Paso 2. Verificar los resultados.

Page 5: Guia para packetracer

Su porcentaje de finalización debe ser del 44%. Si no, haga clic en Verificar resultados para ver qué componentes requeridos aún no se han completado.

Tarea 4: Configurar las VLAN Paso 1. Crear las VLAN en S1. Crear y nombrar las siguientes VLAN en S1 solamente. VTP anuncia las nuevas VLAN a S2 y S3. VLAN 10 Facultad / Personal VLAN 20 Estudiantes VLAN 88 Wireless (Guest) VLAN 99 Gestión y predeterminado

S1 S1(config)#vlan 10 S1(config-vlan)#name Faculty/Staff S1(config-vlan)#exit S1(config)#vlan 20 S1(config-vlan)#name Students S1(config-vlan)#exit S1(config)#vlan 88 S1(config-vlan)#name Wireless(Guest) S1(config-vlan)#exit S1(config)#vlan 99 S1(config-vlan)#name Management&Default S1(config-vlan)#exit

S1(config)#

Paso 2. Verificar que la VLAN se hayan enviado a S2 y S3. Utilice los comandos apropiados para verificar que S2 y S3 ahora tienen las VLAN creadas en S1. Puede tomar unos minutos para paquetes

Tracer para simular las publicaciones VTP.

S2

S2#sh vlan

VLAN Name Status Ports ---- -------------------------------- --------- ------------------------------- 1 default active Fa0/5, Fa0/6, Fa0/7, Fa0/8 Fa0/9, Fa0/10, Fa0/11, Fa0/12 Fa0/13, Fa0/14, Fa0/15, Fa0/16 Fa0/17, Fa0/18, Fa0/19, Fa0/20 Fa0/21, Fa0/22, Fa0/23, Fa0/24 Gig1/1, Gig1/2 10 Faculty/Staff active 20 Students active 88 Wireless(Guest) active

Page 6: Guia para packetracer

99 Management&Default active 1002 fddi-default act/unsup 1003 token-ring-default act/unsup 1004 fddinet-default act/unsup

1005 trnet-default act/unsup

S3

S3#sh vlan

VLAN Name Status Ports ---- -------------------------------- --------- ------------------------------- 1 default active Fa0/5, Fa0/6, Fa0/7, Fa0/8 Fa0/9, Fa0/10, Fa0/11, Fa0/12 Fa0/13, Fa0/14, Fa0/15, Fa0/16 Fa0/17, Fa0/18, Fa0/19, Fa0/20 Fa0/21, Fa0/22, Fa0/23, Fa0/24 Gig1/1, Gig1/2 10 Faculty/Staff active 20 Students active 88 Wireless(Guest) active 99 Management&Default active 1002 fddi-default act/unsup 1003 token-ring-default act/unsup 1004 fddinet-default act/unsup

1005 trnet-default act/unsup

Paso 3. Verificar los resultados. Su porcentaje de finalización debe ser del 54%. Si no, haga clic en Verificar resultados para ver qué componentes requeridos aún no se han completado.

Tarea 5: Asignar VLAN a puertos Paso 1. Asignar las VLAN para acceder a los puertos en S2 y S3. Asigne los puertos de acceso de PC a VLAN: VLAN 10: PC1 VLAN 20: PC2 Asigne los puertos de acceso del router inalámbrico a la VLAN 88.

S2 S2(config)#int fa 0/11 S2(config-if)#switchport mode access S2(config-if)#switchport access vlan 10 S2(config-if)#int fa 0/18 S2(config-if)#switchport mode access S2(config-if)#switchport access vlan 20 S2(config-if)#int fa 0/7 S2(config-if)#switchport mode access

Page 7: Guia para packetracer

S2(config-if)#switchport access vlan 88 S2(config-if)#exit

S2(config)#

S3 S3(config)#int fa 0/7 S3(config-if)#switchport mode access S3(config-if)#switchport access vlan 88 S3(config-if)#exit

S3(config)#

Paso 2. Verificar VLAN Implementación. Use los comandos adecuados para verificar su aplicación VLAN.

S2#sh vlan

VLAN Name Status Ports ---- -------------------------------- --------- ------------------------------- 1 default active Fa0/5, Fa0/6, Fa0/8, Fa0/9 Fa0/10, Fa0/12, Fa0/13, Fa0/14 Fa0/15, Fa0/16, Fa0/17, Fa0/19 Fa0/20, Fa0/21, Fa0/22, Fa0/23 Fa0/24, Gig1/1, Gig1/2 10 Faculty/Staff active Fa0/11 20 Students active Fa0/18 88 Wireless(Guest) active Fa0/7 99 Management&Default active 1002 fddi-default act/unsup 1003 token-ring-default act/unsup 1004 fddinet-default act/unsup

1005 trnet-default act/unsup

S3#sh vlan

VLAN Name Status Ports ---- -------------------------------- --------- ------------------------------- 1 default active Fa0/5, Fa0/6, Fa0/8, Fa0/9 Fa0/10, Fa0/11, Fa0/12, Fa0/13 Fa0/14, Fa0/15, Fa0/16, Fa0/17 Fa0/18, Fa0/19, Fa0/20, Fa0/21 Fa0/22, Fa0/23, Fa0/24, Gig1/1 Gig1/2 10 Faculty/Staff active 20 Students active 88 Wireless(Guest) active Fa0/7

Page 8: Guia para packetracer

99 Management&Default active 1002 fddi-default act/unsup 1003 token-ring-default act/unsup 1004 fddinet-default act/unsup

1005 trnet-default act/unsup

Paso 3. Verificar los resultados. Su porcentaje de finalización debe ser del 61%. Si no, haga clic en Verificar resultados para ver qué componentes requeridos aún no se han completado.

Tarea 6: Configurar STP Paso 1. Asegúrese de que S1 sea el puente raíz para todas las instancias del árbol de expansión. Utilice prioridad 4096.

S1

S1(config)#spanning-tree vlan 1,10,20,88,99 priority 4096

Paso 2. Verificar que S1 sea el puente raíz.

S1#sh spanning-tree VLAN0001 Spanning tree enabled protocol ieee Root ID Priority 4097 Address 0040.0B60.D3DB This bridge is the root

Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec

Bridge ID Priority 4097 (priority 4096 sys-id-ext 1) Address 0040.0B60.D3DB Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec

Aging Time 20

Interface Role Sts Cost Prio.Nbr Type ---------------- ---- --- --------- -------- -------------------------------- Fa0/1 Desg FWD 19 128.1 P2p Fa0/2 Desg FWD 19 128.2 P2p Fa0/3 Desg FWD 19 128.3 P2p Fa0/4 Desg FWD 19 128.4 P2p

Fa0/5 Desg FWD 19 128.5 P2p

VLAN0010 Spanning tree enabled protocol ieee Root ID Priority 4106 Address 0040.0B60.D3DB This bridge is the root

Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec

Bridge ID Priority 4106 (priority 4096 sys-id-ext 10)

Page 9: Guia para packetracer

Address 0040.0B60.D3DB Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec

Aging Time 20

Interface Role Sts Cost Prio.Nbr Type ---------------- ---- --- --------- -------- -------------------------------- Fa0/1 Desg FWD 19 128.1 P2p Fa0/2 Desg FWD 19 128.2 P2p Fa0/3 Desg FWD 19 128.3 P2p Fa0/4 Desg FWD 19 128.4 P2p

Fa0/5 Desg FWD 19 128.5 P2p

VLAN0020 Spanning tree enabled protocol ieee Root ID Priority 4116 Address 0040.0B60.D3DB This bridge is the root

Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec

Bridge ID Priority 4116 (priority 4096 sys-id-ext 20) Address 0040.0B60.D3DB Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec

Aging Time 20

Interface Role Sts Cost Prio.Nbr Type ---------------- ---- --- --------- -------- -------------------------------- Fa0/1 Desg FWD 19 128.1 P2p Fa0/2 Desg FWD 19 128.2 P2p Fa0/3 Desg FWD 19 128.3 P2p Fa0/4 Desg FWD 19 128.4 P2p

Fa0/5 Desg FWD 19 128.5 P2p

VLAN0088 Spanning tree enabled protocol ieee Root ID Priority 4184 Address 0040.0B60.D3DB This bridge is the root

Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec

Bridge ID Priority 4184 (priority 4096 sys-id-ext 88) Address 0040.0B60.D3DB Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec

Aging Time 20

Interface Role Sts Cost Prio.Nbr Type ---------------- ---- --- --------- --------

Page 10: Guia para packetracer

-------------------------------- Fa0/1 Desg FWD 19 128.1 P2p Fa0/2 Desg FWD 19 128.2 P2p Fa0/3 Desg FWD 19 128.3 P2p Fa0/4 Desg FWD 19 128.4 P2p

Fa0/5 Desg FWD 19 128.5 P2p

VLAN0099 Spanning tree enabled protocol ieee Root ID Priority 4195 Address 0040.0B60.D3DB This bridge is the root

Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec

Bridge ID Priority 4195 (priority 4096 sys-id-ext 99) Address 0040.0B60.D3DB Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec

Aging Time 20

Interface Role Sts Cost Prio.Nbr Type ---------------- ---- --- --------- -------- -------------------------------- Fa0/1 Desg FWD 19 128.1 P2p Fa0/2 Desg FWD 19 128.2 P2p Fa0/3 Desg FWD 19 128.3 P2p Fa0/4 Desg FWD 19 128.4 P2p

Fa0/5 Desg FWD 19 128.5 P2p

Paso 3. Verificar los resultados. Su porcentaje de finalización debe ser del 66%. Si no, haga clic en Verificar resultados para ver qué componentes requeridos aún no se han completado.

Tarea 7: Configurar router-on-a-Stick enrutamiento entre VLAN Paso 1. Configurar subinterfaces. Configure los Fa0 / 1 subinterfaces en R1 utilizando la información de la tabla de direccionamiento.

R1 R1#conf t Enter configuration commands, one per line. End with CNTL/Z. R1(config)#interface fa 0/1.10 R1(config-subif)#encapsulation dot1Q 10 R1(config-subif)#ip address 172.17.10.1 255.255.255.0 R1(config-subif)#exit R1(config)#interface fa 0/1.20 R1(config-subif)#encapsulation dot1Q 20 R1(config-subif)#ip address 172.17.20.1 255.255.255.0 R1(config-subif)#exit

Page 11: Guia para packetracer

R1(config)#interface fa0/1.88 R1(config-subif)#encapsulation dot1Q 88 R1(config-subif)#ip address 172.17.88.1 255.255.255.0 R1(config-subif)#exit R1(config)#interface fa0/1.99 R1(config-subif)#encapsulation dot1Q 99 native R1(config-subif)#ip address 172.17.99.1 255.255.255.0

R1(config-subif)#exit

Paso 2. Verificar los resultados. Su porcentaje de finalización debe ser del 79%. Si no, haga clic en Verificar resultados para ver qué componentes requeridos aún no se han completado.

Tarea 8: Configurar Conectividad Inalámbrica Paso 1. Configure el direccionamiento IP para WRS2 y WRS3. Configurar ajustes de LAN y luego direccionamiento estático en las interfaces de Internet tanto paraWRS2 y WRS3 utilizando las direcciones de la topología.

Nota: Un error en Packet Tracer puede evitar que la asignación de la dirección IP estática en primerlugar. Una solución para este problema es configurar los ajustes de LAN primero bajo paraconfiguración de red. Guarde los ajustes. A continuación, configure la información de IP estáticabajo Internet Tipo de conexión y guardar los ajustes de nuevo.

Page 12: Guia para packetracer

Paso 2. Configurar los ajustes de red inalámbrica. Los SSID para los routers son WRS2_LAN y WRS3_LAN, respectivamente. La WEP para ambos es 12345abcde.

Page 13: Guia para packetracer

Paso 3. Configurar los routers inalámbricos para el acceso remoto. Configurar la contraseña de administración como cisco123. Habilitar la administración remota.

Page 14: Guia para packetracer

Paso 4. Configurar PC3 y PC4 para acceder a la red usando DHCP. PC3 se conecta a la WRS2_LAN, y PC4 se conecta a la WRS3_LAN.

Page 15: Guia para packetracer

Recommended