Question : Cisco ASA PAT Question:  1 Public multiple PORTS to Multiple Internal IPs?

How can I setup an Cisco ASA 5510 (8.0) to map different PORTS on 1 public IP to different Internal IPs.

For example:

Public IP port 1000 = 200.200.200.200:1000
Public IP port 2000 = 200.200.200.200:2000

Internal Web Server 1 = 192.168.0.101:80
Internal Web Server 2 = 192.168.0.202:80

Can I use the same PUBLIC IP (200.200.200.200) and two different ports 1000, and 2000 and mapped them to 2 different web servers:  192.168.0.101 and 192.168.0.202?

Answer : Cisco ASA PAT Question:  1 Public multiple PORTS to Multiple Internal IPs?


you need the following:

access-list acl_out extended permit tcp any host 200.200.200.200 eq 1000
access-list acl_out extended permit tcp any host 200.200.200.200 eq 2000
access-group acl_out in interface outside
static (inside,outside) tcp 200.200.200.200 1000 192.168.0.101 80 netmask 255.255.255.255
static (inside,outside) tcp 200.200.200.200 2000 192.168.0.202 80 netmask 255.255.255.255
Random Solutions  
 
programming4us programming4us