Вы находитесь на странице: 1из 11

Configuracin de LAN (Switch + Router)

Objetivos

Realizar la configuracin bsica del switch.


Realizar la configuracin bsica del router.
Configurar contraseas para proteger el acceso a la consola y al modo privilegiado.
Configurar las interfaces para que funcionen a 100Mbps Full-duplex.
Configurar el uso horario, fecha y hora correctos.
Conectar 3 PCs al switch y configurar su direccionamiento IP.
Verificar conectividad entre las PCs y el Switch.
Verificar conectividad contra el default Gateway.
Guardar la configuracin activa.

Topologa de Red
Implementar en GNS3 la siguiente topologa de Red.

Switches: Equipo modelo 3640 equipado con una tarjetas ESW16 en el slot 0.
Versin de sistema operativo: c3640-is-mz[1].124-16.image
Router: Equipo modelo 7200 equipado segn se muestra en la siguiente figura.
Versin de sistema operativo: c7200-js-mz.122-11.T.image

Configuracin Bsica del Switch


Realice la configuracin del nombre y las contraseas del switch
SW1#configure terminal
SW1(config)#hostname SW-1
SW-1(config)#exit

A continuacin asignaremos las contraseas para el acceso por consola y para los accesos remotos al switch.
SW-1#configure terminal
Enter configuration commands, one per line.

End with CNTL/Z.

Ingrese al modo de configuracin de lnea para la consola y establezca la contrasea.


SW-1(config)#line console 0
SW-1(config-line)#password cisco
SW-1(config-line)#login

Ingrese al modo de configuracin de lnea para la terminal virtual y establezca la contrasea.


SW-1(config-line)#line vty 0 15
SW-1(config-line)#password vty123
SW-1(config-line)#login
SW-1(config-line)#exit

Configuramos ahora la contrasea de acceso a modo de administracin (EXEC privilegiado) y luego encriptamos las
contraseas.
SW-1#configure terminal
Enter configuration commands, one per line.

End with CNTL/Z.

SW-1(config)#enable secret Redes1


SW-1(config)#service password-encryption
SW-1(config)#exit

Configure el acceso de capa 3 al switch


Establezca la direccin IP del switch a 192.168.1.2 con la mscara de subred 255.255.255.0. Observe que esto se realiza en la
interfaz virtual interna VLAN 1
SW-1(config)#interface VLAN 1
SW-1(config-if)#ip address 192.168.10.2 255.255.255.0
SW-1(config-if)#no shutdown
SW-1(config-if)#exit

Establezca el gateway predeterminado para el switch y la VLAN de administracin predeterminada como 192.168.1.1
SW-1(config)#ip default-gateway 192.168.10.1
SW-1(config)#exit
SW-1#

Compruebe ahora la configuracin y el estado de la interfaz VLAN 1. La misma debe mostrarse en estado up (activo) y debe
mostrar la ip asignada. Ambos resaltados en amarillo abajo.
SW-1#show interface vlan 1
Vlan1 is up, line protocol is up
Hardware is EtherSVI, address is cc06.23fc.0000 (bia cc06.23fc.0000)
Internet address is 192.168.10.2/24
MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
ARP type: ARPA, ARP Timeout 04:00:00
Last input 00:03:39, output never, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue: 0/40 (size/max)
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
21 packets input, 1548 bytes, 0 no buffer
Received 15 broadcasts, 0 runts, 0 giants, 0 throttles
0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
6 packets output, 550 bytes, 0 underruns
0 output errors, 1 interface resets
0 output buffer failures, 0 output buffers swapped out
SW-1#

Configuracin de las interfaces (puertos) Fast Ethernet


Revisamos primero cuales son las interfaces disponibles en el switch. Observamos con el siguiente comando que
disponemos de 16 interfaces numeradas de la fa0/0 a la fa0/15. Observe que las tres primeras estn en estado activo (up),
debido a que tienen una conexin por cable a una PC. El resto de los puertos estn estado operativo down (abajo), debido a
que no hay ningn dispositivo conectado en esos puertos.
SW-1#show ip interface brief
Interface
IP-Address
FastEthernet0/0
unassigned
FastEthernet0/1
unassigned
FastEthernet0/2
unassigned
FastEthernet0/3
unassigned
FastEthernet0/4
unassigned
FastEthernet0/5
unassigned
FastEthernet0/6
unassigned
FastEthernet0/7
unassigned
FastEthernet0/8
unassigned
FastEthernet0/9
unassigned
FastEthernet0/10
unassigned

