23/08/2026 5:19 PM

Torrenster

Smarter Marketing Decisions

Cisco CCNA Certification Exam Teaching: Telnet, Passwords, and Privilege Levels

Your CCNA certification examination is most likely likely to have concerns about Telnet, an application-amount protocol that makes it possible for distant conversation amongst two networking gadgets. With Telnet use becoming as typical as it is, you experienced superior know the facts of how to configure it in get to pass your CCNA test and to get the job done in true-entire world networks.

The primary thought is quite easy – we want to configure R1, but we are at R2. If we telnet efficiently to R1, we will be able to configure R1 if we’ve been provided the right permission ranges. In this CCNA circumstance examine, R2 has an IP address of 172.12.123.2 and R1 an deal with of 172.12.123.1. Let us try out to telnet from R2 to R1.

R2#telnet 172.12.123.1

Attempting 172.12.123.1 … Open

Password expected, but none set

[Connection to 172.12.123.1 closed by foreign host]

This appears like a dilemma, but it really is a dilemma we’re satisfied to have. A Cisco router will not permit any user telnet to it by default. Which is a excellent matter, for the reason that we never want just anyone connecting to our router! The “password expected” information signifies that no password has been established on the VTY traces on R1. Let us do so now.

R1(config)#line vty 4

R1(config-line)#password baseball

A password of “baseball” has been set on the VTY traces, so we should not have any issues making use of Telnet to get from R2 to R1. Let us check out that now.

R2#telnet 172.12.123.1

Trying 172.12.123.1 … Open

Person Entry Verification

Password:

R1>

We’re in, and positioned into user exec mode. Let’s say we want to configure a new IP tackle on the ethernet interface on R1. We are going to now go into privileged exec method….

R1>enable

% No password established

R1>

… or possibly we will not! The default habits of Telnet on a Cisco router is to position the incoming consumer into person exec mode, and need an enable password to enable that user into privileged exec mode! Correct now, we cannot configure anything at all on this router and even the exhibit instructions we would use are limited at finest.

If we needed to let all telnetting consumers to be put into privileged exec mode instantly without getting prompted for an allow password, the command privilege stage 15 put on the VTY strains will execute this.

R1(config)#line vty 4

R1(config-line)#privilege stage 15

From R2, we are going to telnet into R1 once again.

R2#telnet 172.12.123.1

Seeking 172.12.123.1 … Open up

User Access Verification

Password:

R1#

We had been capable to telnet in from R2 with the authentic password of “baseball”, and even better, we have been put into privileged exec method promptly!

You may or might not want to do this in real-environment networks, while. If you want to assign privilege degrees on an personal consumer foundation, configure usernames and passwords and use the privilege 15 command in the true username/password command itself to give this privilege stages to some users but not all.

R1(config)#username heidi password klum

R1(config)#username tim privilege 15 password gunn

Both of those users can telnet into the router, but the initially person will be positioned into consumer exec and challenged for the empower password to enter privileged exec method. If there is no help password, the consumer pretty much can’t get into privileged exec. The next consumer will be placed into privileged exec straight away just after effectively authenticating.

Passwords on a Cisco router or change are vitally essential, and you’re not tied down to granting “all-or-nothing” entry. Realizing the specifics like the kinds shown listed here aid you tie down network safety whilst making it possible for persons to do their positions – and it will not harm to know this stuff for the CCNA examination, both!