作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有一个 $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/
我是一名优秀的程序员,十分优秀!