runlikeanantelope
IS-IT--Management
I want to do the following:
1) Allow users to ssh to line vty 3 using an authentication method that queries an external RADIUS server
2) Allow a script to ssh to line vty 4 using local authentication that queries the local database
What is the command I type to ssh to vty 0 3 vs. vty 4? I tried to setup rotary groups and ssh using this command but it does not work:
ssh -l username routername -p 3001
Here is my config:
line vty 0 2
access-class 1 in
exec-timeout 60 0
password x
transport input telnet
line vty 3
access-class 1 in
exec-timeout 60 0
privilege level 15
password x
authorization exec RADIUS
login authentication RADIUS
transport input ssh
line vty 4
access-class 1 in
exec-timeout 60 0
privilege level 15
password X
authorization exec RADIUS
login authentication LOCAL
transport input telnet ssh
1) Allow users to ssh to line vty 3 using an authentication method that queries an external RADIUS server
2) Allow a script to ssh to line vty 4 using local authentication that queries the local database
What is the command I type to ssh to vty 0 3 vs. vty 4? I tried to setup rotary groups and ssh using this command but it does not work:
ssh -l username routername -p 3001
Here is my config:
line vty 0 2
access-class 1 in
exec-timeout 60 0
password x
transport input telnet
line vty 3
access-class 1 in
exec-timeout 60 0
privilege level 15
password x
authorization exec RADIUS
login authentication RADIUS
transport input ssh
line vty 4
access-class 1 in
exec-timeout 60 0
privilege level 15
password X
authorization exec RADIUS
login authentication LOCAL
transport input telnet ssh