Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
Network Questions help Please.?
access-list 100 permit tcp any any eq 80 time-range MWF
access-list 100 permit tcp any any eq 23 time-range ABS
time-range MWF
periodic Monday Wednesday Friday 8:00 to 17:00
time-range
absolute start 00:00 30 Sept 2012 end 01:00 30 Sept 2012
int f0/0
ip access-group 100 in
1. Given the commands shown above and assuming F0/0 is the inside interface of the network, explain what this ACL does.
2. Type in the two global configuration mode commands that are required to enable SSH on a Cisco router. (Note that this does not include line vty commands.)
1 Answer
- 8 years agoFavorite Answer
In reply to part 2 of your question there are 2 options I'm assuming this is what your trying to figure out I could be wrong as your question is unclear at this point.
Set Up an IOS Router or Switch as SSH Client
hostname carter
aaa new-model
username cisco password 0 cisco
crypto key generate rsa
ip ssh time-out 60
ip ssh authentication-retries 2
line vty 0 4
transport input SSH
Setup an IOS Router as an SSH server that performs RSA based User Authentication
Router(config)#hostname <host name>
Router(config)#ip domain-name <Domain Name>
Router(config)#crypto key generate rsa
Router(config)#ip ssh pubkey-chain
Router(conf-ssh-pubkey)#username <user name>
Router(conf-ssh-pubkey-user)#key-string
Router(conf-ssh-pubkey-data)#key-hash ssh-rsa <key ID>
Router(conf-ssh-pubkey-data)#end