-
Notifications
You must be signed in to change notification settings - Fork 1.1k
FAQ
Rockheader edited this page Oct 7, 2014
·
8 revisions
-
I started but the shadowvpn process is missing
Check
/var/log/shadowvpn.log
for what happened -
can not open /dev/net/tun: open: No such file or directory
Try
opkg install kmod-tun modprobe tun mkdir /dev/net mknod /dev/net/tun c 10 200
-
ip: command not found
Try
opkg install ip
-
if scripts don't work, you can try to configure via LuCI
-
general diagnose steps:
- on client ping server real IP
- on client ping server VPN IP 10.7.0.1
- on client
traceroute 8.8.8.8
make sure it goes through 10.7.0.1 - on client
ping 8.8.8.8
; on serversudo tcpdump -i tun0
see if any packet arrives - you can also run
sudo tcpdump host 8.8.8.8
orsudo tcpdump port 53
etc on the client or server - on server
netstat -nr
andifconfig
check if your wan iseth0
if not, update server_*.sh - on client
netstat -nr
andifconfig
check if your lan iseth0
. if not, update client_*.sh
Submit an issue if you still can't solve your problem. Post what you have tried and provide as much information as possible.