Skip to content

Instantly share code, notes, and snippets.

@reorx
Forked from fuckgfw/sshgfw
Created October 25, 2010 12:42
Show Gist options
  • Select an option

  • Save reorx/644882 to your computer and use it in GitHub Desktop.

Select an option

Save reorx/644882 to your computer and use it in GitHub Desktop.
#!/usr/bin/expect
set timeout 60
spawn /usr/bin/ssh -D 7070 -g username@yourserver.com
#这里的 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