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

Enable SSH from outside

Status
Not open for further replies.

paultaylor04

Technical User
Oct 16, 2003
46
US
what's the command i can use to enable ssh from anybody on the outside interface?
i know giving access to the entire internet is not a good practice but this is only for lab purposes
 
you have to use

ssh 0.0.0.0 0.0.0.0 outside

and generate keys for ssh:

ca generate rsa key 768
ca save all

when you connect using ssh, you need a username and password. I have not been able to access using the default user, so maybe you will have to create a user:

aaa authentication ssh console LOCAL
username <user> password <key> privilege <number>

privilege 15 = enable

you can also use a RADIUS or TACACS server this way:

aaa authentication ssh console RADIUS

aaa-server RADIUS protocol radius
aaa-server RADIUS (interface,commonly inside) host <ip> <password> timeout 15

Hope you get it to work.

Diego.
 
You will also need a hostname, which you should already have and a domain name setup on the pix. I would also generate the key size bigger, such as 2048. The username is pix and the password is your telnet password. I have never needed to create a user or use RADIUS/TACACS.
 
The default user for the pix firewall when using ssh is

pix

Try that for the username and you hopefully will be able to get it.

Jim
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top