本机 192.168.1.16 #manjaro
目标 192.168.1.100 #centos
step1.
# manjaro 系统安装软件
yay -S gost
# 运行 gost
gost -L=:1082
step3
在本机 192.168.1.16 使用 ssh 连接目标
ssh -R 1082:localhost:1082 -oHostKeyAlgorithms=+ssh-rsa -p 22 root@192.168.1.100
-oHostKeyAlgorithms=+ssh-rsa 是由于目标主机的配置限制,主要是-R 和其参数
step4
连接到目标 192.168.1.100 后配置代理
yum 代理 /etc/yum.conf
proxy=http://127.0.0.1:1082
环境变量
export ALL_PROXY=socks5://127.0.0.1:1082
测试
curl
www.baidu.com 注意查看本机上的 gost 日志和目标上 curl 返回内容确认
以上方法也适用于访问受限制的网站,只是不需要跳板而已