cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
268
Views
0
Helpful
1
Replies

Forward all traffic to remote site is not working

firas.shaari
Level 1
Level 1

I'm using cisco vpn client to on windows 7 to connect to a 2851 router at home while I'm traveling. The VPN works fine except that no matter what I do I can't disable the split tunneling. Every time I try to direct all traffic including internet traffic through the router it fails. The only way it works when I use split tunneling in which I can access my home local network through the VPN tunnel and the internet through my the local default gateway. Can anyone take a look at my configuration and let me know please what went wrong ?

1 Reply 1

JP Miranda Z
Cisco Employee
Cisco Employee

Hi firas.shaari, Checking your config seems like you are missing the u turn configuration of the router to be able to do tunnel all, if you want to have internet traffic going through the vpn tunnel to the Router and them going back through the outside interface to get internet you need a uturn or also named on routers nat on a stick, this is the config that you are missing:

interface Loopback0

ip address 10.0.1.1 255.255.255.252 ---> the ip is just an example you can add any ip you want

ip nat outside

-

-

access-list 150 permit ip 192.168.1.0 0.0.0.255 any

-

-

route-map Nat-loop permit 10

match ip address 150

set ip next-hop 10.0.1.2

-

-

interface GigabitEthernet0/0

ip policy route-map Nat-loop

In case you want to check the official documentation this link is going to help you:

http://www.cisco.com/c/en/us/support/docs/security/vpn-client/71461-router-vpnclient-pi-stick.html

Hope this info helps!!

Rate if helps you!! 

-JP-