I would like to create the following situation on an ASA Firewall, but i can't get find a working solution on new firmware.
Incomming traffic on outside interface on ip 1.1.1.1 can be tcp/443 or tcp/80.
If traffic is on tcp/80 NAT to 2.2.2.1 tcp/80
if traffic is tcp/443 NAT to 2.2.2.2 tcp/443
In earlier vesion you could do this like:
access-list SSL permit tcp host 2.2.2.2 eq 443 x.x.0.0 255.255.0.0 eq 443
static (Inside,Outside) tcp 1.1.1.1 443 access-list SSL
access-list HTTP permit tcp host 2.2.2.1 eq 80 x.x.0.0 255.255.0.0 eq 80
static (Inside,Outside) tcp 1.1.1.1 http access-list HTTP
This seems to be deprecated.
We are using ASA 8.3(2) , ASDM 6.3(4)50
Thx.,..