OK?
YES
YES
YES
YES
YES
YES
YES
YES
YES
YES
YES

Method
unset
unset
unset
unset
unset
unset
unset
unset
unset
unset
unset

Status
up
up
up
up
up
up
up
up
up
up
up

Protocol
up
up
up
down
down
down
down
down
down
down
down

FastEthernet0/11
FastEthernet0/12
FastEthernet0/13
FastEthernet0/14
FastEthernet0/15
Vlan1

unassigned
unassigned
unassigned
unassigned
unassigned
192.168.10.2

YES
YES
YES
YES
YES
YES

unset
unset
unset
unset
unset
manual

up
up
up
up
up
up

down
down
down
down
up
up

Procedemos entonces a establecer la velocidad del puerto a 100 Mbps y que opere en modo full dplex y por seguridad,
procedemos a deshabilitar administrativamente aquellos puertos que no estn en uso.
SW-1#configure terminal
SW-1(config)#interface range fa0/0 - 15
SW-1(config-if-range)#speed 100
SW-1(config-if-range)#duplex full
SW-1(config-if-range)#exit
SW-1(config)#interface range fa0/3 - 14
SW-1(config-if-range)#shutdown
SW-1(config-if-range)#end
SW-1#

Configuracin del uso horario, fecha y hora.


Primero revisamos si la hora del Switch y la zona horaria son las correctas:
SW-1#show clock
*00:42:55.867 UTC Fri Mar 1 2002
SW-1#
SW-1#

Observamos que ni la hora ni el uso horario son correctos por lo que deberemos de corregirlo. Ejecute el siguiente comando
en el modo administrador para configurar el uso horario correcto.
SW-1#configure terminal
SW-1(config)#clock timezone ?
WORD name of time zone
SW-1(config)#clock timezone GMT-3 ?
<-23 - 23> Hours offset from UTC
SW-1(config)#clock timezone GMT-3 -3
SW-1(config)#
*Mar 1 00:43:56.731: %SYS-6-CLOCKUPDATE: System clock has been updated from 00:43:56 UTC
Fri Mar 1 2002 to 21:43:56 GMT-3 Thu Feb 28 2002, configured from console by console.
SW-1(config)#exit

Procedemos a configurar la hora correcta.


SW-1#clock ?
set Set the time and date

Contine con la ejecucin del comando utilizando la ayuda ? hasta haber completado la configuracin del reloj. Recibir el
mensaje de advertencia % Incomplete command message si el comando clock no se ha introducido completamente con
todos los argumentos requeridos. El comando completo sera como sigue:
SW-1#clock set ?
hh:mm:ss Current Time
SW-1#clock set 10:20:00 ?

<1-31>
MONTH

Day of the month


Month of the year

SW-1#clock set 10:20:00 Sept ?


<1-31> Day of the month
SW-1#clock set 10:20:00 Sept 3 ?
<1993-2035> Year
SW-1#clock set 10:20:00 Sept 4 2016
*Sep 4 10:11:00.000: %SYS-6-CLOCKUPDATE: System clock has been updated from 21:46:16
GMT-3 Thu Feb 28 2002 to 10:20:00 GMT-3 Sat Sep 4 2016, configured from console by
console.
SW-1#

Para verificar que el reloj est configurado, ejecute el comando show clock.
SW-1#show clock
07:11:24.723 GMT-3 Sat Sep 3 2016
SW-1#

Configuracin del historial de comandos


Ejecute el siguiente comando para revisar los usuarios introducidos recientemente.
SW-1#show history

Para cambiar la cantidad de comandos almacenada en el bfer del historial se debe ejecutar el siguiente comando en el
modo de configuracin. Defina la cantidad de comandos retenidos en el bfer del historial en 15.
SW-1(config)#line console 0
SW-1(config-line)#history size 15
SW-1(config-line)#line vty 0 15
SW-1(config-line)#history size 15

