gpt4 book ai didi

shell - 我的vps_ip可以设置为代理让wget使用吗?

转载 作者:行者123 更新时间:2023-12-02 10:48:26 25 4
gpt4 key购买 nike

有一个 $url 被 gfw 阻止。
现在我想通过这种方式从 $url 下载内容。

ssh  root@vps_ip  #to use my vps_ip to break the gfw.      
wget -c $url -O /home/material #to get the content on /home/material in my remote vps disk.
scp root@vps_ip:/home/material /home #to get the /home/material in my remote vps disk into my local disk .

我的vps_ip可以设置为代理让wget使用吗?

最佳答案

http://www.baidu.com/search?q=wget+socks+proxy

https://unix.stackexchange.com/questions/38755/how-to-download-a-file-through-an-ssh-server

<小时/>

选项 1,使用 security/dante 中的 socksify封装:

sudo pkg_add dante

ssh -N -C -D 1080 root@$vps_ip &

SOCKS_SERVER=localhost:1080 socksify wget -c $url -O /home/material
<小时/>

选项 2,通过 stdout/stdin 管道下载:

ssh -C root@$vps_ip "wget -O- $url" >> /home/material

关于shell - 我的vps_ip可以设置为代理让wget使用吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32343193/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com