虽然踩了不少坑,但总结起来方法只有简单3步。
1:使用V2速度良好的节点,然后从V2获得本地socks5。
2:socks5转http,这里建议使用cow
rc.txt配置文件设置如下:
listen = http://127.0.0.1:9999
#############################
# 指定二级代理
#############################
# SOCKS5:
proxy = socks5://127.0.0.1:1080
3:rclone挂载前先设置http代理,建议新建bat方便运行
set HTTP_PROXY=http://127.0.0.1:9999
set HTTPS_PROXY=http://127.0.0.1:9999
rclone mount googledrive:/ g: --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty
大功告成!