Have tried entering the above although get the following error?
%Protocol ssh configured in class-map router-access cannot be configured for the
self zone. Please remove the protocol and retry
Main Topics
Browse All TopicsI've been playing around with a Cisco 877 and have been trying to figure out how to allow remote access to the SDM and Telnet from external clients.
Basically I need to be able to jump on this router from any location ideally without having a VPN up first so SSH / HTTPS would be nice.
I've read several buts on how to configure SSH and some of the Access list details but whenever I try them it doesnt seem to let me in remotely. Local access is fine, heres the clean config. Any help / suggestions appreciated.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Okay, do this instead.
conf t
ip access-list ext 150
permit tcp any any eq 22
permit tcp any any eq https
permit tcp any any eq 23
class-map type inspect match-any router-access
no match protocol ssh
no match protocol https
match access-group 150
policy-map type inspect sdm-permit
class type inspect router-access
inspect
In access-list 150, you can restrict the source IP to "allowed" IP addresses to lock down SSH/HTTPS/TELNET access from the Internet if desired or leave it like above which allows that access from any IP.
Business Accounts
Answer for Membership
by: JFrederick29Posted on 2009-04-20 at 04:57:16ID: 24183671
The Firewall is not allowing SSH.
Add this:
class-map type inspect match-any router-access
match protocol ssh
match protocol https
policy-map type inspect sdm-permit
class type inspect router-access
inspect