sábado, 22 de agosto de 2015

Troubleshooting Telnet

En el diseño de la red un administrador conectado al PC-A no puede iniciar sesión de Telnet con el router CORP-A ni el Switch SW-A. Su trabajo es encontrar los errores en la configuración y resolverlos.
Descargar archivo PKT
Todas las claves son cisco.

Configuración CORP-A
CORP-A#show run
Building configuration...

Current configuration : 710 bytes
!
version 15.1
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname CORP-A
!
enable secret 5 $1$mERr$hx5rVt7rPNoS4wqbXKX7m0
!
ip cef
no ipv6 cef
!
license udi pid CISCO1941/K9 sn FTX15243YQJ
!
spanning-tree mode pvst
!
interface GigabitEthernet0/0
 ip address 192.168.1.1 255.255.255.224
 duplex auto
 speed auto
!
interface GigabitEthernet0/1
 no ip address
 duplex auto
 speed auto
 shutdown
!
interface Vlan1
 no ip address
 shutdown
!
ip classless
!
ip flow-export version 9
!
line con 0
 password cisco
 login
!
line aux 0
!
line vty 0 4
 password cisco
 login
!
end

Configuración SW-A
SW-A#show run
Building configuration...

Current configuration : 1144 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname SW-A
!
enable secret 5 $1$mERr$hx5rVt7rPNoS4wqbXKX7m0
!
spanning-tree mode pvst
!
interface FastEthernet0/1
!
interface FastEthernet0/2
!
!
!
interface GigabitEthernet0/1
!
interface GigabitEthernet0/2
!
interface Vlan1
 ip address 192.168.1.1 255.255.255.224
!
line con 0
 password cisco
 login
!
line vty 0 4
 password cisco
 login
line vty 5 15
 login
!
!
end

Descripción del problema
  1.  La Interface G0/0 de CORP-A  y la interface Vlan1 del SW-A tienen la misma dirección IP 192.168.1.1 255.255.255.224 en su respectiva configuración por tanto hay 2 dispositivos con la misma ip, lo cual es un error las ip deben ser única para cada interface o host.
  2. El SW-A no tiene configurado el default gateway.
  3. La mascara de red es 255.255.255.224, eso quiere decir que para el host 192.168.1.1 la dirección de red es 192.168.1.0/27 cuya rango de ip usables esta entre 192.168.1.1 - 192.168.1.30.

Por tanto el PC-A  con una ip 192.168.1.40/27 no esta en la misma subred.

Solución del problema:
1. En el SW-A

SW-A#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
SW-A(config)#interface vlan 1
SW-A(config-if)#ip add 192.168.1.2 255.255.255.224
solucionara el problema de duplicidad de ip.

2. Configurar el Default gateway en SW-A
SW-A(config)#ip default-gateway 192.168.1.1

3. Configurar el el PC cualquier dirección ip dentro del rango admitido excepto las ya utilizadas por ejemplo 192.168.1.10.

Eso resolverá nuestros problemas de configuración.

Verificación
Desde PC-A hacer:
Ping 192.168.1.1
Ping 192.168.1.2
Los ping deberían tener éxito. Por tanto ya podemos iniciar Telnet tanto al SW-A como al Router CORP-A con:
Telnet 192.168.1.1
Telnet 192.168.1.2
Las sesiones deben tener éxito, como se demuestra a continuación:

PC>ping 192.168.1.1

Pinging 192.168.1.1 with 32 bytes of data:

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

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

PC>ping 192.168.1.2

Pinging 192.168.1.2 with 32 bytes of data:

Request timed out.
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 = 3, Lost = 1 (25% loss),
Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms

PC>telnet 192.168.1.1
Trying 192.168.1.1 ...Open


User Access Verification

Password:
CORP-A>ena
Password:
CORP-A#exit

[Connection to 192.168.1.1 closed by foreign host]
PC>
PC>telnet 192.168.1.2
Trying 192.168.1.2 ...Open


User Access Verification

Password:
SW-A>ena
Password:
SW-A#.

No hay comentarios:

Publicar un comentario

"Tu opinión es importante, gracias por comentar"