SSH Tunnels How-to?
From the comments in http://ask.slashdot.org/article.pl?sid=06/01/19/2218226
by Anonymous Coward on Thursday January 19 2006, @06:23PM (#14514191)
A place where I dump (or technically archive) my ideas and attempts. [Mostly low priority stuff.]
From the comments in http://ask.slashdot.org/article.pl?sid=06/01/19/2218226
Here are couple of methods for copying a CD to a file in *nix: ( from http://www.cpqlinux.com/cdrw.html )
[root@server /root]# dd if=/dev/cdrom of=image.isoA guide to use of special filename in Cygwin is available at http://www.cygwin.com/cygwin-ug-net/using-specialnames.html.
[root@server /root]# cat /dev/cdrom >image.iso
2. Go to Connection -> SSH -> Tunnels
3. Add new forwarded port. Source Port: 1080, Destination: [blank], DYNAMIC (this is important), Auto. Click on Add.
4. In Firefox or any other program that supports a SOCKS proxy, enter host 127.0.0.1 (localhost) with port 1080.
ssh -N -f -D 1080
-D 1080 does the dynamic socks forwarding.
-N says don't run any command on the remote machine
-f says go into the background after asking for password
_______________
See also http://souptonuts.sourceforge.net/sshtips.htm