reply to tamz273
Re: [Config] IPSec VPN with Cisco 877Create a loopback interface:
int loopback0
And change:
interface Virtual-Template1 type tunnel
ip unnumbered Vlan100
tunnel mode ipsec ipv4
tunnel protection ipsec profile AOS_ipsec_profile
to:
interface Virtual-Template1 type tunnel
ip unnumbered loopback0
tunnel mode ipsec ipv4
tunnel protection ipsec profile AOS_ipsec_profile
And what do you have going on here? Are you using VLAN1?
ip access-list extended AOS_split_tunnel
remark Defines which local (office) networks a remote VPN client will route to
permit ip 192.168.1.0 0.0.0.255 192.168.30.0 0.0.0.255
!
logging trap debugging
access-list 1 remark INSIDE_IF=Vlan1
access-list 1 remark CCP_ACL Category=2
access-list 1 permit 192.168.0.0 0.0.255.255
dialer-list 1 protocol ip permit
Add:
access-list 100 permit ip 192.168.1.0 0.0.0.255 192.168.30.0 0.0.0.255
and change this section to:
crypto isakmp client configuration group AOS
key **************
dns 192.168.1.4
pool VPNPool
acl 100
Also, can you do an "sh ver" ? |