Guarde la configuracin
Copie la configuracin actual en la NVRAM (RAM no voltil). Este paso asegura que cualquier cambio realizado en la
configuracin actual del switch est disponible en el caso de que el switch sea recargado (reload) o apagado y encendido.
SW-1#copy running-config startup-config

Asegrese que el archivo de configuracin de arranque guardado, contenga toda la informacin que acabamos de configurar
mediante la ejecucin del siguiente comando
SW-1#show startup-config

Configurar del Router


Avanzamos ahora con la configuracin del router. Lo primero que realizamos es revisar las interfaces que tiene equipada el
router.
R1#show ip int brief
Interface
FastEthernet0/0
FastEthernet1/0
FastEthernet1/1
GigabitEthernet2/0
GigabitEthernet3/0
R1#

IP-Address
unassigned
unassigned
unassigned
unassigned
unassigned

OK?
YES
YES
YES
YES
YES

Method
unset
unset
unset
unset
unset

Status
administratively
administratively
administratively
administratively
administratively

down
down
down
down
down

Protocol
down
down
down
down
down

Realizamos la configuracin bsica, es decir el nombre y las contraseas.


R1#configure terminal
R1(config)#hostname Router1
Router1(config)#line console 0
Router1(config-line)#password consola
Router1(config-line)#login
Router1(config-line)#exit
Router1(config)#
Router1(config)#line vty 0 15
Router1(config-line)#password vty123
Router1(config-line)#login
Router1(config-line)#exit
Router1(config)#enable secret Redes1
Router1(config)#service password-encryption
Router1(config)#exit
Router1#

Configuracin de las interfaces


Router1#configure terminal
Router1(config)#interface fa0/0
Router1(config-if)#description "LAN_Default_GateWay"
Router1(config-if)#ip address 192.168.10.1 255.255.255.0
Router1(config-if)#no shutdown
Router1(config-if)#
*Sep
*Sep

4 09:50:17.739: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up


4 09:50:18.739: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up

Router1(config-if)#
Router1(config-if)#exit
Router1(config)#interface fa1/0
Router1(config-if)#description "Conexion_al_Server"
Router1(config-if)#ip address 172.16.15.1 255.255.255.0
Router1(config-if)#no shutdown
Router1(config-if)#exit
Router1(config)#
*Sep
*Sep

4 09:51:43.255: %LINK-3-UPDOWN: Interface FastEthernet1/0, changed state to up


4 09:51:44.255: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet1/0, changed state to up

Router1(config)#exit
Router1#

Configuramos el uso horario, fecha y hora.


Router1#configure terminal
Router1(config)#clock timezone GMT-3 -3
Router1(config)#exit
Router1#
Router1#clock set 10:28:00 Sept 4 2016

Guardamos la configuracin

Router1#
Router1#copy running-config startup-config
Destination filename [startup-config]?
Warning: Attempting to overwrite an NVRAM configuration previously written
by a different version of the system image.
Overwrite the previous NVRAM configuration?[confirm]
Building configuration...
[OK]

Verificamos la configuracin de las interfaces


Router1#show int fa0/0
FastEthernet0/0 is up, line protocol is up
Hardware is DEC21140, address is ca01.0bec.0000 (bia ca01.0bec.0000)
Description: "LAN_Default_GateWay"
Internet address is 192.168.10.1/24
MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Full-duplex, 100Mb/s, 100BaseTX/FX
ARP type: ARPA, ARP Timeout 04:00:00
Last input never, output 00:00:06, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue :0/40 (size/max)
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
0 packets input, 0 bytes
Received 0 broadcasts, 0 runts, 0 giants, 0 throttles
0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
0 watchdog
0 input packets with dribble condition detected
110 packets output, 12052 bytes, 0 underruns
0 output errors, 0 collisions, 2 interface resets
0 babbles, 0 late collision, 0 deferred
0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out

Router1#show int fa1/0


