UNIVERSIDAD AUTÓNOMA DEL ESTADO DE MÉXICO
CENTRO UNIVERSITARIO UAEM ATLACOMULCO
YESENIA PATRICIA SALDIVAR VILLA
INGENIERÍA EN COMPUTACIÓN
17 de abril de 2013
ENRUTAMIENTO IP
PROPÓSITO DE APRENDIZAJE: el alumno conocerá y describirá las principales características del protocolo RIP mediante la configuración básica de una red de comunicaciones a partir del siguiente caso de uso.
La empresa “promociones y publicidades génesis” cuenta con una casa matriz ubicada en el estado de Nuevo León, cuenta con las siguientes aéreas recursos humanos, recursos financieros, gerencia general, diseño de publicidad y área de ventas, también cuenta con tres sucursales ubicadas en los estados León Guanajuato, Guerrero y el estado de México, cada una con una estructura organizacional semejante a la casa matriz. La empresa requiere un diseño de red que le permita establecer comunicación haciendo que cada departamento este comunicado independientemente del lugar físico en donde se encuentre ubicado el equipo.
La dirección de red en la que se pretende trabajar para esta empresa es 174.26.10.0
ALCANCES:
v El alumno hará uso con sus conocimientos relacionados con VLAN´S.
v El alumno hará uso del protocolo RIP.-
v El alumno podrá destacar las principales características del protocolo RIP utilizando VLAN’S.
REQUERIMIENTOS DE SOFTWARE
- Simulador Cisco Packet Tracer.
ACTIVIDAD
1.- Crear la red con 4 Routers donde cada uno de ellos tiene 1 Switch y cada Switch 5 maquinas.
2.- Configurar IP de cada maquina.
3.- Configurar los switch para cada Vlan´s
S_1(config)#vlan 2 //creación de vlan 2
S_1(config-vlan)#name paty
S_1(config-vlan)#exit
S_1(config)#vlan 3
S_1(config-vlan)#name saldivar
S_1(config-vlan)#exit
S_1(config)#vlan 4
S_1(config-vlan)#name villa
S_1(config-vlan)#exit
S_1(config)#exit
S_1#
%SYS-5-CONFIG_I: Configured from console by console
S_1#sh vlan
VLAN Name Status Ports
---- -------------------------------- --------- -------------------------------
1 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, Gig1/1
Gig1/2
2 paty active
3 saldivar active
4 villa active
1002 fddi-default act/unsup
1003 token-ring-default act/unsup
1004 fddinet-default act/unsup
1005 trnet-default act/unsup
VLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
1 enet 100001 1500 - - - - - 0 0
2 enet 100002 1500 - - - - - 0 0
3 enet 100003 1500 - - - - - 0 0
4 enet 100004 1500 - - - - - 0 0
1002 fddi 101002 1500 - - - - - 0 0
1003 tr 101003 1500 - - - - - 0 0
1004 fdnet 101004 1500 - - - ieee - 0 0
1005 trnet 101005 1500 - - - ibm - 0 0
Remote SPAN VLANs
------------------------------------------------------------------------------
Primary Secondary Type Ports
------- --------- ----------------- ------------------------------------------
- Habilitacion de hosts para cada Vlan’s
S_1#en
S_1#conf
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line. End with CNTL/Z.
S_1(config)#int range fa0/1-7//habilitacion de hosts de vlan 2
S_1(config-if-range)#switchport access vlan 2
S_1(config-if-range)#exit
S_1(config)#int range fa0/8-14 //habilitacion de hosts de vlan 3
S_1(config-if-range)#switchport access vlan 3
S_1(config-if-range)#exit
S_1(config)#int range fa0/15-21//habilitacion de hosts de vlan 4
S_1(config-if-range)#switchport access vlan 4
S_1(config-if-range)#exit
S_1(config)#
S_1(config)#interface fa0/24
S_1(config-if)#switchport mode trunk
S_1(config-if)#exit
S_1(config)#exit
S_1#
%SYS-5-CONFIG_I: Configured from console by console
S_1#sh interface trunk
Port Mode Encapsulation Status Native vlan
Fa0/24 on 802.1q trunking 1
Port Vlans allowed on trunk
Fa0/24 1-1005
Port Vlans allowed and active in management domain
Fa0/24 1,2,3,4
Port Vlans in spanning tree forwarding state and not pruned
Fa0/24 1,2,3,4
t2#
t2#sh vlan
VLAN Name Status Ports
---- -------------------------------- --------- -------------------------------
1 default active Fa0/22, Fa0/23, Gig1/1, Gig1/2
2 paty active Fa0/1, Fa0/2, Fa0/3, Fa0/4
Fa0/5, Fa0/6, Fa0/7
3 saldivar active Fa0/8, Fa0/9, Fa0/10, Fa0/11
Fa0/12, Fa0/13, Fa0/14
4 villa active Fa0/15, Fa0/16, Fa0/17, Fa0/18
Fa0/19, Fa0/20, Fa0/21
1002 fddi-default act/unsup
1003 token-ring-default act/unsup
1004 fddinet-default act/unsup
1005 trnet-default act/unsup
VLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
1 enet 100001 1500 - - - - - 0 0
2 enet 100002 1500 - - - - - 0 0
3 enet 100003 1500 - - - - - 0 0
4 enet 100004 1500 - - - - - 0 0
1002 fddi 101002 1500 - - - - - 0 0
1003 tr 101003 1500 - - - - - 0 0
1004 fdnet 101004 1500 - - - ieee - 0 0
1005 trnet 101005 1500 - - - ibm - 0 0
Remote SPAN VLANs
------------------------------------------------------------------------------
Primary Secondary Type Ports
------- --------- ----------------- ------------------------------------------
- Habilitacion de la interfaz 23 pero de modo trunk.
S_1#
S_1#
S_1#en
S_1#conf
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line. End with CNTL/Z.
S_1(config)#interface fa0/23
S_1(config-if)#switchport mode trunk
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/23, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/23, changed state to up
S_1(config-if)#exit
S_1(config)#exit
S_1#
%SYS-5-CONFIG_I: Configured from console by console
S_1#
S_1#sh interface trunk
Port Mode Encapsulation Status Native vlan
Fa0/23 on 802.1q trunking 1
Fa0/24 on 802.1q trunking 1
Port Vlans allowed on trunk
Fa0/23 1-1005
Fa0/24 1-1005
Port Vlans allowed and active in management domain
Fa0/23 1,2,3,4
Fa0/24 1,2,3,4
Port Vlans in spanning tree forwarding state and not pruned
Fa0/23 none
Fa0/24 1,2,3,4
S_1#sh interface trunk
Port Mode Encapsulation Status Native vlan
Fa0/23 on 802.1q trunking 1
Fa0/24 on 802.1q trunking 1
Port Vlans allowed on trunk
Fa0/23 1-1005
Fa0/24 1-1005
Port Vlans allowed and active in management domain
Fa0/23 1,2,3,4
Fa0/24 1,2,3,4
Port Vlans in spanning tree forwarding state and not pruned
Fa0/23 1,2,3,4
Fa0/24 1,2,3,4
S_1#
S_1 con0 is now available
Press RETURN to get started.
4.- Configuracion de Routers.
R_1(config)#interface fastEthernet 0/0.2
R_1(config-subif)#encapsulation dot1Q 2
R_1(config-subif)#ip address 174.26.1.1 255.255.255.0
R_1(config-subif)#exit
R_1(config)#interface fastEthernet 0/0.3
R_1(config-subif)#encapsulation dot1Q 3
R_1(config-subif)#ip address 174.26.2.1 255.255.255.0
R_1(config-subif)#exit
R_1(config)#interface fastEthernet 0/0.4
R_1(config-subif)#encapsulation dot1Q 4
R_(config-subif)#ip address 174.26.3.1 255.255.255.0
No hay comentarios:
Publicar un comentario