Hi,
I'm having issues configuring my basic site to site vpn. Its a simple IPSec set-up between two 1721 routers. I can't seem to ping from one computer to the other and this is my first vpn config so i'm not too well prepared.
set-up:
Node1(192.168.1.1)<-->(192.168.1.2)Router1(10.0.0.1)<-->(10.0.0.2)Router2(192.168.2.2)<-->(192.168.2.1)Node2
I was wondering if anyone can spot something up with my code as i'm truly stuck!

Router 1
hostname Router1
!
enable secret 5 $1$VoN1$WXaWwxV2SWUi63HieX0WX.
!
ip subnet-zero
!
!
!
ip audit notify log
ip audit po max-events 100
!
!
crypto isakmp policy 9
hash md5
authentication pre-share
crypto isakmp key 1144 address 10.0.0.2
!
crypto ipsec security-association lifetime seconds 86400
!
crypto ipsec transform-set 1144 esp-3des esp-md5-hmac
!
crypto map 1144 10 ipsec-isakmp
set peer 10.0.0.2
set transform-set 1144
match address 101
!
!
!
!
interface Ethernet0
no ip address
shutdown
half-duplex
!
interface FastEthernet0
ip address 192.168.1.2 255.255.255.0
speed auto
!
interface Serial0
bandwidth 64
ip address 10.0.0.1 255.0.0.0
encapsulation ppp
crypto map 1144
!
ip classless
ip route 192.168.2.0 255.255.255.0 10.0.0.2
no ip http server
!
!
access-list 101 permit ip 192.168.1.0 0.0.0.255 192.168.2.0 0.0.0.255
!
!
line con 0
line aux 0
line vty 0 4
password woody1144
login
!
end
Router 2
hostname Router2
!
enable secret 5 $1$yuQr$UhAc24BRrE5WSZcycd8PX0
!
ip subnet
!
!
!
ip audit notify log
ip audit po max-events 100
!
!
crypto isakmp policy 9
hash md5
authentication pre-share
crypto isakmp key 1144 address 10.0.0.1
!
crypto ipsec security-association lifetime seconds 86400
!
crypto ipsec transform-set 1144 esp-3des esp-md5-hmac
!
crypto map 1144 10 ipsec-isakmp
set peer 10.0.0.1
set transform-set 1144
match address 101
!
!
!
!
interface Ethernet0
no ip address
shutdown
half-duplex
!
interface FastEthernet0
ip address 192.168.2.2 255.255.255.0
speed auto
!
interface Serial0
bandwidth 64
ip address 10.0.0.2 255.0.0.0
encapsulation ppp
clockrate 64000
crypto map 1144
!
ip classless
ip route 192.168.1.0 255.255.255.0 10.0.0.1
no ip http server
!
!
access-list 101 permit ip 192.168.2.0 0.0.0.255 192.168.1.0 0.0.0.255
!
!
line con 0
line aux 0
line vty 0 4
password woody1144
login
!
end
Thank you,
Richard