martes, 8 de septiembre de 2015

CCNA 200-120 - Practica 6

CCNA Routing and Switching - Practica 6

Armado de una red de switch y router

Configuraremos un armado simple de una red de Switch y Router



Armado de una red de switch y router



Tareas:

  • Configuración de PC-A con la dirección IP 192.168.1.3/24 y gateway 192.168.1.1
  • Configuración de PC-B con la dirección IP 192.168.0.3/24 y gateway 192.168.0.1
  • Configuración los parámetros básicos del Router:
  • Hostname
  • Contraseña
  • Búsquedas no deseadas del Sistema de nombres de dominios (DNS)
  • Configure un mensaje del día (MOTD) de inicio de sesión
  • Configuración de interfaces 

1.- Configuración de PC-A 

PC>ipconfig

FastEthernet0 Connection:(default port)

Link-local IPv6 Address.........: FE80::207:ECFF:FE65:42B8
IP Address......................: 192.168.1.3
Subnet Mask.....................: 255.255.255.0
Default Gateway.................: 192.168.1.1



2.- Configuración de PC-B

PC>ipconfig

FastEthernet0 Connection:(default port)

Link-local IPv6 Address.........: FE80::201:C7FF:FE02:BE23
IP Address......................: 192.168.0.3
Subnet Mask.....................: 255.255.255.0
Default Gateway.................: 192.168.0.1



3.- Configuración los parámetros básicos del Router

Router>

Router>ena

Router#config t

Enter configuration commands, one per line. End with 

CNTL/Z.

Router(config)#hostname R1

R1(config)#no ip domain-lookup

R1(config)#enable secret cisco

R1(config)#line con 0

R1(config-line)#password cisco

R1(config-line)#login

R1(config-line)#exit

R1(config)#line vty 0 4

R1(config-line)#password cisco

R1(config-line)#login

R1(config-line)#exit

R1(config)#service password-encryption

R1(config)#banner motd #

Enter TEXT message. End with the character '#'.
************************************************

Acceso Restringido

************************************************
#

R1(config)#int g0/0

R1(config-if)#des

R1(config-if)#description Conexion a PC-B

R1(config-if)#ip address 192.168.0.1 255.255.255.0

R1(config-if)#no shut

R1(config-if)#int g0/1

R1(config-if)#description a S1

R1(config-if)#ip address 192.168.1.1 255.255.255.0

R1(config-if)#no shut

R1(config-if)#exit

R1(config)#exit

R1#

%SYS-5-CONFIG_I: Configured from console by console


R1#copy running-config startup-config

Destination filename [startup-config]?

Building configuration...

[OK]

R1#


4.- Pruebas de conectividad

PC-A>ping 192.168.0.3

Pinging 192.168.0.3 with 32 bytes of data:

Reply from 192.168.0.3: bytes=32 time=0ms TTL=127
Reply from 192.168.0.3: bytes=32 time=0ms TTL=127
Reply from 192.168.0.3: bytes=32 time=0ms TTL=127
Reply from 192.168.0.3: bytes=32 time=0ms TTL=127

Ping statistics for 192.168.0.3:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms


PC-B>ping 192.168.1.3

Pinging 192.168.1.3 with 32 bytes of data:

Reply from 192.168.1.3: bytes=32 time=2ms TTL=127
Reply from 192.168.1.3: bytes=32 time=0ms TTL=127
Reply from 192.168.1.3: bytes=32 time=0ms TTL=127
Reply from 192.168.1.3: bytes=32 time=0ms TTL=127

Ping statistics for 192.168.1.3:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:

Minimum = 0ms, Maximum = 2ms, Average = 0ms



Si tienes dudas o consultas, te invito a comentar en este blog.......






Regístrate a nuestros contenidos

* indicates required



Síguenos también en:

CCNA 200-120 - Practica 5

CCNA Routing and Switching - Practica 5

Configuración de una dirección de administración del switch

En esta ocasión configuraremos la IP de administración del Switch, con esta dirección IP podemos conectarnos al Switch de forma remota.



Tareas:

  • Configuración de PC-A con la dirección IP 192.168.1.10/24
  • Configuración los parámetros básicos del Switch:
  • Hostname
  • Contraseña
  • Búsquedas no deseadas del Sistema de nombres de dominios (DNS)
  • Configure un mensaje del día (MOTD) de inicio de sesión
  • Configuración de dirección IP de la SVI (Vlan 1)
  • Acceso del puerto de consola 
  • Acceso a la línea de terminal virtual (VTY) 



1.- Configuración de PC-A

PC>ipconfig

FastEthernet0 Connection:(default port)

