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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problems setting up router's Username & Password

Status
Not open for further replies.

Adesh001

MIS
Feb 25, 2005
40
TT
Hi Everyone,

I recently acquired a used router, I need to setup a console and telnet username and password for this router.

When I telnet into the router it prompts me for a password. I would like to have both a username and password prompt. Thus I did the following

R1#configure terminal
R1(config)#line vty 0 4
R1(config-line)#username myusername password mypassword

At this point I saved the config and exited the telnet session. When I telnet back into the router I am still prompted to enter a password.

I also tried this command as well
R1(config)#username myusername password mypassword

but to no avail.

Please assist.
Thanks
Adesh

 
Try:

R1#configure terminal
R1(config)#line vty 0 4
R1(config-line)#no login
R1(config-line)#login local
 
Try:

R1#config t
R1(config)#username myusername privilege 15 password passwd

R1(config)#line vty 0 4
R1(config-line)#login local

exit
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top