ACL for Telnet Access
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2008 11:49 AM - edited 03-06-2019 12:25 AM
I was hoping to create an access list so that only a single IP address can telnet into the switch and all others would be blocked. I currently have a Catalyst 3550. Not having much luck. Any help would be appreciated.
- Labels:
-
Other Switching

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2008 11:54 AM
Michael,
I would want you to "know what you are doing". Here is a link that might help you.
Im sure if you google, you might get tons of configuration example, but as a network administrator, you should know exactly the desired result. The chances are that things can go wrong if you didnt.
Good luck, hope that url helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2008 12:01 PM
"access-list 1 permit xxx.xxx.xxx.xxx
lin vty 0 15
access-class 1 in
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2008 01:02 PM
even better:
access-list 1 permit xxx.xxx.xxx.xxx
access-list 1 deny any log
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2008 04:35 PM
access-list 101 remark --- VTY access, host & protocol restricted.
access-list 101 permit tcp host aaa.bbb.ccc.ddd any eq telnet
access-list 101 deny ip any any log
line vty 0 15
access-class 101 in
transport input telnet
Would be preferable to use SSH (TCP 22) rather than Telnet (TCP 23) though.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2023 09:44 AM
