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-