in

Cisco 1841 can ping from Router but not from a connected

Good Morning all, I'm new here so this is my first post and I'm hoping that this site can be a useful resource for me going forward.

OK I have a Cisco 1841 connected to a Cable Modem which gives out IP's via DHCP, I can ping Google from the Router via either its IP or Domain name, the problem is that my connected PC can not ping anything beyond the Router.

I can also connect to the PC from a VPN over the Internet and get to a shared drive so I think this may be an Access list issue, but I'm just guessing at that.

PC has acquired an IP address along with default Gateway and DNS Server, I hoping that that this site can provide me with the answers that I'm looking for, below is my configuration with some of the more obvious parts changed for security reasons.

Many thank

Martyn
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
service password-encryption
!
hostname remotevpn
!
boot-start-marker
boot-end-marker
!
enable secret 5 xxxxxxxxxxxxxx
!
aaa new-model
!
!
aaa authentication login default local
aaa authentication login sdm_vpn_xauth_ml_1 local
aaa authentication login userauthen local
aaa authorization exec default local 
aaa authorization network sdm_vpn_group_ml_1 local 
aaa authorization network groupauthor local 
!
aaa session-id common
!
resource policy
!
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
ip cef
!
!
no ip dhcp use vrf connected
ip dhcp excluded-address 192.168.0.254
!
ip dhcp pool CLIENT
   import all
   network 192.168.0.0 255.255.255.0
   default-router 192.168.0.254 
   dns-server 194.168.8.100 
!
!
ip name-server 194.168.4.100
ip name-server 194.168.8.100
!
!
!
username martyn privilege 15 password 7 xxxxxxxxxxxxxx
username client password 7 xxxxxxxxxxxxx
username chris privilege 15 password 7 xxxxxxxxxxxxx
!
! 
!
crypto isakmp policy 1
 encr 3des
 authentication pre-share
 group 2
!
crypto isakmp client configuration group vpngroup
 key xxxxxxxxx
 dns 194.168.4.100 194.168.8.100
 pool SDM_POOL_1
 acl 100
!
!
crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac 
!
crypto dynamic-map SDM_DYNMAP_1 1
 set transform-set ESP-3DES-SHA 
 reverse-route
!
!
crypto map SDM_CMAP_1 client authentication list sdm_vpn_xauth_ml_1
crypto map SDM_CMAP_1 isakmp authorization list sdm_vpn_group_ml_1
crypto map SDM_CMAP_1 client configuration address respond
crypto map SDM_CMAP_1 65535 ipsec-isakmp dynamic SDM_DYNMAP_1 
!
!
!
interface FastEthernet0/0
 description Broadband Connection
 ip address 192.168.0.254 255.255.255.0
 ip nat inside
 ip virtual-reassembly
 no ip route-cache cef
 no ip route-cache
 duplex auto
 speed auto
 no cdp enable
!
interface FastEthernet0/1
 ip address dhcp
 ip nat outside
 ip virtual-reassembly
 no ip route-cache cef
 no ip route-cache
 duplex auto
 speed auto
 no cdp enable
 crypto map SDM_CMAP_1
!
interface Serial0/0/0
 no ip address
 shutdown
 no fair-queue
 clock rate 2000000
!
ip local pool SDM_POOL_1 192.168.0.10 192.168.0.50
ip route 192.168.3.0 255.255.255.0 FastEthernet0/1
ip route 0.0.0.0 0.0.0.0 dhcp
!
!         
ip http server
no ip http secure-server
ip nat source list 102 interface FastEthernet0/1 overload
!
access-list 100 remark SDM_ACL Category=4
access-list 100 permit ip 192.168.0.0 0.0.0.255 any
access-list 102 permit ip 192.168.3.0 0.0.0.255 any
!
!
!
!
control-plane
!
!
!
line con 0
line aux 0
line vty 0 4
 password 7 104D000A061843535C54
!
end
Movie Stars

Solution: Cisco 1841 can ping from Router but not from a connected

Try this:

conf t
no ip nat source list 102 interface FastEthernet0/1 overload
ip nat inside source list 102 interface FastEthernet0/1 overload