FastEthernet1/0 is up, line protocol is up
Hardware is i82543 (Livengood), address is ca01.0bec.001c (bia ca01.0bec.001c)
Description: "Conexion_al_Server"
Internet address is 172.16.15.1/24
MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Full-duplex, 100Mb/s, 100BaseTX/FX
ARP type: ARPA, ARP Timeout 04:00:00
Last input never, output 00:00:08, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue :0/40 (size/max)
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
0 packets input, 0 bytes
Received 0 broadcasts, 0 runts, 0 giants, 0 throttles
0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
0 watchdog
0 input packets with dribble condition detected
114 packets output, 12631 bytes, 0 underruns
0 output errors, 0 collisions, 1 interface resets
0 babbles, 0 late collision, 0 deferred
0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out
Router1#

Router1#show ip int brief


Interface

IP-Address

OK? Method Status

Protocol

FastEthernet0/0
FastEthernet1/0
FastEthernet1/1
GigabitEthernet2/0
GigabitEthernet3/0
Router1#

192.168.10.1
172.16.15.1
unassigned
unassigned
unassigned

YES
YES
YES
YES
YES

manual
manual
unset
unset
unset

up
up
up
up
administratively down down
administratively down down
administratively down down

Configurar las computadoras conectadas al switch


Realizamos la configuracin de la direccin IP del server de acuerdo a la informacin IP suministrada en la figura de la
topologa.
Server> ip 172.16.15.11/24 172.16.15.1
Checking for duplicate address...
PC1 : 172.16.15.11 255.255.255.0 gateway 172.16.15.1
Server> show ip
NAME
IP/MASK
GATEWAY
DNS
MAC
LPORT
RHOST:PORT
MTU:

:
:
:
:
:
:
:
:

Server[1]
172.16.15.11/24
172.16.15.1
00:50:79:66:68:03
10008
127.0.0.1:10009
1500

Server> ping 172.16.15.1


84 bytes from 172.16.15.1
84 bytes from 172.16.15.1
84 bytes from 172.16.15.1
84 bytes from 172.16.15.1
84 bytes from 172.16.15.1

icmp_seq=1
icmp_seq=2
icmp_seq=3
icmp_seq=4
icmp_seq=5

ttl=255
ttl=255
ttl=255
ttl=255
ttl=255

time=9.000 ms
time=10.001 ms
time=10.000 ms
time=6.000 ms
time=3.000 ms

Server>

Configurar las computadoras conectadas al switch


En la PC1 ejecutamos el siguiente comando para configurar la direccin IP, mscara y default Gateway correspondientes.
PC1> ip 192.168.10.11/24 192.168.10.1
Checking for duplicate address...
PC1 : 192.168.10.11 255.255.255.0 gateway 192.168.10.1

Ahora revisamos la configuracin para asegurarnos de que los parmetros configurados son los correctos.
PC1> show ip
NAME
IP/MASK
GATEWAY
DNS
MAC
LPORT
RHOST:PORT
MTU:

:
:
:
:
:
:
:
:

PC1[1]
192.168.10.11/24
192.168.10.1
00:50:79:66:68:00
10000
127.0.0.1:10001
1500

Repetimos el proceso para la PC2.


PC2> ip 192.168.10.12/24 192.168.10.1

Checking for duplicate address...


PC1 : 192.168.10.12 255.255.255.0 gateway 192.168.10.1
PC2> show ip
NAME
IP/MASK
GATEWAY
DNS
MAC
LPORT
RHOST:PORT
MTU:

:
:
:
:
:
:
:
:

PC2[1]
192.168.10.12/24
192.168.10.1
00:50:79:66:68:01
10005
127.0.0.1:10004
1500

Repetimos el proceso para la PC3.


PC3> ip 192.168.10.13/24 192.168.10.1
Checking for duplicate address...
PC1 : 192.168.10.13 255.255.255.0 gateway 192.168.10.1
PC3> show ip
NAME
IP/MASK
GATEWAY
DNS
MAC
LPORT
RHOST:PORT
MTU:

:
:
:
:
:
:
:
:

PC3[1]
192.168.10.13/24
192.168.10.1
00:50:79:66:68:03
10003
127.0.0.1:10002
1500

