AAA Lab Steps With Commands
AAA Lab Steps With Commands
Step 3 --> Configure the line console to use the defined AAA authentication
method:
R1(config)# line console 0
R1(config-line)# login authentication default
Step 4 --> Verify the AAA authentication method:
Username: Admin1
Password: admin1pa55
R1>
Step 1 --> Configure domain name and crypto key for use with SSH:
R1(config)# ip domain-name ccnp_v8.com
R1(config)# crypto key generate rsa .. 1024 Bits
Step 2 --> Configure a named list AAA authentication method for the vty lines on
R1:
R1(config)# aaa authentication login SSH-LOGIN local
Step 3 --> Configure the vty lines to use the defined AAA authentication method:
R1(config)# line vty 0 4
R1(config-line)# transport input ssh
R1(config-line)# login authentication SSH-LOGIN
R1(config-line)# end
Step 4 --> Verify the AAA authentication method:
PC> ssh -l Admin1 192.168.1.1
Open
Password: admin1pa55