cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
447
Views
0
Helpful
1
Replies

PIX 515 e SSH configuration

hornbeck
Level 1
Level 1

Hello all,

I have a request to allow access for SSH on port 22 for a googlemini device.

Does anyone know the syntax? command line information to accomplist this on a PIX 515e.

1 Accepted Solution

Accepted Solutions

vitripat
Level 7
Level 7

There could be two scenarios:

1) googlemini device has its own public IP address (x.x.x.x) and its private IP is y.y.y.y

Assuming that there is no access-list defined on outside interface of PIX, commands would be-

static (inside,outside) x.x.x.x y.y.y.y

access-list 101 permit tcp any host x.x.x.x eq 22

access-group 101 in interface outside

2) googlemini device doesnt have a free public IP address, need to share the public IP address assigned to outside interface IP, commands would be-

static (inside,outside) tcp interface 22 y.y.y.y 22

access-list 101 permit tcp any interface outside eq 22

access-group 101 in interface outside

I hope this helps.

Regards,

Vibhor.

View solution in original post

1 Reply 1

vitripat
Level 7
Level 7

There could be two scenarios:

1) googlemini device has its own public IP address (x.x.x.x) and its private IP is y.y.y.y

Assuming that there is no access-list defined on outside interface of PIX, commands would be-

static (inside,outside) x.x.x.x y.y.y.y

access-list 101 permit tcp any host x.x.x.x eq 22

access-group 101 in interface outside

2) googlemini device doesnt have a free public IP address, need to share the public IP address assigned to outside interface IP, commands would be-

static (inside,outside) tcp interface 22 y.y.y.y 22

access-list 101 permit tcp any interface outside eq 22

access-group 101 in interface outside

I hope this helps.

Regards,

Vibhor.

Review Cisco Networking for a $25 gift card