Hi,
I am very new to networking. I am trying to learn a bit about NAT but having a problem and really need your helps after hours can't figure it out.

Suppose I have a single public IP address 200.1.1.6/30. And I go and configure a NAT router R1.
---[ R1 Router Configuration ]
interface FastEthernet0/0
ip address
172.16.32.1 255.255.240.0
ip nat inside
interface Serial0/0
ip address 200.1.1.6 255.255.255.252
ip nat outside
ip nat pool mypool
200.1.1.6 200.1.1.6 netmask 255.255.255.252
ip nat inside source list 1 pool mypool overload
access-list 1 permit any
ip route 0.0.0.0 0.0.0.0 Serial0/0
---[ ISP Router Configuration ]
interface FastEthernet0/0
ip address
192.168.1.1 255.255.255.0
interface Serial0/0
ip address 200.1.1.5 255.255.255.252
clock rate 56000
ip route 200.1.1.4 255.255.255.252 Serial0/0
A PC from LAN 172.16.32.0 can PING 192.168.1.2 web server (on ISP side) successfully, but cannot access the web site.
The tracert command shows this output:
PC>tracert 192.168.1.2
Tracing route to 192.168.1.2 over a maximum of 30 hops:
1 78 ms 68 ms 65 ms 172.16.32.1
2 * * * Request timed out.
3 222 ms 250 ms 175 ms 192.168.1.2
Trace complete.
Did I miss something? Please help!