ssh -qTfnN -D 7070 [email protected]

chrome的设置上一篇有讲


找了一个脚本自动连ssh代理不会自动断开

#!/usr/bin/expect
set timeout 60

spawn /usr/bin/ssh -D 7070 -g [email protected]
# 这里的 user 为你自己的用户名,yourserver.com 为你自己的服务器域名或 ip
expect {
"password:" {
send "xxxxx\r"
#这里的 xxxxx 改为你自己的密码
}
}
expect eof {
timeout 60 { send " "}
}


将上边代码保存为ssh

然后加上可执行权限 chmod a+x ssh

每次重启运行下./ssh就可以了。