A continuacin verificamos la conectividad de cada PC a sus vecinas y a la direccin de gestin del Switch.
Desde la PC1 a la PC2, PC3 y Switch
PC1> ping 192.168.10.12
84 bytes from 192.168.10.12
84 bytes from 192.168.10.12
84 bytes from 192.168.10.12
84 bytes from 192.168.10.12
84 bytes from 192.168.10.12

icmp_seq=1
icmp_seq=2
icmp_seq=3
icmp_seq=4
icmp_seq=5

ttl=64
ttl=64
ttl=64
ttl=64
ttl=64

time=0.000
time=0.000
time=0.000
time=0.000
time=0.000

ms
ms
ms
ms
ms

PC1> ping 192.168.10.13


84 bytes from 192.168.10.13
84 bytes from 192.168.10.13
84 bytes from 192.168.10.13
84 bytes from 192.168.10.13
84 bytes from 192.168.10.13

icmp_seq=1
icmp_seq=2
icmp_seq=3
icmp_seq=4
icmp_seq=5

ttl=64
ttl=64
ttl=64
ttl=64
ttl=64

time=0.000
time=0.000
time=0.000
time=0.000
time=0.000

ms
ms
ms
ms
ms

PC1> ping 192.168.10.2


84 bytes from 192.168.10.2
84 bytes from 192.168.10.2
84 bytes from 192.168.10.2
84 bytes from 192.168.10.2
84 bytes from 192.168.10.2

icmp_seq=1
icmp_seq=2
icmp_seq=3
icmp_seq=4
icmp_seq=5

ttl=255
ttl=255
ttl=255
ttl=255
ttl=255

time=22.001 ms
time=3.000 ms
time=3.000 ms
time=1.000 ms
time=7.000 ms

Desde la PC2 a la PC1, PC3 y Switch


PC2> ping 192.168.10.11
84 bytes from 192.168.10.11
84 bytes from 192.168.10.11
84 bytes from 192.168.10.11
84 bytes from 192.168.10.11
84 bytes from 192.168.10.11

icmp_seq=1
icmp_seq=2
icmp_seq=3
icmp_seq=4
icmp_seq=5

ttl=64
ttl=64
ttl=64
ttl=64
ttl=64

time=0.000
time=0.000
time=1.000
time=2.000
time=0.000

ms
ms
ms
ms
ms

PC2> ping 192.168.10.13


84 bytes from 192.168.10.13 icmp_seq=1 ttl=64 time=0.000 ms
84 bytes from 192.168.10.13 icmp_seq=2 ttl=64 time=0.000 ms

84 bytes from 192.168.10.13 icmp_seq=3 ttl=64 time=0.000 ms


84 bytes from 192.168.10.13 icmp_seq=4 ttl=64 time=0.000 ms
84 bytes from 192.168.10.13 icmp_seq=5 ttl=64 time=0.000 ms
PC2> ping 192.168.10.2
84 bytes from 192.168.10.2
84 bytes from 192.168.10.2
84 bytes from 192.168.10.2
84 bytes from 192.168.10.2
84 bytes from 192.168.10.2

icmp_seq=1
icmp_seq=2
icmp_seq=3
icmp_seq=4
icmp_seq=5

ttl=255
ttl=255
ttl=255
ttl=255
ttl=255

time=19.001 ms
time=10.001 ms
time=11.001 ms
time=4.000 ms
time=10.000 ms

Desde la PC3 a la PC1, PC2 y Switch


PC3> ping 192.168.10.11
84 bytes from 192.168.10.11
84 bytes from 192.168.10.11
84 bytes from 192.168.10.11
84 bytes from 192.168.10.11
84 bytes from 192.168.10.11

icmp_seq=1
icmp_seq=2
icmp_seq=3
icmp_seq=4
icmp_seq=5

ttl=64
ttl=64
ttl=64
ttl=64
ttl=64

time=1.000
time=0.000
time=0.000
time=0.000
time=0.000

ms
ms
ms
ms
ms

PC3> ping 192.168.10.12


84 bytes from 192.168.10.12
84 bytes from 192.168.10.12
84 bytes from 192.168.10.12
84 bytes from 192.168.10.12
84 bytes from 192.168.10.12

