Actividad 6.4.1
Actividad 6.4.1
Actividad 6.4.1
Laboratorio 6.4.1
Tabla de direccionamiento
Dispositivo Nombre de host S1 S2 S3 R1 R1 PC1 PC2 PC3 Servidor Interfaz VLAN 99 VLAN 99 VLAN 99 Fa 0/0 Fa 0/1 NIC NIC NIC NIC Direccin IP 172.17.99.11 172.17.99.12 172.17.99.13 172.17.50.1 172.17.10.21 172.17.20.22 172.17.30.23 172.17.50.254 Mscara de subred 255.255.255.0 255.255.255.0 255.255.255.0 255.255.255.0 255.255.255.0 255.255.255.0 255.255.255.0 255.255.255.0 Gateway (puerta de salida) predeterminada 172.17.99.1 172.17.99.1 172.17.99.1 No aplicable No aplicable 172.17.10.1 172.17.20.1 172.17.30.1 172.17.50.1
Objetivos de aprendizaje
Al completar esta prctica de laboratorio podr: y y y y y y y y Cablear una red segn el diagrama de topologa Borrar las configuraciones y volver a cargar un switch y un router al estado predeterminado Realizar las tareas bsicas de configuracin en una LAN conmutada y un router. Configurar las VLAN y el protocolo VLAN Trunking (VTP) en todos los switches Demostrar y explicar el impacto de los lmites de la Capa 3 impuestas al crear las VLAN. Configurar un router para admitir el enlace 802.1q en una interfaz Fast Ethernet Configurar un router con subinterfaces que correspondan a las VLAN configuradas Demostrar y explicar el enrutamiento entre VLAN
default
active
Fa0/1, Fa0/2, Fa0/3, Fa0/4 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, Fa 0/24 Gig1/1, Gig1/2
Se muestran los resultados para S1 Switch>enable Switch#configure terminal Ingrese los comandos de configuracin, uno por lnea.
Switch(config)# hostname S1 S1(config)# enable secret class S1(config)# no ip domain -lookup S1(config)# ip default -gateway 172 .17.99.1 S1(config)# line console 0 S1(config -line)#password cisco S1(config -line)#login S1(config -line)#line vty 0 15 S1(config -line)#password cisco S1(config -line)#login S1(config -line)#end %SYS-5-CONFIG_I:Configurado desde la consola por la consola S1#copy running -configstartup -config Destination filename [startup-config]? [ enter] Creando la configuracin...
S3(config)#end
Paso 2: Configurar los puertos de enlace troncales y designar la VLAN nativa para los enlaces troncales.
Configure Fa0/1 a Fa0/5 como puertos de enlace y designe la VLAN 99 como la VLAN nativa para estos enlaces troncales. Simplifique esta tarea con el comando interface range en el modo de configuracin global. S1(config)# interface range fa0/1 -4 S1(config -if-range)#switchport mode trunk S1(config -if-range)#switchport trunk native vlan 99 S1(config -if-range)#no shutdown S1(config -if-range)#end S2(config)# interface range fa0/1 -4 S2(config -if-range)#switchport mode trunk S2(config -if-range)#switchport trunk native vlan 99 S2(config -if-range)#no shutdown S2(config -if-range)#end S3(config)# interface range fa0/1 -4 S3(config -if-range)#switchport mode trunk S3(config -if-range)#switchport trunk native vlan 99 S3(config -if-range)#no shutdown S3(config -if-range)#end
VLAN VLAN 99 VLAN 10 VLAN 20 VLAN 30 S1(config)# vlan 99 S1(config-vlan)#name S1(config -vlan)#exit S1(config)# vlan 10 S1(config -vlan)#name S1(config -vlan)#exit S1(config)# vlan 20 S1(config -vlan)#name S1(config -vlan)#exit S1(config)# vlan 30 S1(config -vlan)#name S1(config -vlan)#exit
Verifique que se hayan creado las VLAN en S1 con el comando show vlanbrief.
----------------------------- --------- --------------------1 default active Fa0/1, Fa0/2, Fa0/4, 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, Gi0/1 Gi0/2 10 faculty/staff active 20 students active 30 guest active 99 management active
y Asignar una direccin IP desde la VLAN a la subinterfaz Los comandos son los siguientes: R1(config)# interface fastethernet 0/1 R1(config-if)#no shutdown R1(config -if)#interface fastethernet 0/1 .1 R1(config -subif)#encapsulation dot1q 1 R1(config -subif)#ip address 172 .17.1.1 255.255.255.0 R1(config -if)#interface fastethernet 0/1 .10 R1(config -subif)#encapsulation dot1q 10 R1(config -subif)#ip address 172 .17.10.1 255.255.255.0 R1(config -if)#interface fastethernet 0/1 .20 R1(config -subif)#encapsulation dot1q 20 R1(config -subif)#ip address 172 .17.20.1 255.255.255.0 R1(config -if)#interface fastethernet 0/1 .30 R1(config -subif)#encapsulation dot1q 30
R1(config -subif)#ip address 172 .17.30.1 255.255.255.0 R1(config -if)#interface fastethernet 0/1 .99 R1(config -subif)#encapsulation dot1q 99 native R1(config -subif)#ip address 172 .17.99.1 255.255.255.0 Observe los siguientes puntos en esta configuracin: y La interfaz fsica se habilita usando el comando no shutdown porque las interfaces de los router estn inactivas de manera predeterminada. Las interfaces virtuales estn activas de manera predeterminada. La subinterfaz puede usar cualquier nmero que pueda describirse con 32 bits, pero es buen ejercicio asignar el nmero de la VLAN como el nmero de la interfaz, como se hizo aqu. La VLAN nativa est especificada en el dispositivo L3 a fin de que sea consistente con los switches. De lo contrario, la VLAN 1 sera la VLAN nativa predeterminada, y no habra comunicacin entre el router y la VLAN de administracin en los switches.
y y
Tarea 6: Reflexin
En la Tarea 5 se recomend que se configure la VLAN 99 como la VLAN nativa en la configuracin de la interfaz del router Fa0/0.99. Por qu fallaron los paquetes del router o de los hosts cuando trataban de llegar a las interfaces de administracin del switch si se dejaba la VLAN nativa en su configuracin predeterminada? La VLAN nativa est sin etiquetar. Si el trfico de la VLAN 99 est sin etiquetar (como lo est, porque es nativa en los switches), el router no puede interpretar los datos porque no hay informacin de la VLAN en el encabezado, como se espera. a su vez, el router etiqueta todo el trfico de salida de la VLAN 99 y deja los
datos de la VLAN 1 sin etiquetar, por lo tanto los switches tampoco pueden interpretar correctamente.El trfico de la VLAN a las otras VLAN no debe estar afectado por la asignacin de la VLAN nativa.
Tarea 7: Limpieza
Borre las configuraciones y vuelva a cargar los switches. Desconecte y guarde el cableado. En caso de PC hosts que estn normalmente conectadas a otras redes (tales como la LAN de la escuela o de Internet) vuelva a conectar el cableado apropiado y restaure la configuracin de TCP/IP. Configuracionesfinales Router1 hostname R1 enable secret class noip domain lookup interface FastEthernet0/0 ip address 172.17.50.1 255.255.255.0 no shutdown ! interface FastEthernet0/1 no shutdown ! interface FastEthernet0/1,1 encapsulation dot1Q 1 ip address 172.17.1.1 255.255.255.0 ! interface FastEthernet0/1,10 encapsulation dot1Q 10 ip address 172.17.10.1 255.255.255.0 ! interface FastEthernet0/1,20 encapsulation dot1Q 20 ip address 172.17.20.1 255.255.255.0 ! interface FastEthernet0/1,30 encapsulation dot1Q 30 ip address 172.17.30.1 255.255.255.0 ! interface FastEthernet0/1,99 encapsulation dot1Q 99 native ip address 172.17.99.1 255.255.255.0 ! <output omitted - serial interfaces not configured> ! line con 0 line aux 0 linevty 0 4 login password cisco ! Switch 1 ! hostname S1 ! enable secret class ! noip domain lookup ! interface FastEthernet0/1 switchport trunk native vlan 99 switchport mode trunk ! interface FastEthernet0/2 switchport trunk native vlan 99
switchport mode trunk ! interface FastEthernet0/3 switchport trunk native vlan 99 switchport mode trunk ! interface FastEthernet0/4 switchport trunk native vlan 99 switchport mode trunk ! interface FastEthernet0/5 no shutdown ! <output omitted - all remaining ports in shutdown> ! interface Vlan1 noip address noip route -cache ! interface Vlan1 ip address 219,170,1000,1 255.255.255.0 no shutdown ! ip default -gateway 172.17.99.1 ip http server ! line con 0 logging synchronous linevty 0 4 login password cisco linevty 5 15 login password cisco ! end Switch 2 ! hostname S2 ! enable secret class ! noip domain lookup ! interface FastEthernet0/1 switchport trunk native vlan switchport mode trunk ! interface FastEthernet0/2 switchport trunk native vlan switchport mode trunk ! interface FastEthernet0/3 switchport trunk native vlan switchport mode trunk ! interface FastEthernet0/4 switchport trunk native vlan switchport mode trunk ! interface FastEthernet0/5 switchport access vlan 30
99
99
99
99
switchport mode access ! interface FastEthernet0/6 switchport access vlan 30 switchport mode access ! interface FastEthernet0/7 switchport access vlan 30 ! interface FastEthernet0/8 switchport access vlan 30 ! interface FastEthernet0/9 switchport access vlan 30 ! interface FastEthernet0/10 switchport access vlan 30 ! interface FastEthernet0/11 switchport a ccess vlan 10 switchport mode access ! interface FastEthernet0/12 switchport access vlan 10 ! interface FastEthernet0/13 switchport access vlan 10 ! interface FastEthernet0/14 switchport access vlan 10 ! interface FastEthernet0/15 switchport access vlan 10 ! interface FastEthernet0/16 switchport access vlan 10 ! interface FastEthernet0/17 switchport access vlan 10 ! interface FastEthernet0/18 switchport access vlan 20 ! interface FastEthernet0/19 switchport access vlan 20 ! interface FastEthernet0/20 switchport access vlan 20 ! interface FastEthernet0/21 switchport access vlan 20 ! interface FastEthernet0/22 switchport access vlan 20 ! interface FastEthernet0/23 switchport access vlan 20 ! interface FastEthernet0/24 switchport access vlan 20 ! interface Vlan1 noip address noip route -cache
! interface Vlan1 ip address 172.17.99.12 255.255.255.0 no shutdown ! ip default -gateway 172.17.99.1 ip http server ! line con 0 password cisco logging synchronous login linevty 0 4 password cisco login linevty 5 15 password cisco login ! end Switch 3 ! hostname S3 ! enable secret class ! noip domain lookup ! interface FastEthernet0/1 switchport trunk native vlan 99 switchport mode trunk ! interface FastEthernet0/2 switchport trunk native vlan 99 switchport mode trunk ! interface FastEthernet0/3 switchport trunk native vlan 99 switchport mode trunk ! interface FastEthernet0/4 switchport trunk native vlan 99 switchport mode trunk ! interface FastEthernet0/5 shutdown ! <output omitted - all remaining ports in shutdown> ! ! interface Vlan1 ip address 172.17.99.13 255.255.255.0 no shutdown ! ip default -gateway 172.17.99.1 ip http server ! control-plane ! ! line con 0 password cisco login