I am having trouble getting port forwarding to work successfully. I have tried this on a windows 2000 machine and a debian linux machine. I can get the port listening, but when I attempt to pull up the a web page by going to "localhost:1082" it just hangs. Any ideas? Thanks, Zach p.s. - I have tried the following renditions... Net::SSH.start( ''myhost.com'', ''zdennis'',''mypass'', :auth_methods => %w(keyboard-interactive) ) do |session| t = session.forward.local( ''0.0.0.0'', 1082, ''localhost'', 80 ) session.loop end Net::SSH.start( ''myhost.com'', ''zdennis'',''mypass'', :auth_methods => %w(keyboard-interactive) ) do |session| t = session.forward.local( ''0.0.0.0'', 1082, ''localhost'', 80 ) session.loop loop do end end Net::SSH.start( ''myhost.com'', ''zdennis'',''mypass'', :auth_methods => %w(keyboard-interactive) ) do |session| session.forward.local( ''0.0.0.0'', 1082, ''localhost'', 80 ).join session.loop end Net::SSH.start( ''myhost.com'', ''zdennis'',''mypass'', :auth_methods => %w(keyboard-interactive) ) do |session| t = session.forward.local( ''0.0.0.0'', 1082, ''localhost'', 80 ) session.loop t.join end