Alright I've got a Cisco 1710 router setup to VPN into a Linksys RV042 router. My goal is to be able to access the 192.168.1.0 network from the 192.168.75.0 network and visa-versa. I can see that the connection is up on the RV042 web interface but I can't achieve my goal of accessing the other network. Below is my configuration from the 1710:
sun-blm#show run
Building configuration...
Current configuration : 3121 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname sun-blm
!
aaa new-model
!
!
aaa authentication login default local
aaa authentication login console none
aaa authentication ppp default local
aaa authorization exec default local if-authenticated
aaa authorization network default local if-authenticated none
aaa session-id common
!
memory-size iomem 15
ip subnet-zero
!
!
no ip domain-lookup
ip name-server 205.171.3.65
ip name-server 205.171.2.65
ip name-server 206.163.82.4
ip name-server 208.161.110.79
!
ip dhcp pool 0
network 192.168.1.0 255.255.255.0
netbios-node-type h-node
default-router 192.168.1.254
dns-server 205.171.3.65 205.171.2.65 206.163.82.4 208.171.110.79
lease 8
!
ip audit notify log
ip audit po max-events 100
ip ssh time-out 120
ip ssh authentication-retries 3
vpdn enable
!
vpdn-group PPTP
! Default PPTP VPDN group
accept-dialin
protocol pptp
virtual-template 1
!
!
crypto isakmp policy 1
authentication pre-share
group 2
!
crypto isakmp policy 2
hash md5
authentication pre-share
group 2
!
crypto isakmp policy 3
authentication pre-share
!
crypto isakmp policy 4
hash md5
authentication pre-share
crypto isakmp key Password address 64.122.67.98
!
!
crypto ipsec transform-set rtpset1 esp-des esp-md5-hmac
crypto ipsec transform-set rtpset2 esp-des esp-sha-hmac
crypto ipsec transform-set rtpset3 esp-null esp-md5-hmac
crypto ipsec transform-set rtpset4 esp-null esp-sha-hmac
crypto ipsec transform-set rtpset5 esp-des
!
crypto map rtp 1 ipsec-isakmp
set peer 64.122.148.210
set peer 64.122.67.98
set transform-set rtpset1 rtpset2 rtpset3 rtpset4 rtpset5
match address 101
!
!
!
!
interface Ethernet0
description "Outside WAN"
ip address 64.122.148.210 255.255.255.248
ip nat outside
no ip mroute-cache
full-duplex
crypto map rtp
!
interface FastEthernet0
description "Inside LAN - Net 0"
ip address 192.168.1.254 255.255.255.0
ip nat inside
no ip mroute-cache
speed auto
full-duplex
!
interface Virtual-Template1
ip unnumbered FastEthernet0
peer default ip address pool default
ppp authentication pap ms-chap chap
ppp authorization LOCAL
!
router igrp 1
redistribute connected
network 64.0.0.0
network 192.168.1.0
!
ip local pool default 192.168.1.201 192.168.1.206
ip nat inside source list 7 interface Ethernet0 overload
ip nat outside source static 64.122.148.210 255.255.255.248
ip classless
ip route 0.0.0.0 0.0.0.0 64.122.148.209
no ip http server
ip pim bidir-enable
!
!
access-list 7 permit 192.168.1.0 0.0.0.255
access-list 101 permit ip 192.168.1.0 0.0.0.255 192.168.75.0 0.0.0.255
dialer-list 1 protocol ip permit
dialer-list 1 protocol ipx permit
!
!
line con 0
line aux 0
line vty 0 4
password 7 111A0C0B42435E5C
!
end
If anyone can help I'd be forever grateful!
Start Free Trial