RTR1 in Figure 4-30 connects two internetworks with overlapping addresses. 
NAT is implemented on the router as configured in Example 4-34, but devices cannot communicate across the router. What is wrong?
___________________________________________________________________________
___________________________________________________________________________
___________________________________________________________________________
Example 4-34 Configuration for Troubleshooting Exercise 2
interface Ethernet0
ip address 172.16.10.1 255.255.255.0
ip nat inside
!
interface Ethernet1
ip address 172.16.255.254 255.255.255.0
ip nat outside
!
router ospf 1
redistribute static metric 10 metric-type 1 subnets
network 10.0.0.0 0.255.255.255 area 0
!
ip nat translation timeout 500
ip nat pool NET1 10.1.1.1 10.1.255.254 netmask 255.255.0.0
ip nat pool NET2 192.168.1.1 192.168.255.254 netmask 255.255.0.0
ip nat inside source list 1 pool NET1
ip nat outside source list 1 pool NET2
!
ip classless
!
ip route 10.1.0.0 255.255.0.0 Ethernet0
ip route 192.168.0.0 255.255.0.0 Ethernet1
!
access-list 1 permit 172.16.0.0 0.0.255.255
|