cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1865
Views
0
Helpful
3
Replies

Cisco Switch 4507 series

kick534
Level 1
Level 1

HI team ,

i configured the user and password to login Cisco switch 4507 series

example below :

Core(config)#username cisco2030 password cisco2030

 

line con 0
privilege level 15
login local
stopbits 1
line vty 0 4
privilege level 15
login local
line vty 5 15
login

after configuring above i can telnet the switch with user and password.

but now the switch is showing error ( enable password not set ) i cannot login to switch.

please advise how can i set enable password.

 

Thanks

3 Replies 3

balaji.bandi
Hall of Fame
Hall of Fame

same way how you configured username and password :

 

#configure terminal
(config)#enable password or secret  mypassword   << change the password from mypassword your desired.

also for reference basic setup :

 

https://www.cisco.com/c/en/us/td/docs/switches/lan/catalyst4500/12-2/50sg/configuration/guide/Wrapper-46SG/supcfg.html#wp1020374

BB

***** Rate All Helpful Responses *****

How to Ask The Cisco Community for Help

hi balaji,

once i configured i cannot enter in to enable mode (no password set ), to configure enable password.

after user and password successfully configured i want to test working or not.

now how to bypass and enter the enable mode ( console and telnet both way i can enter into enable mode)

Julio Veas
Level 1
Level 1

Hi,

You need to create the password for the remote access. You can do it this way: 

R1 configure terminal

R1(config)#line vty 0 4

R1(config-line)#password mypassword

You can also do the same for the console port

R1config t

R1(config)#line con 0

R1(config-line)#password mypassword

 

Hope it helps.