Está en la página 1de 13

Universidad Manuela Beltrn Diplomado Gestin y Administracin De Redes bajo Parmetros CISCO Ingeniera Electrnica

Julin Felipe Arvalo Lpez Cd. 90071955663.

Objetivos

Realizar la configuracin fsica de la red. Configurar correctamente: La red OSPF de rea nica. Las VLAN y la agregacin de enlaces 802.1q El Switch Frame Relay. DHCP. NAT.

Crear y activar listas de control de acceso Verificar la conectividad de la red, segn las pautas exigidas Documentar.

DIAGRAMA DE RED

FASE I. DIRECCIONAMIENTO

La Tabla I muestra las direcciones que se asignaron en el proyecto para el direccionamiento WAN, teniendo en cuenta los criterios que se listan a continuacin: Direccin de red: 172.16.0.0. El subnetting puede utilizar la subred cero y debe usar mscara 30 en los enlaces seriales. Galway implementa DHCP en sus 512 dispositivos. Cork cuenta con 750 dispositivos. Limerick tiene un servidor DHCP que cubre los equipos de Limerick (400 dispositivos) y de Cork.
DIRECCIN (ES) IP 172.16.32.1 172.16.24.1 G0/0.1 172.16.0.1 G0/0.2 172.16.4.1 G0/0.2 172.16.8.1 172.16.32.6 172.16.16.0 10.0.0.1 172.16.32.5 172.16.32.2 172.16.0.0 172. MSCARA 255.255.255.252 255.255.248.0 255.255.252.0 255.255.252.0 255.255.252.0 255.255.255.252 255.255.248.0 255.0.0.0 255.255.255.252 255.255.255.252

NOMBRE Limerick S0 Limerick G0 Cork G0 Cork S0 Cork S1 Galway E0 Galway S0 Belfast E0 Belfast S0 Belfast S1 LAN Cork LAN Limerick LAN Galway

FASE II. CONFIGURAR ROUTERS Y OSPF

A continuacin se muestra la configuracin bsica implementada en los routers y el switch que conforman el proyecto.

BELFAST Router>enable
Router# configure terminal

Router(config)# hostname Belfast Belfast(config-line)# line console 0 Belfast(config-line)# password cisco Belfast(config-line)# login Belfast(config-line)# exit Belfast(config)# line vty 0 4 Belfast(config-line)# password cisco Belfast(config-line)# login Belfast(config-line)# exit Belfast(config)# banner motd & **************************** !!SOLO PERSONAL AUTORIZADO!! **************************** & Belfast(config)# enable secret class Belfast(config)# exit Belfast# copy running-config startup-config LIMERICK Router>enable
Router# configure terminal

Router(config)# hostname Limerick Limerick(config-line)# line console 0 Limerick(config-line)# password cisco Limerick(config-line)# login Limerick(config-line)# exit Limerick(config)# line vty 0 4 Limerick(config-line)# password cisco Limerick(config-line)# login Limerick(config-line)# exit Limerick(config)# banner motd & **************************** !!SOLO PERSONAL AUTORIZADO!! **************************** & Limerick(config)# enable secret class Limerick(config)# exit Limerick# copy running-config startup-config

CORK Router>enable
Router# configure terminal

Router(config)# hostname Cork Cork(config-line)# line console 0 Cork(config-line)# password cisco Cork(config-line)# login Cork(config-line)# exit Cork(config)# line vty 0 4 Cork(config-line)# password cisco Cork(config-line)# login Cork(config-line)# exit Cork(config)# banner motd & **************************** !!SOLO PERSONAL AUTORIZADO!! **************************** & Cork(config)# enable secret class Cork(config)# exit Cork# copy running-config startup-config GALWAY Router>enable
Router# configure terminal

Router(config)# hostname Galway Galway(config-line)# line console 0 Galway(config-line)# password cisco Galway(config-line)# login Galway(config-line)# exit Galway(config)# line vty 0 4 Galway(config-line)# password cisco Galway(config-line)# login Galway(config-line)# exit Galway(config)# banner motd & **************************** !!SOLO PERSONAL AUTORIZADO!! **************************** & Galway (config)# enable secret class Galway (config)# exit Galway # copy running-config startup-config SWITCH CORK Router>enable
Router# configure terminal

Router(config)# hostname Switch_Cork Switch_Cork(config-line)# line console 0 Switch_Cork(config-line)# password cisco Switch_Cork(config-line)# login Switch_Cork(config-line)# exit Switch_Cork(config)# line vty 0 4 Switch_Cork(config-line)# password cisco Switch_Cork(config-line)# login Switch_Cork(config-line)# exit Switch_Cork(config)# banner motd &

