I am running an ASA 5506 (9.6). I have two IP Ranges 1.35.133.88/29 and 1.35.135.176/29. I have setup in my router the routes. I have an outside interface with 1.35.133.90. I have an DMZ interface with 1.35.135.178.
Below you can find the configuration:
!
interface GigabitEthernet1/1
nameif outside
security-level 0
ip address 1.35.133.90 255.255.255.248
!
interface GigabitEthernet1/2
nameif mgmt
security-level 100
ip address 192.168.1.1 255.255.255.0
!
interface GigabitEthernet1/3
nameif inside
security-level 100
ip address 10.0.0.1 255.255.255.0
!
interface GigabitEthernet1/4
nameif dmz
security-level 50
ip address 1.35.135.178 255.255.255.248
!
object network DMZInternet
subnet 1.35.135.176 255.255.255.248
access-list outside_access_in extended permit icmp any any log debugging
access-list outside_access_in extended permit ip any host 1.35.135.179 log debugging
access-list outside_access_in extended permit icmp any object DMZInternet
object network EdgeServer
nat (dmz,outside) static 1.35.135.179
access-group outside_access_in in interface outside
access-group nonat in interface dmz
access-group global_access global
route outside 0.0.0.0 0.0.0.0 1.35.133.89 1
route inside 192.168.0.0 255.255.255.0 10.0.0.2 1
route outside 0.0.0.0 0.0.0.0 1.35.133.93 tunneled
I want to use public IP addresses on the hosts, but I cannot figure why it is failing. If I run a ping command from my Cisco C881 Router it does not retreive the public IP Address through the ASA.
What am I doing wrong here?