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!

Block all telnet connections 1

Status
Not open for further replies.

RonSwift

MIS
Nov 25, 2002
9
0
0
US
I am using only SSH to connect to my ASA 5520. I want to block telnet all together. What might be the best way to do this?

Thanks in advance
 
you want to block telnet to the 5520 or through the 5520??

 
From the CLI check what telnet connections are allowed:
Code:
show run telnet
It should show something like:
Code:
telnet 192.168.1.0 255.255.255.0 inside
or maybe several lines.
The syntax is 'Protocol' (i.e. Telnet, SSH or HTTP), 'network address' (i.e. 192.168.1.0), 'subnet mask' (i.e. 255.255.255.0 to indicate all hosts on network 192.168.1.0/24) and finally 'Interface name' (i.e. Inside, Outside etc). Simply remove these lines to disable the access.

For example if you have 'telnet 192.168.1.0 255.255.255.0 inside' and you want to disable this just do a 'no' for the line.

Andy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top