Cisco 8.3 NAT

SKiTLz

2[H]4U
Joined
Aug 3, 2003
Messages
2,664
Recently upgraded on of our ASA's to 8.3 which as may know drastically changed the way NAT works. I've got the hand of it for the most part except for 1 annoyance. The code is below and everything works. What I've discovered though is you cannot have more than 1 NAT rule per object. As you can see I'm trying to forward two ports to the same host. Surely I don't have to create two objects with a NAT rule per each? That would be messy as all hell.
Code:
object network server1
host 10.10.10.1
nat (inside,outside) static interface service tcp 80 80


object-group service server1-services
service-object tcp destination eq www
service-object tcp destination eq https

access-list outside-incoming extended permit object-group server1-services any object server1

access-group outside-incoming in interface outside
 
Back
Top