I am trying to setup VPN server on my PC. I gave commands which are given in ToyVpnServer file but after giving the last command terminal looks stuck...and from the android phone I used ToyVpn to connect to it but it is not connecting...
The commands are given below:
echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -s 10.0.0.0/8 -o eth0 -j MASQUERADE #I tried this command with both "-A" and "-I" but nothing appears in the nat table :(
ip tuntap add dev tun0 mode tun
ifconfig tun0 10.0.0.1 dstaddr 10.0.0.2 up
./a.out tun0 8000 test -m 1400 -a 10.0.0.2 32 -d 8.8.8.8 -r 0.0.0.0 0
In ToyVpnClient I gave IP address of my PC, which is like 192.168.2.xxx/24. And the IP address of phone is also like 192.168.2.xxx/24.
Also the rule which I just entered in the nat table is not appearing there. I tried with both "-I" and "-A".
I'm not much familiar with the linux, iptable and server.. can some one please guide me about what is going wrong here...?
(I also tried to set the server via tutorial, http://cviorel.easyblog.ro/2009/02/09/how-to-set-up-a-vpn-server-on-ubuntu/. but I got following error( http://askubuntu.com/questions/222495/firewall-stopped-and-disabled-on-system-startup-error-problem-running-ufw-init):
Firewall stopped and disabled on system startup
ERROR: problem running ufw-init
Can someone please help me to figure out what is wrong...?!)