ooclab / otunnel

peer-to-peer tunnel tool
MIT License
239 stars 57 forks source link

otunnel的客户端开启的方式 #2

Closed proudlily closed 7 years ago

proudlily commented 7 years ago

我的server端是这样子开启的:

./otunnel listen -d 1314520:9090

客户端是怎么开启的呢?

./otunnel connect example.com:9090 -d -t r:LOCAL_HOST:LOCAL_PORT::REMOTE_PORT

这样子报错

ERRO[02/20 18:17:18] connect to example.com:9090 failed: dial tcp 93.184.216.34:9090: getsockopt: connection timed out

请问客户端是怎么开启呢?

thx

gwind commented 7 years ago

简单来说:

首先,你的 server 端监听所有地址(冒号前面为空):

./otunnel listen -d :9000

假设 server 的IP是 1.2.3.4 ,client 只需这样即可:

./otunnel connect 1.2.3.4:9000 -d -t ...

其中 -t 的含义,请参考下这里: 程序用法

proudlily commented 7 years ago

嗯嗯,好的,谢谢,么么哒~