cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
528
Views
0
Helpful
2
Replies

map inbound tcp port 44444 to tcp port 443?

jim.brown
Level 1
Level 1

I have a problem with a customer who authenticates all of his outbound http and https traffic on a proxy. I need for our software to connect outbound from his network on tcp port 44444, and then map that tcp port to 443 on my network before is hits my servers. I have a PIX and a CSS 11051. I have not had any luck with either. Any suggestions?

2 Replies 2

cpembleton
Level 4
Level 4

You need a static pat entry.

Example:

host inside 10.0.0.1 port 443

host outside 65.10.10.10 port 4444

static (inside,outside) 65.10.10.10 4444 10.0.0.1 443 netmask

255.255.255.255

Hope this helps!

Chad

Please rate if this helps!

Hi,

Not exactly. A static would look like:

static (inside,outside) tcp a.b.c.d 44444 w.x.y.z 443 netmask 255.255.255.255 0 0

where a.b.c.d is the external IP (or use interface if that's the external IP to use), and w.x.y.z is the translated IP.

Glen