icmp_seq=1
icmp_seq=2
icmp_seq=3
icmp_seq=4
icmp_seq=5

ttl=64
ttl=64
ttl=64
ttl=64
ttl=64

time=0.000
time=0.000
time=0.000
time=0.000
time=0.000

ms
ms
ms
ms
ms

PC3> ping 192.168.10.2


84 bytes from 192.168.10.2
84 bytes from 192.168.10.2
84 bytes from 192.168.10.2
84 bytes from 192.168.10.2
84 bytes from 192.168.10.2

icmp_seq=1
icmp_seq=2
icmp_seq=3
icmp_seq=4
icmp_seq=5

ttl=255
ttl=255
ttl=255
ttl=255
ttl=255

time=10.001 ms
time=8.000 ms
time=3.000 ms
time=10.001 ms
time=9.000 ms

Verificar conectividad de PC a otras Redes


Para que una PC de la Red LAN pueda acceder a otras redes es indispensable que la misma tenga conectividad a su default
router, caso contrario no le ser posible enviar datagramas a otras redes IP distintas de la propia.
Primero verificamos que haya conectividad de la PC al Switch.
PC1> ping 192.168.10.2
84 bytes from 192.168.10.2
84 bytes from 192.168.10.2
84 bytes from 192.168.10.2
84 bytes from 192.168.10.2
84 bytes from 192.168.10.2

icmp_seq=1
icmp_seq=2
icmp_seq=3
icmp_seq=4
icmp_seq=5

ttl=255
ttl=255
ttl=255
ttl=255
ttl=255

time=19.001 ms
time=11.001 ms
time=1.000 ms
time=5.001 ms
time=10.000 ms

Luego verificamos la conectividad de la PC a su default-gateway que es el que le permite comunicarse con redes externas.
PC1> ping 192.168.10.1
84 bytes from 192.168.10.1
84 bytes from 192.168.10.1
84 bytes from 192.168.10.1
84 bytes from 192.168.10.1
84 bytes from 192.168.10.1

icmp_seq=1
icmp_seq=2
icmp_seq=3
icmp_seq=4
icmp_seq=5

ttl=255
ttl=255
ttl=255
ttl=255
ttl=255

time=9.001 ms
time=10.000 ms
time=10.000 ms
time=20.000 ms
time=5.000 ms

Finalmente verificamos la conectividad contra el servidor de la red externa.


PC1> ping 172.16.15.11
172.16.15.11 icmp_seq=1 timeout

10

172.16.15.11 icmp_seq=2 timeout


84 bytes from 172.16.15.11 icmp_seq=3 ttl=63 time=22.001 ms
84 bytes from 172.16.15.11 icmp_seq=4 ttl=63 time=21.001 ms
84 bytes from 172.16.15.11 icmp_seq=5 ttl=63 time=15.001 ms

Observamos que se perdieron los dos primeros datagramas enviados, esto es debido a la demora en resolver la direccin
MAC mediante el uso del protocolo ARP para poder conocer la direccin MAC de destino que debe agregar en el encabezado
de la trama Ethernet (Capa 2) para poder llegar el server.
Volvemos a verificar para asegurarnos de que no tengamos prdidas de paquetes.
PC1> ping 172.16.15.11
84 bytes from 172.16.15.11
84 bytes from 172.16.15.11
84 bytes from 172.16.15.11
84 bytes from 172.16.15.11
84 bytes from 172.16.15.11

icmp_seq=1
icmp_seq=2
icmp_seq=3
icmp_seq=4
icmp_seq=5

ttl=63
ttl=63
ttl=63
ttl=63
ttl=63

time=12.000
time=30.000
time=20.001
time=20.001
time=22.002

ms
ms
ms
ms
ms

La conectividad entre la PC1 y el Server es posible gracias a que el router tiene una interface en cada red IP, la fa0/0 en la red
192.168.10.0/24 a la que pertenece la PC1 y la interfaz fa1/0 en la red 172.16.15.0/24 a la que pertenece el Server. El router
enruta trfico entre ambas redes.

11

Вам также может понравиться