Sie sind auf Seite 1von 8

Actividad 01 – UT 2 Configuración Básica de un Router

InEn este ejercicio se pide que subas 2 ficheros:


 Subir este mismo documento de Word con la contestación a las preguntas de los
apartados en amarillo.
 Subir el fichero de Packet Tracer configurado como se indica en el ejercicio. El
tipo de enrutamiento utilizado es el dinámico RIP.

1) Dado el esquema de red siguiente:

a) Rellena la siguiente tabla:1.1

Dispositivo Interfaz Dirección IP Máscara de Red Puerta de


enlace por
defecto
192.168.4.0 192.168.4.1 255.255.255.0 192.168.4.1
R1
192.168.1.0 192.168.1.1 255.255.255.0 192.168.1.1
192.168.4.0 192.168.4.2 255.255.255.0 192.168.4.2
R2
192.168.2.0 192.168.2.1 255.255.255.0 192.168.1.2
192.168.4.0 192.168.4.3 255.255.255.0 192.168.4.3
R3
192.168.3.0 192.168.3.1 255.255.255.0 192.168.1.3
PC1 192.168.1.0 192.168.1.2 255.255.255.0 192.168.1.1
PC2 192.168.2.0 192.168.2.2 255.255.255.0 192.168.2.1
PC3 192.168.3.0 192.168.3.2 255.255.255.0 192.168.3.1

1
Actividad 01 – UT 2 Configuración Básica de un Router

b) Configura la dirección IP y la puerta de enlace para cada PC. Por ejemplo para PC1

c) Configura el nombre de cada Router y de cada switch según el dibujo. Por ejemplo para R1
sería:
Router>enable
%SYS-5-CONFIG_I: Configured from console by console

Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R1
R1(config)#

d) Configura las IPs de cada router. Por ejemplo para R1 sería así:

R1>enable
R1#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#interface fastethernet 0/0
R1(config-if)#ip address 192.168.1.1 255.255.255.0
R1(config-if)#no shutdown

Comprobarás que al hacerlo se enciende la luz de la interfaz fa0/0 de R1.

e) Comprueba que has configurado las IPs bien. Para ello ejecuta el comando show ip interface
brief en los tres Routers y cópialo en el siguiente cuadro:

Router 1
Router>show ip interface brief
Interface IP-Address OK? Method Status Protocol

FastEthernet0/0 192.168.1.1 YES manual up up

FastEthernet0/1 192.168.4.1 YES manual up up

Vlan1 unassigned YES manual administratively down down


Router>

2
Actividad 01 – UT 2 Configuración Básica de un Router

Router 2
Router>show ip interface brief
Interface IP-Address OK? Method Status Protocol

FastEthernet0/0 192.168.2.1 YES manual up up

FastEthernet0/1 192.168.4.2 YES manual up up

Vlan1 unassigned YES manual administratively down down


Router>

Router 3
Router>show ip interface brief
Interface IP-Address OK? Method Status Protocol

FastEthernet0/0 192.168.3.1 YES manual up up

FastEthernet0/1 192.168.4.3 YES manual up up

Vlan1 unassigned YES manual administratively down down


Router>

f) Comprueba la tabla de encaminamiento en cada Router y muéstralo en el siguiente cuadro:

Router R1

Router R2

Router R3

3
Actividad 01 – UT 2 Configuración Básica de un Router

g) Prueba a hacer un ping desde el R1 a PC1, desde R2 a PC2 y desde R3 a PC3. Muestra el
resultado en el siguiente cuadro:

R1 a PC1
Router>ping 192.168.1.2

Type escape sequence to abort.


Sending 5, 100-byte ICMP Echos to 192.168.1.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 49/60/63 ms

Router>

R2 a PC2
Router>ping 192.168.2.2

Type escape sequence to abort.


Sending 5, 100-byte ICMP Echos to 192.168.2.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 33/53/63 ms

Router>

R3 a PC3
Router>ping 192.168.3.2

Type escape sequence to abort.


Sending 5, 100-byte ICMP Echos to 192.168.3.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 31/59/79 ms

