Jan 23, 2007 #1 drbk563 IS-IT--Management Nov 21, 2006 194 US How can I allow access to the PIX from the outside using SSH? Thank You
Jan 23, 2007 #2 KiscoKid ISP Nov 17, 2002 1,279 GB 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 Upvote 0 Downvote
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
Jan 23, 2007 Thread starter #3 drbk563 IS-IT--Management Nov 21, 2006 194 US Is there a way I can able any ip address with any mask? Upvote 0 Downvote
Jan 23, 2007 #4 KiscoKid ISP Nov 17, 2002 1,279 GB Sure. For any IP with any mask, just do: ssh 0.0.0.0 0.0.0.0 outside Upvote 0 Downvote
Jan 23, 2007 Thread starter #5 drbk563 IS-IT--Management Nov 21, 2006 194 US Thank you for your help. Upvote 0 Downvote