The steps are similar for single-address static NAT configuration:
1. Configure network objects
object network WebServer-HTTP
host [Link]
nat (inside,outside) static [Link] service tcp 80 80
!
object network WebServer-HTTPS
host [Link]
nat (inside,outside) static [Link] service tcp 443 443
!
object network MailServer-SMTP
host [Link]
nat (inside,outside) static [Link] service tcp 25 25
!
object network MailServer-POP3
host [Link]
nat (inside,outside) static [Link] service tcp 110 110
2. Configure Access-Control Lists to permit the traffic flows. This Access-Control List
access-list OutsideToInside permit tcp any host [Link] eq 80
access-list OutsideToInside permit tcp any host [Link] eq 443
access-list OutsideToInside permit tcp any host [Link] eq 25
access-list OutsideToInside permit tcp any host [Link] eq 110
3. Apply the Access-Control List to the outside interface with an access-group statement.
access-group OutsideToInside in interface outside