-
-
Save ninehills/499932 to your computer and use it in GitHub Desktop.
linux下ssh翻墙断线重连
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/expect | |
set timeout 60 | |
spawn /usr/bin/ssh -D 7070 -g [email protected] | |
#这里的 username 为你自己的用户名,yourserver.com 为你自己的服务器域名或ip | |
expect { | |
"password:" { | |
send "password\r" | |
#将第二个 password 改为你自己的密码 | |
} | |
} | |
interact { | |
timeout 60 { send " "} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment