User Access Verifcation
garv221
Member Posts: 1,914
in CCNA & CCENT
Whats the quickest & easiest way to set this up? It should come up before the "enable" cmd & be done wehter logging in telnet or console. Thanks!
Comments
-
kplab Member Posts: 101You can configure login passwords using the following commands:
(config)#line console 0
(config-line)#password <console password>
(config-line)#login
(config)#line vty 0 4
(config-line)#password <telnet password>
(config-line)#login
For more sophisticated authentication methods such as local username database, RADIUS, etc., the detail configuration steps can be found in this Cisco router configuration guide:
http://www.cisco.com/univercd/cc/td/doc/product/software/ios122/122cgcr/fsecur_c/fsaaa/scfathen.htm#1000971KPLAB
www.kp-lab.com - Free CCNA, CCNP, and Network+ Study Guides -
garv221 Member Posts: 1,914kplab wrote:You can configure login passwords using the following commands:
(config)#line console 0
(config-line)#password <console password>
(config-line)#login
(config)#line vty 0 4
(config-line)#password <telnet password>
(config-line)#login
For more sophisticated authentication methods such as local username database, RADIUS, etc., the detail configuration steps can be found in this Cisco router configuration guide:
http://www.cisco.com/univercd/cc/td/doc/product/software/ios122/122cgcr/fsecur_c/fsaaa/scfathen.htm#1000971
Very Good, thanks. Thats what I thought I was trying, but wasn't working. - This was on a SIM though. I'll try it out. Thanks again.