Quoting Michael and Cam:
cam> I'm still wondering how to tunnel my http traffic thought ssh to cam> my internal web server. I use Putty to connect to a RH box behind cam> LEAF from outside giving me a comand line interface. Is the cam> tunneling done by somehow directing traffic through PuTTY ? mm> I'm not sure I know how to tell you any more than I already have. mm> Set up SSH Tunneling -- it is a session property. I don't know if mm> putty has it -- can somebody else on the board please tell us if mm> putty has port forwarding? PuTTY does support port forwarding. You can do it with just putty.exe and tweaking the Connection->SSH->Tunnels properties. Rather than explain how to work the GUI, here's how to do it with plink[1]. Run: plink.exe -ssh you@a_RH_box -L 8888:internal_web_server:80 and after you've logged in, point the browser on the machine you started plink on to: http://localhost:8888/ You should see the web server running on internal_web_server. internal_web_server and a_RH_box can be the same hostname if you are SSHing to the web server; the topology wasn't clear from your description. Hope that helps. If not, please reply with more specific details about what you're trying and how it is failing. --Brad [1] http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html _______________________________________________________________ Don't miss the 2002 Sprint PCS Application Developer's Conference August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm ------------------------------------------------------------------------ leaf-user mailing list: [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/leaf-user SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html
