<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: ssh oneliners</title>
	<atom:link href="http://www.bofh-hunter.com/2008/04/08/ssh-oneliners/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bofh-hunter.com/2008/04/08/ssh-oneliners/</link>
	<description>Admin Spotting for Fun and Profit</description>
	<lastBuildDate>Fri, 16 Jul 2010 09:41:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: jperrin</title>
		<link>http://www.bofh-hunter.com/2008/04/08/ssh-oneliners/comment-page-1/#comment-37</link>
		<dc:creator>jperrin</dc:creator>
		<pubDate>Wed, 16 Apr 2008 13:45:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.bofh-hunter.com/?p=23#comment-37</guid>
		<description>good stuff! Thanks for the firefox updates and additional details.</description>
		<content:encoded><![CDATA[<p>good stuff! Thanks for the firefox updates and additional details.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerard Braad</title>
		<link>http://www.bofh-hunter.com/2008/04/08/ssh-oneliners/comment-page-1/#comment-36</link>
		<dc:creator>Gerard Braad</dc:creator>
		<pubDate>Wed, 16 Apr 2008 12:37:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.bofh-hunter.com/?p=23#comment-36</guid>
		<description>This is the following of what I do:

ssh -D 8080 -f -C -q -N [username]@[ssh server]

-D 8080 : This basically does a lot of dynamic stuff and makes it behave as a SOCKS server. Of course you could use any non privileged port here (above 1023).
-f : This will fork the process into the background after you type your password.
-C : Turns on compression.
-q : Quiet mode. Since this is just a tunnel we can make it quiet.
-N : Tells it no commands will be sent. (the -f will complain if we donÂ’t specify this)

In firefox use about:config and configure the following entries

network.proxy.no_proxies_on : localhost, 127.0.0.1, 192.168.0.0/24, .[companydomain.com]
network.proxy.socks : 127.0.0.1
network.proxy.socks_port : 8080
network.proxy.socks.remote_dns : true
network.proxy.socks_version : 5
network.proxy.type : 1

Especially remote_dns is a good thing, else your DNS requests will still be on the local DNS servers.</description>
		<content:encoded><![CDATA[<p>This is the following of what I do:</p>
<p>ssh -D 8080 -f -C -q -N [username]@[ssh server]</p>
<p>-D 8080 : This basically does a lot of dynamic stuff and makes it behave as a SOCKS server. Of course you could use any non privileged port here (above 1023).<br />
-f : This will fork the process into the background after you type your password.<br />
-C : Turns on compression.<br />
-q : Quiet mode. Since this is just a tunnel we can make it quiet.<br />
-N : Tells it no commands will be sent. (the -f will complain if we donÂ’t specify this)</p>
<p>In firefox use about:config and configure the following entries</p>
<p>network.proxy.no_proxies_on : localhost, 127.0.0.1, 192.168.0.0/24, .[companydomain.com]<br />
network.proxy.socks : 127.0.0.1<br />
network.proxy.socks_port : 8080<br />
network.proxy.socks.remote_dns : true<br />
network.proxy.socks_version : 5<br />
network.proxy.type : 1</p>
<p>Especially remote_dns is a good thing, else your DNS requests will still be on the local DNS servers.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