**************************** !!SOLO PERSONAL AUTORIZADO!! **************************** & Switch_Cork(config)# enable secret class Switch_Cork(config)# exit Switch_Cork# copy running-config startup-config Switch_Cork# configure terminal Switch_Cork(config)# spanning-tree mode rapid-pvst Switch_Cork(config)# end

Configuracin de las interfaces en los routers bajo los parmetros descritos en la fase I y que se relacionan en la Tabla I.

LIMERICK Limerick>enable Limerick# configure terminal Limerick(config)# interface gigabitEthernet 0/0 Limerick(config-if)# ip address 172.16.24.1 255.255.248.0 Limerick(config-if)# no shutdown Limerick(config-if)# exit Limerick(config)# interface serial 0/0/0 Limerick(config-if)# ip address 172.16.32.1 255.255.255.252 Limerick(config-if)# clock rate 9600 Limerick(config-if)# no shutdown Limerick(config-if)#end Limerick#copy running-config startup-config BELFAST Belfast>enable Belfast # configure terminal Belfast(config)#interface gigabitEthernet 0/0 Belfast(config-if)#ip address 10.0.0.1 255.0.0.0 Belfast(config-if)#no shutdown Belfast(config-if)#exit Belfast(config)#interface gigabitEthernet 0/1 Belfast(config-if)#ip address 10.0.0.3 255.0.0.0 Belfast(config-if)#no shutdown Belfast(config-if)#exit Belfast(config)#interface serial 0/0/0 Belfast(config-if)#ip address 172.16.32.5 255.255.255.252 Belfast(config-if)#clock rate 9600 Belfast(config-if)#no shutdown Belfast(config-if)#exit Belfast(config)#interface serial 0/0/1 Belfast(config-if)#ip address 172.16.32.2 255.255.255.252 Belfast(config-if)#no clock rate Belfast(config-if)#no shutdown Belfast(config-if)#end

CORK Cork>enable Cork # configure terminal Cork(config)#interface Serial0/0 Cork(config-if)# ip address 172.16.32.13 255.255.255.252 Cork(config-if)# encapsulation frame-relay Cork(config-if)# frame-relay map ip 172.16.32.14 100 broadcast Cork(config-if)#exit Cork(config)#interface serial 0/0/1 Cork(config-if)#ip address 172.16.32.6 255.255.255.252 Cork(config-if)#no clock rate Cork(config-if)#no shutdown Cork(config-if)#exit Cork(config)#interface gigabitEthernet 0/0.1 Cork(config-subif)#encapsulation dot1Q 1 Cork(config-subif)#ip address 172.16.0.1 255.255.252.0 Cork(config-subif)#ip helper-address 172.16.24.2 Cork(config-subif)#do wr Cork(config-subif)#exit Cork(config)#interface gigabitEthernet 0/0.2 Cork(config-subif)#encapsulation dot1Q 2 Cork(config-subif)#ip address 172.16.4.1 255.255.252.0 Cork(config-subif)#ip helper-address 172.16.24.2 Cork(config-subif)#do wr Cork(config-subif)#exit Cork(config)#interface gigabitEthernet 0/0.3 Cork(config-subif)#encapsulation dot1Q 3 Cork(config-subif)#ip address 172.16.8.1 255.255.252.0 Cork(config-subif)#ip helper-address 172.16.24.2 Cork(config-subif)#do wr Cork(config-subif)#exit Cork(config)#interface gigabitEthernet 0/0 Cork(config-subif)#no shutdown Cork(config-subif)#exit GALWAY Galway>enable Galway # configure terminal Galway(config)#interface gigabitEthernet 0/0 Galway(config-if)#ip address 172.16.16.1 255.255.248.0 Galway(config-if)#no shutdown Galway(config-if)#exit Galway(config)#do wr Galway(config)#interface Serial0/0/0 Galway(config-if)#ip address 172.16.32.14 255.255.255.252 Galway(config-if)#no encapsulation frame-relay Galway(config-if)#no frame-relay map ip 172.16.32.13 400 broadcast