Link-local IPv6 Address.........: FE80::207:ECFF:FE65:42B8
IP Address......................: 192.168.1.10
Subnet Mask.....................: 255.255.255.0

Default Gateway.................: 0.0.0.0

2.- Configuración los parámetros básicos del Switch

Switch1#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

Switch1(config)#hostname Switch1

Switch1(config)#enable secret cisco

Switch1(config)#no ip domain-lookup

Switch1(config)#banner motd #

Enter TEXT message. End with the character '#'.
***************************************************

Acceso Restringido

***************************************************
#

Switch1(config)#int vlan 1

Switch1(config-if)#ip address 192.168.1.2 255.255.255.0

Switch1(config-if)#no shut

Switch1(config-if)#exit

Switch1(config)#line con 0

Switch1(config-line)#password cisco

Switch1(config-line)#login

Switch1(config-line)#exit

Switch1(config)#line vty 0 4

Switch1(config-line)#password cisco

Switch1(config-line)#login

Switch1(config-line)#exit


Switch1(config)#wr mem


3.- Pruebas de conectividad

PC>ping 192.168.1.2

Pinging 192.168.1.2 with 32 bytes of data:

Reply from 192.168.1.2: bytes=32 time=1ms TTL=255
Reply from 192.168.1.2: bytes=32 time=0ms TTL=255
Reply from 192.168.1.2: bytes=32 time=0ms TTL=255
Reply from 192.168.1.2: bytes=32 time=0ms TTL=255

Ping statistics for 192.168.1.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 1ms, Average = 0ms

PC>telnet 192.168.1.2

Trying 192.168.1.2 ...Open
***************************************************

Acceso Restringido

***************************************************



User Access Verification

Password:

Switch1>



Si tienes dudas o consultas, te invito a comentar en este blog.......


Subscribete a nuevos contenidos




Síguenos también en:


lunes, 7 de septiembre de 2015

Material de estudio CCNA 200-120 v5 y Cisco Packet Tracer 6.2

Les dejo material de estudio para el CCNA 200-120 versión 5

1.- Archivos en PDF

















 2.-Programa de simulación de red






3.- Laboratorios Cisco Packet Tracer







4.- Libros CCNA








Si tienes dudas o consultas, te invito a comentar en este blog.......


Síguenos también en:



CCNA 200-120 - Practica 4

CCNA Routing and Switching - Practica 4


CREACIÓN DE UNA RED SIMPLE

Ahora realizaremos una pequeña red local, con dos pc y dos switch, como se muestra en la siguiente figura:


pequeña-red-cisco


Se realiza la siguiente configuración:


  • PC-A con dirección IP 192.168.1.10 y máscara 255.255.255.0



  • PC-B con dirección IP 192.168.1.11 y máscara 255.255.255.0



  • Conectar con cable derecho desde PC-A a port Fa0/1 Switch1



  • Conectar con cable derecho desde PC-B a port F0/1 Switch2



  • Conectar ambos switch por port Fa0/2



  • Configurar Switch1 y Switch2



  • Hacer pruebas de ping entre PC

1.- Configuración de Switch



Switch1#

Switch1#config t


Enter configuration commands, one per line.  End with CNTL/Z.

Switch1(config)#no ip domain-lookup 

Switch1(config)#enable secret cisco

Switch1(config)#line con 0

Switch1(config-line)#password cisco

Switch1(config-line)#login

Switch1(config-line)#exit

Switch1(config)#banner motd #

Enter TEXT message.  End with the character '#'.
*********************************************************

Acceso Restringido

*********************************************************
#

Switch1(config)#exit

Switch1#

%SYS-5-CONFIG_I: Configured from console by console

Switch1#copy running-config startup-config 

Destination filename [startup-config]? 

Building configuration...

[OK]

Switch1#


2.- Mostrar el estado de las interfaces conectadas en el switch:

Switch1#sh ip int brief
Interface              IP-Address      OK? Method Status                Protocol

FastEthernet0/1        unassigned      YES manual up                    up

FastEthernet0/2        unassigned      YES manual up                    up

FastEthernet0/3        unassigned      YES manual down                  down

FastEthernet0/4        unassigned      YES manual down                  down

FastEthernet0/5        unassigned      YES manual down                  down

FastEthernet0/6        unassigned      YES manual down                  down

FastEthernet0/7        unassigned      YES manual down                  down

FastEthernet0/8        unassigned      YES manual down                  down

FastEthernet0/9        unassigned      YES manual down                  down

FastEthernet0/10       unassigned      YES manual down                  down

FastEthernet0/11       unassigned      YES manual down                  down

FastEthernet0/12       unassigned      YES manual down                  down

