Hi,
I've tried to configure telnet and ssh access on different vty interface following this configuration :
user-interface con 0
authentication-mode aaa
user-interface vty 0 4
authentication-mode password
user privilege level 15
set authentication password cipher XXXX
protocol inbound telnet
user-interface vty 16 20
authentication-mode aaa
user privilege level 15
protocol inbound ssh
but it didn't work. In order to work, I have to do :
user-interface vty 0 4
authentication-mode aaa
user privilege level 15
protocol inbound all
Any idea why I can't use the vty interface 0-4 only for telnet (with password authen) and vty interface 15-20 for only ssh (with aaa authen)
Thanks ;)