You have a problem with you NAT statements. Your inside network is on 10.68.144.0/24 and the outside network is 192.168.128.0/24. So, the nat (inside) statement tells the inside to NAT all traffic going out of the inside network. The global (outside) command is then saying that all IP's from NAT ID group 1 should go out on the address of 10.68.144.98. This is a problem because the 10.68 address isn't routeable on the 192.168 network.
So, your global (outside) statement should have an IP address in the 192.168 range so that all internal traffic goes out on that IP address. Or you could use the external interface of eth0 using the command global (outside) 1 interface.
Also, your static map statement doesn't make any sense. With a static statement you assign a global address to a private internal address. For example, if you have an internal mail server with a private IP you would put a static mapping in place to map it's MX record IP to the actual internal IP. What you have done is say that the external address of 192.168.128.0 should be mapped to the internal address of 10.68.144.0. These are unusable IPs as you are using a /24 mask which makes these IP addresses network addresses and not host addresses.
ip address outside 192.168.128.101 255.255.255.0
ip address inside 10.68.144.100 255.255.255.0
arp timeout 14400
global (outside) 1 10.68.144.98 netmask 255.255.255.0
nat (inside) 1 0.0.0.0 0.0.0.0 0 0
static (inside,outside) 192.168.128.0 10.68.144.0
I hope that this make sense!
Chris.
************************
Chris Andrew, CCNA
chrisac@gmx.co.uk
************************