Router>

h) Ahora prueba a hacer ping desde el PC1 al PC2, desde el PC2 al PC3.

¿Porqué no funciona? Escribe una breve descripción de porque no funciona en el siguiente


cuadro:

Me funciono sin problemas, ya que anteriormente había configurado el enrutamiento en


cada uno de los routers como direccionamiento RIP.

PC1 al PC2
PC>ping 192.168.2.2

Pinging 192.168.2.2 with 32 bytes of data:

Reply from 192.168.2.2: bytes=32 time=187ms TTL=126


Reply from 192.168.2.2: bytes=32 time=172ms TTL=126
Reply from 192.168.2.2: bytes=32 time=187ms TTL=126
Reply from 192.168.2.2: bytes=32 time=188ms TTL=126

Ping statistics for 192.168.2.2:


Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 172ms, Maximum = 188ms, Average = 183ms

4
Actividad 01 – UT 2 Configuración Básica de un Router

PC>

PC2 al PC3
PC>ping 192.168.3.2

Pinging 192.168.3.2 with 32 bytes of data:

Reply from 192.168.3.2: bytes=32 time=187ms TTL=126


Reply from 192.168.3.2: bytes=32 time=156ms TTL=126
Reply from 192.168.3.2: bytes=32 time=187ms TTL=126
Reply from 192.168.3.2: bytes=32 time=188ms TTL=126

Ping statistics for 192.168.3.2:


Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 156ms, Maximum = 188ms, Average = 179ms

PC>

Copia los comandos que han permitido que funcione:


La configuración mediante comandos (en rojo)

Importers, exporters, distributors and users are responsible


for
compliance with U.S. and local country laws. By using this
product you
agree to comply with applicable laws and regulations. If you
are unable
to comply with U.S. and local laws, return this product
immediately.

A summary of U.S. laws governing Cisco cryptographic products


may be found at:
http://www.cisco.com/wwl/export/crypto/tool/stqrg.html

If you require further assistance please contact us by


sending email to
export@cisco.com.
cisco 2811 (MPC860) processor (revision 0x200) with
60416K/5120K bytes of memory
Processor board ID JAD05190MTZ (4292891495)
M860 processor: part number 0, mask 49
2 FastEthernet/IEEE 802.3 interface(s)
239K bytes of non-volatile configuration memory.
62720K bytes of ATA CompactFlash (Read/Write)
Cisco IOS Software, 2800 Software (C2800NM-ADVIPSERVICESK9-
M), Version 12.4(15)T1, RELEASE SOFTWARE (fc2)
Technical Support: http://www.cisco.com/techsupport
Copyright (c) 1986-2007 by Cisco Systems, Inc.
Compiled Wed 18-Jul-07 06:21 by pt_rel_team

--- System Configuration Dialog ---

Continue with configuration dialog? [yes/no]: n

5
Actividad 01 – UT 2 Configuración Básica de un Router

Press RETURN to get started!

Router>enable
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#interface FastEthernet0/0
Router(config-if)#no shutdown

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to


up
Router(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface
FastEthernet0/0, changed state to upip address 192.168.1.1
255.255.255.0
Router(config-if)#
Router(config-if)#exit
Router(config)#interface FastEthernet0/1
Router(config-if)#ip address 192.168.4.1 255.255.255.0
Router(config-if)#no shutdown

Router(config-if)#
%LINK-5-CHANGED: Interface FastEthernet0/1, changed state to
up
%LINEPROTO-5-UPDOWN: Line protocol on Interface
FastEthernet0/1, changed state to up
Router(config-if)#exit
Router(config)#router rip
Router(config-router)#network 192.168.1.0
Router(config-router)#network 192.168.4.0
Router(config-router)#

Router con0 is now available

Press RETURN to get started.

6
Actividad 01 – UT 2 Configuración Básica de un Router

Muestra el resultado de las tablas de encaminamiento dinámico de los tres routers:


R1

R2

7
Actividad 01 – UT 2 Configuración Básica de un Router

R3

Das könnte Ihnen auch gefallen