Hi,
I guess your setup would be abit diffrent from the typical situation since you have an actual public IP address on the host itself but still need to manipulate the ports towards Internet.
The basic configuration format (that I use) for Port Forward / Static PAT is the following
object network STATIC
host
nat (inside,outside) static service tcp
In this case I guess the =
access-list OUTSIDE-IN permit tcp any object STATIC eq
You can confirm operation with
packet-tracer input outside tcp 1.2.3.4 1234
One optional way of doing this regarding NAT might be
object service REAL-PORT
service tcp source eq
object service MAPPED-PORT
service tcp source eq
object network IP-ADDRESS
host
nat (inside,outside) source static IP-ADDRESS IP-ADDRESS service REAL-PORT MAPPED-PORT
Hope this helps
- Jouni