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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to Enable SSH on my PIX / ASA

Pix Hints and Tricks

How to Enable SSH on my PIX / ASA

by  F1lby  Posted    (Edited  )
To get SSH working on a PIX / ASA Firewall we need to generate a key - in this example it will be a 1024 bit key:

Enable
Conf t

crypto key zeroize rsa
domain-name cisco.com
crypto key generate rsa modulus 1024
write memory
_______________________________________


Next of all we need to enable SSH on the appropriate interface(s) and address(es)

ssh xx.xx.xx.xx 255.255.255.255 inside
ssh timeout 30


This enables SSH on the INSIDE interface and makes it available to address xx.xx.xx.xx
ssh timeout sets the SSH inactivity timer to 30 mins - after 30 mins of inactivity the session is terminated.
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top