1
rainy3636 2014-12-13 11:07:18 +08:00 via iPhone
443
|
2
bjzhush 2014-12-13 11:22:33 +08:00
不知道你是不是在MAC下,我平时在ubuntu下,写了个简单的ssh proxy脚本,运行后自动连接,断线重连,放到crontab里面设为每3分钟运行一次即可
注: 需要sshpass 支持 cho "start----------" echo "Nos is $(date)" netstat -ntpl|grep 7070 if [[ $? -ne 0 ]]; then echo Creating new tunnel connection sshpass -p "yourpassword" ssh -qTfnN -D 7070 user@remotesshhost if [[ $? -eq 0 ]]; then echo Tunnel created successfully else echo An error occurred $? [...] fi fi echo "end----------" |
3
herozzm 2014-12-13 11:25:21 +08:00
可能是ssh连接太频繁,Linode的ssh端口连接太频繁是不会被封的
|
4
herozzm 2014-12-13 11:26:06 +08:00
说错了,Linode的ssh端口连接太频繁是会被封的,换端口又可以用了,但接着被封,最后封IP
|
5
imn1 2014-12-13 11:32:49 +08:00
目前好几个收费的梯子,包括我正在用的都是架在 linode 的,被重点关注一点都不出奇
|
6
imn1 2014-12-13 11:54:43 +08:00
@bjzhush
咋你的脚本跟俺的差不多呢? 我也是用sshpass,然后检测进程 我以前遇到一个情况—— ssh登录连上,立马断掉,又自动登录,断掉,自动反复几次,服务器就报“登录频繁,拒绝连接”……无语 换不同的服务提供者都这样,只有用混淆ssh的梯子才没这个现象 问了好多人都没这事,搞得被害我妄想症又犯了,总觉得自己被盯上了~ 另:config 加上这个会更好,没加这个也很容易断,因为也不是全部都走梯子,加了就稳定很多了 Host * Protocol 2 ServerAliveInterval 30 |
7
love OP |
8
dant 2014-12-13 12:42:02 +08:00 via iPhone
Lish
|
9
flynaj 2014-12-13 15:24:00 +08:00
stunnel,可以搞定一切
|
11
bjzhush 2014-12-13 22:29:48 +08:00
@imn1 我这几年都是用一个叫cyssh的网站,还挺稳定的,一年100块
至于protocol ,我看了下man ssh, The OpenSSH SSH client supports SSH protocols 1 and 2. The default is to use protocol 2 only, though this can be changed via the Protocol option in ssh_config(5) or the -1 and -2 options (see above). 默认应该就是2 保持连接这个一直是设的,谢啦 |
12
heganj 2015-05-15 14:23:51 +08:00
|