I managed to set up the packetix vpn client and was able to make it work. However, i dont know, how to adjust routing table so I can connect to the internet through the VPN service.
**ifconfig**
eth0 Link encap:Ethernet HWaddr 00:26:18:13:5e:b7
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Interrupt:44 Base address:0xc000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:4826 errors:0 dropped:0 overruns:0 frame:0
TX packets:4826 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:492887 (492.8 KB) TX bytes:492887 (492.8 KB)
vpn_0 Link encap:Ethernet HWaddr 00:ac:e7:75:03:cd
inet addr:10.9.74.164 Bcast:10.255.255.255 Mask:255.0.0.0
inet6 addr: fe80::2ac:e7ff:fe75:3cd/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:184427 errors:0 dropped:0 overruns:0 frame:0
TX packets:469 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:500
RX bytes:13443561 (13.4 MB) TX bytes:24937 (24.9 KB)
wlan0 Link encap:Ethernet HWaddr 00:22:fa:dd:59:dc
inet addr:10.10.9.11 Bcast:10.10.9.255 Mask:255.255.255.0
inet6 addr: fe80::222:faff:fedd:59dc/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:169001 errors:0 dropped:0 overruns:0 frame:0
TX packets:167281 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:51141509 (51.1 MB) TX bytes:17176490 (17.1 MB)
**route**
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
10.10.9.0 * 255.255.255.0 U 2 0 0 wlan0
link-local * 255.255.0.0 U 1000 0 0 wlan0
10.0.0.0 * 255.0.0.0 U 0 0 0 vpn_0
default 10.10.9.254 0.0.0.0 UG 0 0 0 wlan0
(wlan0 is the default adapter used)
I tried using
ip route add 10.10.9.0/24 via 10.0.0.1
from http://ubuntuforums.org/showthread.php?t=1409687
but the vpn client goes from connected to connecting state (think the subnets are overlapping). What should i do??