Configuracin de los routers Belfast, Limerik y Cork para la implementacin del protocolo de enrutamiento OSPF. LIMERICK OSPF Limerick(config)#router ospf 1 Limerick(config-router)#network 172.16.32.0 0.0.0.3 area 0 Limerick(config-router)#network 172.16.24.0 0.0.7.255 area 0 Limerick(config-router)#exit BELFAST OSPF Belfast(config)#router ospf 1 Belfast(config-router)#network 172.16.32.0 0.0.0.3 area 0 Belfast(config-router)#network 172.16.32.4 0.0.0.3 area 0 Belfast(config-router)#network 10.0.0.0 0.255.255.255 area 0 Belfast(config-router)#exit CORK OSPF Cork(config)#router ospf 1 Cork (config-router)#network 172.16.32.4. 0.0.0.3 area 0 Cork (config-router)#network 172.16.32.12 0.0.0.3 area 0 Cork (config-router)#network 172.16.0.0 0.0.3.255 area 0 Cork (config-router)#network 172.16.4.0 0.0.3.255 area 0 Cork (config-router)#network 172.16.8.0 0.0.3.255 area 0 Cork (config-router)#exit Cork (config)#do wr Cork (config)#end Configuracin del router de frontera Cork para implementar protocolo de enrutamiento RIP versin 2, y su respectiva redistribucin a OSPF CORK RIP Y REDISTRIBUCIN Cork(config)#router rip Cork(config-router)# version 2 Cork(config-router)# redistribute ospf 1 metric 1 Cork(config-router)# network 172.16.0.0 Cork(config-router)# no auto-summary Cork(config-router)#end Configuracin del router Galway para implementar protocolo de enrutamiento RIP versin 2. GALWAY RIP Galway(config)#router rip Galway(config-router)# version 2 Galway(config-router)# network 172.16.0.0 Galway(config-router)# no auto-summary Galway(config-router)#end

FASE III. NAT, FRAME RELAY Y ACL

BELFAST NAT Y ACL ip nat pool BelfastPool 192.168.1.1 192.168.1.15 netmask 255.255.255.0 access-list 1 permit 172.16.0.0 0.0.255.255 access-list 1 deny any ip nat inside source list 1 pool BelfastPool interface serial 0/0/0 ip nat inside exit interface serial 0/0/1 ip nat inside exit interface gigabitEthernet 0/0 ip nat outside exit interface gigabitEthernet 0/0 ip access-group 101 in exit access-list 101 deny tcp 172.16.0.0 0.0.15.255 host 10.0.0.2 eq ftp access-list 101 deny tcp 172.16.0.0 0.0.15.255 host 10.0.0.2 eq 20 access-list 101 permit ip any any CORK interface gigabitEthernet 0/0 ip access-group 101 in exit access-list 101 deny tcp 172.16.0.0 0.0.15.255 host 10.0.0.2 eq ftp access-list 101 deny tcp 172.16.0.0 0.0.15.255 host 10.0.0.2 eq 20 access-list 101 permit ip any any LIMERICK interface gigabitEthernet 0/0 ip access-group 101 in exit access-list 101 deny tcp 172.16.24.0 0.0.7.255 host 10.0.0.2 eq ftp access-list 101 deny tcp 172.16.24.0 0.0.7.255 host 10.0.0.2 eq 20 access-list 101 permit ip any any GALWAY Y FRAME RELAY interface Serial0/0/0 ip address 172.16.32.14 255.255.255.252 encapsulation frame-relay frame-relay map ip 172.16.32.13 400 broadcast CORK Y FRAME RELAY interface Serial0/0 ip address 172.16.32.13 255.255.255.252 encapsulation frame-relay frame-relay map ip 172.16.32.14 100 broadcast

FASE IV. VLAN Y DHCP

CONFIGURACIN BSICA DE LOS SWITCH CORK VLAN hostname Switch_Cork line console 0 password cisco login exit line vty 0 4 password cisco login exit banner motd & **************************** !!SOLO PERSONAL AUTORIZADO!! **************************** & enable secret class exit copy running-config startup-config configure terminal spanning-tree mode rapid-pvst end CREACIN DE LAS VLAN vlan 2 name VLAN2 exit vlan 3 name VLAN3 exit ASIGNACIN DE PUERTOS VLAN2 interface range fastEthernet 0/9 - 16 switchport acces vlan 2 exit ASIGNACIN DE PUERTOS VLAN3 interface range fastEthernet 0/17 - 24 switchport acces vlan 3 exit ASIGNAR LA TRONCAL interface gigabitEthernet 1/1 switchport mode trunk exit

CONFIGURACIN DEL ROUTER CORK PARA COMUNICACIN ENTRE VLANs interface gigabitEthernet 0/0.1 encapsulation dot1Q 1 ip address 172.16.0.1 255.255.252.0 ip helper-address 172.16.24.2 do wr exit interface gigabitEthernet 0/0.2 encapsulation dot1Q 2 ip address 172.16.4.1 255.255.252.0 ip helper-address 172.16.24.2 do wr exit interface gigabitEthernet 0/0.3 encapsulation dot1Q 3 ip address 172.16.8.1 255.255.252.0 ip helper-address 172.16.24.2 do wr exit interface gigabitEthernet 0/0 no shutdown exit IMPLEMENTAR DHCP EN EL ROUTER GALWAY ip dhcp pool GalwayPool network 172.16.16.0 255.255.248.0 default-router 172.16.16.1 exit ip dhcp excluded-address 172.16.16.1 172.16.16.2 ip dhcp excluded-address 172.16.16.4 172.16.19.254 ip dhcp excluded-address 172.16.20.0 172.16.23.253 do wr end

También podría gustarte