You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
高度总结一下前因后果:
我有一台闲置的没有IPV4地址,只有IPV6地址的服务器(Ubuntu 20.04),打算部署这个项目和朋友一起用,结果IPV6搞得我头昏脑胀。什么端口转发、反代、解析AAAA域名都有问题,搞得我头疼——比如报错,比如无法上传文件,比如超时问题等等,全部碰到过——,结果想起来我用了不知道多久的gost……嗯,gost端口转发什么毛病没有……
IPV6地址因为域名解析了,就直接域名+端口,高效又简单。IPV4我也测试了,公网IP+端口也没毛病。
安装教程我是按照作者说明的教程进行的,我只是固定了一个端口用来转发,就省略了。
进入目录,执行后台运行,这样我就好关掉SSH了,嘿。
cd gpt_academic
nohup python3 main.py &
GOST更简单,按照gost说明文档也没难度,或者像我这种懒鬼也可以直接脚本。
gost一键脚本:https://github.com/KANIKIG/Multi-EasyGost
wget -P /root -N --no-check-certificate https://raw.githubusercontent.com/mack-a/v2ray-agent/master/install.sh && chmod 700 /root/install.sh && /root/install.sh
7新增gost转发配置——[1] tcp+udp流量转发, 不加密——随便监听一个端口(访问端口)——127.0.0.1——固定端口(学术优化的本地端口)——搞定。
我只是防火墙放行了几个固定IP,没有设置账号密码哦,没有测试。
Beta Was this translation helpful? Give feedback.
All reactions