Marsd, you have some valid points there and we did need more information from chuckalucka. Now we have then! Oh, and I wasn't yelling!
So, no DHCP. But another router comes in to play! Now we know why the 10 network counldn't ping the 192 network. The 10 network has an internet connected router, presumably with a default route set up for all outgoing traffic - "ip route 0.0.0.0 0.0.0.0 <outside_int_or_next_hop>.
The PC's on the 10 network will also have a route out to the internet via the internet router. If this is set up as their default route then no traffic will pass back to the 192 network. When a host on the 192 network pings the 10 network, they should have their default gw set up as 192.0.1.4. The router then routes this onto the 10 network, which it is connected to anyway and passes the data on to the host. The host on the 10 network receives this, but doesn't have a route back to the 192 network. So, no ping!! It passes it's traffic to the internet router which doesn't have a route to the 192 network either. It's not internet routeable and so is dropped!
So, you need to set up routes from the 192 network all the way across to the internet router and back again. This could be done using RIP (now that we know there is another router

). However, with only two routers you might as well set up static routes.
On the internet router you would need to tell it about the 192 network and how to get to it.
ip route 192.0.0.0 255.255.0.0 10.0.1.244
On the router between the two networks you might as well just set up a static route for all traffic, as it's a stub network.
ip route 0.0.0.0 0.0.0.0 <internet_route_ip>.
This will enable the hosts on the 192 network to gain internet access. Their default gateway will be 192.0.1.4
See how you get on. ************************
Chris Andrew, CCNA
chrisac@gmx.co.uk
************************