Daily Archive for March 29th, 2010

SSH Proxy With Firefox Howto

翻墙

  1. use expect script
    1
    2
    3
    4
    5
    #!/usr/bin/expect -f
    spawn ssh -D 7070 fred@oracle1.com
    expect "password:"
    send "yourpassword\r"
    interact
  2. use firefox addon “autoproxy” to visit Inertnet.
Share