Found these for you.
ip nat inside source static zzz x.x.x.x yyy int qq yyy
zzz = 'tcp' or 'udp'
x.x.x.x = ip address of server (address to which the port is forwarded, a.k.a. inside local address)
yyy = the port number you want to forward
qq = name of the wan interface ('e1' or 'e0' or something, a.k.a. inside global)
Also Found:
ip address 10.10.10.1 255.255.255.0
ip nat inside
no ip mroute-cache
no cdp enable
hold-queue 32 in
hold-queue 100 out
!
interface Ethernet1
ip address 24.199.240.18 255.255.255.252
ip nat outside
ip inspect myfw out
no ip mroute-cache
no cdp enable
!
ip nat inside source list 102 interface Ethernet1 overload
ip nat inside source static tcp 192.168.0.7 80 interface Ethernet1 80
ip classless
ip route 0.0.0.0 0.0.0.0 24.199.240.13
ip http server
!
Hope it helps