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

Outside Access PIX

Status
Not open for further replies.

drbk563

IS-IT--Management
Nov 21, 2006
194
US
How can I allow access to the PIX from the outside using SSH?


Thank You
 
To access the PIX with ssh from the outside use the following command:

ssh a.b.c.d 255.255.255.255 outside

where a.b.c.d is the host address you want to allow.

If you hae never used SSH and have never configured it on the PIX before, you will need to do something like as follows to enable it properly:

hostname myfirewall
domain-name mydomain.mytld
ca gen rsa key 1024
passwd YourSSHPasswordGoesHere
ca save all
 
Is there a way I can able any ip address with any mask?

 
Sure. For any IP with any mask, just do:

ssh 0.0.0.0 0.0.0.0 outside
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top