Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ssh terminal configuration on 1700 series

Status
Not open for further replies.

gartox

IS-IT--Management
Jan 15, 2002
12
0
0
BE
Hi all !

I need help on how to configure ssh terminal on a cisco 1721 router.

I started a configuration but and that's not working... I can connect to the router with ssh client, but it asks me a login and password. I tried all couples of login/password saved on the router but access is always denied.

this is what I added :

ip ssh port 2022 rotary 10

line vty 4
exec-timeout 0 0
password 7 MyPass
login local
rotary 10
no exec
transport input ssh



thanx for your help
 
Hi guyz !

I found it !

ROUTER_CLIENT023(config)#access-list 12 permit host 172.18.ccc.ddd
ROUTER_CLIENT023(config)#exit
ROUTER_CLIENT023(config)#line vty 0 4
ROUTER_CLIENT023(config-line)#access-class 12 in
ROUTER_CLIENT023(config-line)#exit
ROUTER_CLIENT023(config)#username admin password 0 1-good-Pa$$word
ROUTER_CLIENT023(config)#line vty 0 4
ROUTER_CLIENT023(config-line)#login local
ROUTER_CLIENT023(config-line)#exit
ROUTER_CLIENT023(config)#ip ssh time-out 90
ROUTER_CLIENT023(config)#ip ssh authentication-retries 2
ROUTER_CLIENT023(config)#line vty 0 4
ROUTER_CLIENT023(config-line)#transport input ssh
ROUTER_CLIENT023(config-line)#exit
ROUTER_CLIENT023(config)#exit


With these steps it working fine !!

Hope this help !

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top