Cisco ASA port forwarding problem

ciscocisco-asa

I configured a Cisco ASA, and NAT was configured fine. But now, I have to open some ports there, and all it shows is this error:

Address x.x.x.x overlaps with public ip and the nat is not downloaded

What could be the problem?

Cisco ASA version 9.2(2)4 and ASDM version 7.2(2)1enter image description here

interface GigabitEthernet0/0
 nameif Public-IP
 security-level 0
 ip address x.x.x.x 255.255.255.0 

interface GigabitEthernet0/5
 nameif Global-wireless
 security-level 70
 ip address 192.168.0.1 255.255.255.0 
!
interface Management0/0
 management-only
 nameif management
 security-level 100
 ip address 192.168.1.1 255.255.255.0 

same-security-traffic permit inter-interface
same-security-traffic permit intra-interface

object network global-wireless-subnet
 subnet 192.168.0.0 255.255.255.0

object network obj-192.168.0.205
host 192.168.0.205
nat (global-wireless,public-IP) static x.x.x.x service tcp 4370 4370

ERROR: Address x.x.x.x overlaps with Public-IP interface address.
ERROR: NAT Policy is not downloaded

Note: I read today that instead of IP, I should use address, and I am yet to test it. I will do the testing tomorrow.

Best Answer

If you are using static object NAT this way with the outside interface IP as a mapped IP - you have to use "interface" instead of using a specific interface IP.

nat (global-wireless,public-IP) static interface service tcp 4370 4370