Configuration Guide TACACS+ Configuration
Using TACACS+ by Login Authentication
Enables aaa first:
Ruijie# configure terminal
Ruijie(config)# aaa new-model
Then configures tacacs+ server information:
Ruijie(config)# tacacs-server host 192.168.12.219
Ruijie(config)# tacacs-server key aaa
Configures authentication method of using tacacs+:
Ruijie(config)# aaa authentication login test group tacacs+
Applies the authentication method on the interface:
Ruijie(config)# line vty 0 4
Ruijie (config-line)# login authentication test
Through the above configuration, you implement to configure login tacacs+
authentication. The configuration is shown as follows;
Ruijie#show running-config
!
aaa new-model
!
aaa authentication login test group tacacs+
!
tacacs-server host 192.168.12.219
tacacs-server key aaa
!
line con 0
line vty 0
login authentication test
line vty 1 4
login authentication test
!