the Goal i'm trying to achieve is having a Cisco outer 2801 (which is the internet ip: 75.150.67.105) open a port 3001 tcp to give internet to another cisco device with a IP of 172.16.8.240
interface FastEthernet0/0
ip address 75.150.67.105 255.255.255.252
no ip redirects
no ip unreachables
no ip proxy-arp
ip nat outside
ip virtual-reassembly in
zone-member security public
duplex auto
speed auto
crypto map vpn
I've try doing NAT, below is what i've try so far:
ip nat inside source static tcp 172.16.8.240 3001 FastEthernet0/0 3001
access-list 7 permit 172.16.8.0 0.0.0.255
thanks