ccn exp 7
ccn exp 7
Aryan Vichare
21103B2018
Aim: Implementation of TELNET on Packet Tracer
Theory:
Telnet stands for Teletype Network or Terminal Network. It is a protocol that provides a command line
interface for communication with a remote device or server. Telnet on its own does not employ any
form of encryption, it transfers the data in ‘clear text’. Telnet provides users with a bidirectional
interactive text-oriented communication system utilizing a virtual terminal connection over 8 bytes.
Using TELNET, user can connect to a remote host or device using a telnet client, usually over TCP port
no. 23. Topology-
Switch>en
Switch#config terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#int vlan1
Switch(config-if)#ip address 100.0.0.5 255.0.0.0
Switch(config-if)#line vty 0 4
Switch(config-line)#password kaustubh
Switch(config-line)#line
^
% Invalid input detected at '^' marker.
Department of Electronics Engineering
Subject: -CCN A. Y.- 2022-23
(Autonomous College Affiliated Experiment 7
to
University of Mumbai)
Switch(config-line)#login
Switch(config-line)#exit
Switch(config)#int vlan1
Switch(config-if)#no shut
Switch(config-if)#
%LINK-5-CHANGED: Interface Vlan1, changed state to up
Switch(config-if)#exit
Switch(config)#enable password kaustubh
Switch(config)#
• In the command prompt, write telnet and append ip address of switch or router to which it is
connected shown below
• C:>telnet 100.0.0.6
Department of Electronics Engineering
Subject: -CCN A. Y.- 2022-23
(Autonomous College Affiliated Experiment 7
to
University of Mumbai)
• It will ask password, type it, and enter
• Router>en
• Router#configure terminal
• Enter configuration commands, one per line. End with CNTL/Z.
• Router(config)#line vty 0 4
• Router(config-line)#password 123456
• Router(config-line)#login
• Router(config-line)#enable password 123456
• Router(config)#int fa0/0
• Router(config-if)#ip address 100.0.0.6 255.0.0.0
• Router(config-if)#exit
Conclusion- With the implementation of TELNET, it is possible to fetch and manage any networking
device remotely within the network.