Problem tunneling between two servers #168
Unanswered
Takashi-YOL
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Sorry that I didn’t understand this commands were executed on which VPS. From what I can tell, tun2socks should only be used in your local computer, and your VPSs should be connected/tunneled by V2RAY/SS proxy. Then you expose a SS port to accept connection from your local PC (tun2socks). |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am a beginner, I was trying to tunnel between my computer to
VPS1
(which has restricted internet due to Iran government policy) and VPS2 (From a Europan provider). Just rented an Ubuntu 20 VPS server from the Iranian provider (VPS1
). I tried installing and configuringshadowsocks
andv2ray
and usetun2socks
using these commands:nano /etc/resolv.conf
nameserver 8.8.8.8
nameserver 8.8.4.4
apt update
apt install shadowsocks-libev tmux
apt install vsftpd
apt install unzip
wget https://github.com/xjasonlyu/tun2socks/releases/download/v2.4.1/tun2socks-linux-amd64.zip
unzip tun*
I used this config for tun2socks (https://github.com/xjasonlyu/tun2socks/wiki/Examples):
ip tuntap add mode tun dev tun7
ip addr add 198.18.0.1/15 dev tun7
ip link set dev tun7 up
and then :
wget https://github.com/shadowsocks/v2ray-plugin/releases/download/v1.3.2/v2ray-plugin-linux-amd64-v1.3.2.tar.gz
tar xf v2ray*
Then I used this command:
ufw allow 80
I created this script as PEPE.json:
I ran the script :
ss-server -c PEPE.json -i tun7
and finally:
In the end, I could receive no connection at all. What did I do wrong? Do I have to tunnel between
VPS1
to VPS2 ( The Europian VPS) using a specific command? I did replaceX.X.X.X
with theVPS2
but still, nothing happened.I would appreciate any help to solve my issue.
There is a video here showing the path I followed:
https://t.me/CyberNigga2/996
Beta Was this translation helpful? Give feedback.
All reactions