Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Change Telnet Password

Status
Not open for further replies.
Joined
Jun 25, 2002
Messages
1
Location
US
Hello...i have a cisco 1750 and would like to change the password used to telnet into it. i have already changed the enable and anable secret passwords....but do not know how to change the telnet password. what do i do?

 
To change your password, simply run telnet, login to the system with your original userid and newly assigned password.

At the command prompt '$' type 'passwd'. You will then see a prompt for you old password. Please type your newly assigned password here. After you have entered your new password, you can type in you new password of your choice - twice Route once; switch many
 
The "passwd" command might work on Unix/Linux but the original question was in regard to a Cisco router.

If you have a line vty 0 4 password set for telnet access then you would change it in the same way that you originally set it ...

log in > enable > conf t > line vty 0 4 > password <password> > exit > exit > copy run start

The other way is to use a local authentication database ....

aaa new-model
aaa authentication login WORD local
!
username user1 password letmein
!
line vty 0 4
exec timeout 0 0
!

You can also apply this security to the console port ..

aaa new-model
aaa authentication login CONSOLE local
!
line con 0
login authentication CONSOLE
!

This will enable the local username/password database for console access.

Chris.



************************
Chris Andrew, CCNA
chrisac@gmx.co.uk
************************
 
line vty 0 4
exec-timeout 30 0
login
password ?????

router>enable
router#conf t
router#(config)int vty 0 4
ctrl z
wr mem

type password &quot;Password&quot; <--- whatever the new password is. “Reserve your right to think, for even to think wrongly is better than not to think at all”

Fisher CCNA,(CCNP-Routing)
UOP Student BSIT
[americanflag]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top