We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
#cat sshtunnel.sh ssh -N -g -f -D 7777 newdongyuwei@69.x.xx.xxx #or: #ssh -NfD *:7777 newdongyuwei@69.x.xx.xxx
注意 -g选项,或者使用*:7777. 否则ipad无法使用该ssh tunnel。
设置ipad使用自动HTTP代理,proxy.pac.js是pac文件,部署在本地静态文件服务器上: http://192.168.0.101:8888/proxy.pac.js
cat /data/ria/proxy.pac.js:
function FindProxyForURL(url, host) { return "SOCKS 192.168.0.101:7777"; }
替换192.168.0.101为你自己的ip,修改端口号7777为自己想要的端口号即可。
There was an error while loading. Please reload this page.