FastEthernet0/13       unassigned      YES manual down                  down

FastEthernet0/14       unassigned      YES manual down                  down

FastEthernet0/15       unassigned      YES manual down                  down

FastEthernet0/16       unassigned      YES manual down                  down

FastEthernet0/17       unassigned      YES manual down                  down

FastEthernet0/18       unassigned      YES manual down                  down

FastEthernet0/19       unassigned      YES manual down                  down

FastEthernet0/20       unassigned      YES manual down                  down

FastEthernet0/21       unassigned      YES manual down                  down

FastEthernet0/22       unassigned      YES manual down                  down

FastEthernet0/23       unassigned      YES manual down                  down

FastEthernet0/24       unassigned      YES manual down                  down

GigabitEthernet0/1     unassigned      YES manual down                  down

GigabitEthernet0/2     unassigned      YES manual down                  down

Vlan1                  unassigned      YES manual administratively down down

Switch1#


3.- Pruebas de conectividad entre PC-A y PC-B

PC-A>ipconfig

FastEthernet0 Connection:(default port)

   Link-local IPv6 Address.........: FE80::207:ECFF:FE65:42B8
   IP Address......................: 192.168.1.10
   Subnet Mask.....................: 255.255.255.0
   Default Gateway.................: 0.0.0.0

PC-A>ping 192.168.1.11

Pinging 192.168.1.11 with 32 bytes of data:

Reply from 192.168.1.11: bytes=32 time=1ms TTL=128
Reply from 192.168.1.11: bytes=32 time=0ms TTL=128
Reply from 192.168.1.11: bytes=32 time=0ms TTL=128
Reply from 192.168.1.11: bytes=32 time=0ms TTL=128

Ping statistics for 192.168.1.11:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:

    Minimum = 0ms, Maximum = 1ms, Average = 0ms



PC-B>ipconfig

FastEthernet0 Connection:(default port)

   Link-local IPv6 Address.........: FE80::202:4AFF:FE62:2C2E
   IP Address......................: 192.168.1.11
   Subnet Mask.....................: 255.255.255.0
   Default Gateway.................: 0.0.0.0

PC-B>ping 192.168.1.10

Pinging 192.168.1.10 with 32 bytes of data:

Reply from 192.168.1.10: bytes=32 time=1ms TTL=128
Reply from 192.168.1.10: bytes=32 time=0ms TTL=128
Reply from 192.168.1.10: bytes=32 time=1ms TTL=128
Reply from 192.168.1.10: bytes=32 time=0ms TTL=128

Ping statistics for 192.168.1.10:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:

    Minimum = 0ms, Maximum = 1ms, Average = 0ms





Si tienes dudas o consultas, te invito a comentar en este blog.......




Subscribete a nuevos contenidos




Síguenos también en:


CCNA 200-120 - Practica 3

CCNA Routing and Switching - Practica 3


Configuración de una interfaz virtual de switch

Ahora configuraremos una interfaz VLAN o LAN Virtual la cual nos servirá para acceder al switch de forma remota  configurando una dirección IP y una máscara de subred en las SVI (Switch Virtual Interface)



1. Configuración de una interfaz virtual de switch

practica-ccna#config terminal

practica-ccna(config)#int vlan 1

practica-ccna(config-if)#ip address 192.168.1.1 255.255.255.0

practica-ccna(config-if)#no shut

practica-ccna(config-if)#

practica-ccna(config-if)#exit

practica-ccna(config)#exit


practica-ccna#

2.- Verificación y estado de la asignación de interfaz VLAN

practica-ccna#sh ip int brief

Interface              IP-Address      OK? Method Status                Protocol
Ethernet0/0            unassigned      YES unset  up                    up
Ethernet0/1            unassigned      YES unset  up                    up
Ethernet0/2            unassigned      YES unset  up                    up
Ethernet0/3            unassigned      YES unset  up                    up
Ethernet1/0            unassigned      YES unset  up                    up
Ethernet1/1            unassigned      YES unset  up                    up
Ethernet1/2            unassigned      YES unset  up                    up
Ethernet1/3            unassigned      YES unset  up                    up
Ethernet2/0            unassigned      YES unset  up                    up
Ethernet2/1            unassigned      YES unset  up                    up
Ethernet2/2            unassigned      YES unset  up                    up
Ethernet2/3            unassigned      YES unset  up                    up
Ethernet3/0            unassigned      YES unset  up                    up
Ethernet3/1            unassigned      YES unset  up                    up
Ethernet3/2            unassigned      YES unset  up                    up
Ethernet3/3            unassigned      YES unset  up                    up
Vlan1                  192.168.1.1     YES manual up                    up


