cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
786
Views
4
Helpful
2
Replies

How to Activate or Config Router so I can telnet into it

mccarthy
Level 1
Level 1

Does anyone now how or what commands I type at the router config line (and where I place the password) so as to activate the ability to telnet into it?

Router model: 1721

A million thanks!

John McCarthy

2 Replies 2

thisisshanky
Level 11
Level 11

Configuration no 1 : If you use this, you wont be prompted for a password while you telnet. Still you will need an enable password to get into enable mode.

enable password cisco

line vty 0 4

no login

Configuration no 2: This is a more standard type of configuration. You will need to input a telnet password as well as an enable password.

enable password cisco

line vty 0 4

login

password cisco

Hope that helps.

Sankar Nair
UC Solutions Architect
Pacific Northwest | CDW
CCIE Collaboration #17135 Emeritus

and for the sake of completeness (well, without considering Radius or Tacacs authentication :))

configuration no 3:

username xxxxxxxxxx password xxxxxxxxxxx

username xxxxxxxxxx password xxxxxxxxxxx

[etc]

enable password xxxxxxxxxxx

line vty 0 4

login local

This will allow you to login with a username and password (which is specific to that user).

The enable password is still unique though.

You can also implement this for the console interface, btw, just replace "line vty 0 4" with "line con 0".

hth

Herbert