practica-ccna#sh int vlan 1

Vlan1 is up, line protocol is up
  Hardware is Ethernet SVI, address is aabb.cc80.0200 (bia aabb.cc80.0200)
  Internet address is 192.168.1.1/24
  MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec,
     reliability 255/255, txload 1/255, rxload 1/255
  Encapsulation ARPA, loopback not set
  Keepalive not supported
  ARP type: ARPA, ARP Timeout 04:00:00
  Last input never, 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
     0 packets input, 0 bytes, 0 no buffer
     Received 0 broadcasts (0 IP multicasts)
     0 runts, 0 giants, 0 throttles
     0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
     2 packets output, 120 bytes, 0 underruns
     0 output errors, 0 interface resets
     0 unknown protocol drops
     0 output buffer failures, 0 output buffers swapped out
practica-ccna#

Si tienes dudas o consultas, te invito a comentar en este blog.......





Subscribete a nuevos contenidos




Síguenos también en:


domingo, 6 de septiembre de 2015

CCNA 200-120 - Practica 2

CCNA Routing and Switching - Practica 2

Hola continuamos con nuestra practica número 2, configuraremos una interfaz LAN y verificaremos su configuración como sigue:

1.- Configuración Interfaz LAN

practica-ccna#config t

Enter configuration commands, one per line.  End with CNTL/Z.

practica-ccna(config)#int ethernet 0/0

practica-ccna(config-if)#no switchport

practica-ccna(config-if)#ip address 192.168.1.1 255.255.255.0

practica-ccna(config-if)#description ENLACE A ROUTER

practica-ccna(config-if)#no shutdown


2. Verificación de configuración de interfaz
  • show ip route : muestra el contenido de la tabla de enrutamiento IPv4 almacenada en la RAM.
  • show interfaces - muestra estadísticas de todas las interfaces del dispositivo.
  • show ip interface : muestra las estadísticas de IPv4 de todas las interfaces de un router.

practica-ccna#sh ip route
Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP
       + - replicated route, % - next hop override

Gateway of last resort is not set

      192.168.1.0/24 is variably subnetted, 2 subnets, 2 masks
C        192.168.1.0/24 is directly connected, Ethernet0/0
L        192.168.1.1/32 is directly connected, Ethernet0/0
practica-ccna#





practica-ccna#sh interfaces

Ethernet0/0 is up, line protocol is up (connected)

  Hardware is Ethernet, address is aabb.cc00.0200 (bia aabb.cc00.0200)

  Description: ENLACE A ROUTER

  Internet address is 192.168.1.1/24

  MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec,
     reliability 255/255, txload 1/255, rxload 1/255
  Encapsulation ARPA, loopback not set
  Keepalive set (10 sec)
  Auto-duplex, Auto-speed, media type is unknown
  input flow-control is off, output flow-control is unsupported
  ARP type: ARPA, ARP Timeout 04:00:00
  Last input never, output 00:00:28, 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, 0 no buffer
     Received 0 broadcasts (0 IP multicasts)
     0 runts, 0 giants, 0 throttles
     0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
     0 input packets with dribble condition detected
     2411 packets output, 176101 bytes, 0 underruns
     1 output errors, 0 collisions, 0 interface resets
     0 unknown protocol drops
     0 babbles, 0 late collision, 0 deferred
     0 lost carrier, 0 no carrier
     0 output buffer failures, 0 output buffers swapped out


practica-ccna#sh ip interface brief
Interface              IP-Address      OK? Method Status                Protocol
Ethernet0/0            192.168.1.1     YES manual up                    up
Ethernet0/1            unassigned      YES unset  up                    up
Ethernet0/2            unassigned      YES unset  up                    up
Ethernet0/3            unassigned      YES unset  up                    up
Ethernet1/0            unassigned      YES unset  up                    up
Ethernet1/1            unassigned      YES unset  up                    up
Ethernet1/2            unassigned      YES unset  up                    up
Ethernet1/3            unassigned      YES unset  up                    up
Ethernet2/0            unassigned      YES unset  up                    up
Ethernet2/1            unassigned      YES unset  up                    up
Ethernet2/2            unassigned      YES unset  up                    up
Ethernet2/3            unassigned      YES unset  up                    up
Ethernet3/0            unassigned      YES unset  up                    up
Ethernet3/1            unassigned      YES unset  up                    up
Ethernet3/2            unassigned      YES unset  up                    up
Ethernet3/3            unassigned      YES unset  up                    up
Vlan1                  unassigned      YES unset  administratively down down
practica-ccna#




Si tienes dudas o consultas, te invito a comentar en este blog.......



Síguenos también en: