<?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: KARMA on the Fon and Sniffing Wireless Network Traffic with Ubuntu &#8211; Step by Step</title>
	<atom:link href="http://dimitar.me/karma-on-the-fon-and-sniffing-wireless-network-traffic-with-ubuntu-step-by-step/feed/" rel="self" type="application/rss+xml" />
	<link>http://dimitar.me/karma-on-the-fon-and-sniffing-wireless-network-traffic-with-ubuntu-step-by-step/</link>
	<description>Dimitar Darazhanski&#039;s blog.</description>
	<lastBuildDate>Tue, 07 Sep 2010 21:34:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: dimitar</title>
		<link>http://dimitar.me/karma-on-the-fon-and-sniffing-wireless-network-traffic-with-ubuntu-step-by-step/comment-page-1/#comment-819</link>
		<dc:creator>dimitar</dc:creator>
		<pubDate>Mon, 09 Aug 2010 14:23:52 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=277#comment-819</guid>
		<description>@gerard,

That sentence refers to Step 3 in the tutorial.

The DHCP server runs on the Ubuntu PC. Then in Step 4 you configure the Fon router to get IP addresses from the DHCP server on your Ubuntu PC.</description>
		<content:encoded><![CDATA[<p>@gerard,</p>
<p>That sentence refers to Step 3 in the tutorial.</p>
<p>The DHCP server runs on the Ubuntu PC. Then in Step 4 you configure the Fon router to get IP addresses from the DHCP server on your Ubuntu PC.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gerard</title>
		<link>http://dimitar.me/karma-on-the-fon-and-sniffing-wireless-network-traffic-with-ubuntu-step-by-step/comment-page-1/#comment-817</link>
		<dc:creator>gerard</dc:creator>
		<pubDate>Mon, 09 Aug 2010 08:49:40 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=277#comment-817</guid>
		<description>&quot;I also have to set up a DHCP server to assign IP addresses to all the wireless clients as they connect to my AP&quot;

could you please clearefy for me where do you run the dhcp server?
Is in on the FON  or on the UBUNTU PC.
I cant get it from the contex.

I asume it does not matter where you run it as long as the gateway the clients get is my laptop connection to the internet( correct me if I am wrong here)</description>
		<content:encoded><![CDATA[<p>&#8220;I also have to set up a DHCP server to assign IP addresses to all the wireless clients as they connect to my AP&#8221;</p>
<p>could you please clearefy for me where do you run the dhcp server?<br />
Is in on the FON  or on the UBUNTU PC.<br />
I cant get it from the contex.</p>
<p>I asume it does not matter where you run it as long as the gateway the clients get is my laptop connection to the internet( correct me if I am wrong here)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Merrick</title>
		<link>http://dimitar.me/karma-on-the-fon-and-sniffing-wireless-network-traffic-with-ubuntu-step-by-step/comment-page-1/#comment-729</link>
		<dc:creator>David Merrick</dc:creator>
		<pubDate>Tue, 26 Jan 2010 06:07:10 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=277#comment-729</guid>
		<description>I just got the Upside-Down-Ternet hack (http://www.ex-parrot.com/pete/upside-down-ternet.html) working on Jasager with my laptop. It was a pain to set up because I didn&#039;t know what I was doing with IPTables but I finally figured it out a few minutes ago.

If you&#039;re interested in doing that, follow this tutorial (https://help.ubuntu.com/community/Upside-Down-TernetHowTo) except for the networking setup. 

For that, kill firestarter because we&#039;re using iptables straight up. Just save the following code as &quot;iptables.conf&quot;, use iptables-restore &lt; /wherever/you/saved/iptables.conf to set up your firewall and you should be good to go.

*nat
-A POSTROUTING -j MASQUERADE
-A PREROUTING -i eth0 -p tcp -m tcp --dport 80 -j REDIRECT --to-ports 3128
-A PREROUTING -p all -d 192.168.0.1 -j DNAT --to-destination 192.168.1.1
COMMIT

*filter
:OUTBOUND - [0:0]
-A INPUT -i lo -j ACCEPT
-A INPUT -m state --state ESTABLISHED -j ACCEPT
-A INPUT -p all -s 127.0.0.1 -d 127.0.0.1 -j ACCEPT
COMMIT</description>
		<content:encoded><![CDATA[<p>I just got the Upside-Down-Ternet hack (<a href="http://www.ex-parrot.com/pete/upside-down-ternet.html" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/www.ex-parrot.com/pete/upside-down-ternet.html?referer=');">http://www.ex-parrot.com/pete/upside-down-ternet.html</a>) working on Jasager with my laptop. It was a pain to set up because I didn&#8217;t know what I was doing with IPTables but I finally figured it out a few minutes ago.</p>
<p>If you&#8217;re interested in doing that, follow this tutorial (<a href="https://help.ubuntu.com/community/Upside-Down-TernetHowTo" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/help.ubuntu.com/community/Upside-Down-TernetHowTo?referer=');">https://help.ubuntu.com/community/Upside-Down-TernetHowTo</a>) except for the networking setup. </p>
<p>For that, kill firestarter because we&#8217;re using iptables straight up. Just save the following code as &#8220;iptables.conf&#8221;, use iptables-restore &lt; /wherever/you/saved/iptables.conf to set up your firewall and you should be good to go.</p>
<p>*nat<br />
-A POSTROUTING -j MASQUERADE<br />
-A PREROUTING -i eth0 -p tcp -m tcp &#8211;dport 80 -j REDIRECT &#8211;to-ports 3128<br />
-A PREROUTING -p all -d 192.168.0.1 -j DNAT &#8211;to-destination 192.168.1.1<br />
COMMIT</p>
<p>*filter<br />
:OUTBOUND &#8211; [0:0]<br />
-A INPUT -i lo -j ACCEPT<br />
-A INPUT -m state &#8211;state ESTABLISHED -j ACCEPT<br />
-A INPUT -p all -s 127.0.0.1 -d 127.0.0.1 -j ACCEPT<br />
COMMIT</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Merrick</title>
		<link>http://dimitar.me/karma-on-the-fon-and-sniffing-wireless-network-traffic-with-ubuntu-step-by-step/comment-page-1/#comment-728</link>
		<dc:creator>David Merrick</dc:creator>
		<pubDate>Sun, 24 Jan 2010 18:58:18 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=277#comment-728</guid>
		<description>This guide was by far (and that says a lot) the best one I&#039;ve seen on setting up the Jasager for action.

I&#039;m totally new at this, and it was a great learning experience. For those who are troubleshooting (like I was), here&#039;s a few tips that helped me:

1. If you can&#039;t access the Fon from the static IP in step 4, you&#039;re not SOL. Just unplug it, add a host in GADMIN-DHCPD with the MAC address of the Fon and 192.168.0.250 and you&#039;re good to go.

2. If you don&#039;t have the web interface, you don&#039;t need it. Just ssh into the Fon, and type &quot;uci show&quot; to see all the settings and &quot;uci set =&quot; to set them. If you really want the web interface, use Darren&#039;s Tutorial (link at the top of this page) and use the opkg tool instead of ipkg to install it.

3. I couldn&#039;t get the ICS working in Firestarter. I found an easy way around it by adding &quot;routers: 192.168.0.1, domain-name servers: 192.168.1.1, and broadcast address: 192.168.0.255&quot; to GADMIN-DHCPD in the &quot;Client Settings&quot; section. 

I hope those help you if you&#039;re stuck and if not, make sure you did all the above steps in the guide correctly and check out the Hak5 forums. There&#039;s a whole forum dedicated to the Jasager. Thanks again for this great guide!</description>
		<content:encoded><![CDATA[<p>This guide was by far (and that says a lot) the best one I&#8217;ve seen on setting up the Jasager for action.</p>
<p>I&#8217;m totally new at this, and it was a great learning experience. For those who are troubleshooting (like I was), here&#8217;s a few tips that helped me:</p>
<p>1. If you can&#8217;t access the Fon from the static IP in step 4, you&#8217;re not SOL. Just unplug it, add a host in GADMIN-DHCPD with the MAC address of the Fon and 192.168.0.250 and you&#8217;re good to go.</p>
<p>2. If you don&#8217;t have the web interface, you don&#8217;t need it. Just ssh into the Fon, and type &#8220;uci show&#8221; to see all the settings and &#8220;uci set =&#8221; to set them. If you really want the web interface, use Darren&#8217;s Tutorial (link at the top of this page) and use the opkg tool instead of ipkg to install it.</p>
<p>3. I couldn&#8217;t get the ICS working in Firestarter. I found an easy way around it by adding &#8220;routers: 192.168.0.1, domain-name servers: 192.168.1.1, and broadcast address: 192.168.0.255&#8243; to GADMIN-DHCPD in the &#8220;Client Settings&#8221; section. </p>
<p>I hope those help you if you&#8217;re stuck and if not, make sure you did all the above steps in the guide correctly and check out the Hak5 forums. There&#8217;s a whole forum dedicated to the Jasager. Thanks again for this great guide!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: danny blue</title>
		<link>http://dimitar.me/karma-on-the-fon-and-sniffing-wireless-network-traffic-with-ubuntu-step-by-step/comment-page-1/#comment-682</link>
		<dc:creator>danny blue</dc:creator>
		<pubDate>Sun, 15 Nov 2009 19:18:34 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=277#comment-682</guid>
		<description>DO NOT TURN OFF FON IF IT IS TAKING TO LONG TO CHANGE SETTINGS..

I did and now it&#039;s broken...</description>
		<content:encoded><![CDATA[<p>DO NOT TURN OFF FON IF IT IS TAKING TO LONG TO CHANGE SETTINGS..</p>
<p>I did and now it&#8217;s broken&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: danny blue</title>
		<link>http://dimitar.me/karma-on-the-fon-and-sniffing-wireless-network-traffic-with-ubuntu-step-by-step/comment-page-1/#comment-674</link>
		<dc:creator>danny blue</dc:creator>
		<pubDate>Sun, 01 Nov 2009 14:11:10 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=277#comment-674</guid>
		<description>There is a script in back&#124;track 4 called mitmap.sh which requires dhcp.conf to be specified. It can be used to create fake ap&#039;s..

Not much on google about it..It uses digininja madwifi patches..

Will definately be using firestarter and gadmin-dhcp3..

thanks..</description>
		<content:encoded><![CDATA[<p>There is a script in back|track 4 called mitmap.sh which requires dhcp.conf to be specified. It can be used to create fake ap&#8217;s..</p>
<p>Not much on google about it..It uses digininja madwifi patches..</p>
<p>Will definately be using firestarter and gadmin-dhcp3..</p>
<p>thanks..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: danny blue</title>
		<link>http://dimitar.me/karma-on-the-fon-and-sniffing-wireless-network-traffic-with-ubuntu-step-by-step/comment-page-1/#comment-673</link>
		<dc:creator>danny blue</dc:creator>
		<pubDate>Sun, 01 Nov 2009 14:04:18 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=277#comment-673</guid>
		<description>..gadmin-dhcpd and firestarter i had never heard of them until reading this. Will be installing them on ubuntu 9.10 and backtrack 4 (8.10)..
great tutorial..
thanks.. 
(sod route and iptables, masquerading etc..)</description>
		<content:encoded><![CDATA[<p>..gadmin-dhcpd and firestarter i had never heard of them until reading this. Will be installing them on ubuntu 9.10 and backtrack 4 (8.10)..<br />
great tutorial..<br />
thanks..<br />
(sod route and iptables, masquerading etc..)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dimitar</title>
		<link>http://dimitar.me/karma-on-the-fon-and-sniffing-wireless-network-traffic-with-ubuntu-step-by-step/comment-page-1/#comment-158</link>
		<dc:creator>dimitar</dc:creator>
		<pubDate>Thu, 09 Apr 2009 03:47:14 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=277#comment-158</guid>
		<description>I am not sure what do you mean by 

&lt;blockquote&gt;&quot;to use the built in DHCP server in OpenWrt and let it handle the whole jasager-subnetwork&quot;&lt;/blockquote&gt;

If you are trying to reroute the network traffic through your computer so you can sniff it, then you need to make it (the computer) the DHCP server. The Jasager (OpenWRT) will query your computer&#039;s DHCP server for an IP address to be issued to any wireless client that connects to it.

If you don&#039;t want to channel the traffic through an external gateway, then the built in DHCP server will do. But then you will not be able to sniff the traffic.

If this did not answer your question, please clarify.</description>
		<content:encoded><![CDATA[<p>I am not sure what do you mean by </p>
<blockquote><p>&#8220;to use the built in DHCP server in OpenWrt and let it handle the whole jasager-subnetwork&#8221;</p></blockquote>
<p>If you are trying to reroute the network traffic through your computer so you can sniff it, then you need to make it (the computer) the DHCP server. The Jasager (OpenWRT) will query your computer&#8217;s DHCP server for an IP address to be issued to any wireless client that connects to it.</p>
<p>If you don&#8217;t want to channel the traffic through an external gateway, then the built in DHCP server will do. But then you will not be able to sniff the traffic.</p>
<p>If this did not answer your question, please clarify.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pazuzu</title>
		<link>http://dimitar.me/karma-on-the-fon-and-sniffing-wireless-network-traffic-with-ubuntu-step-by-step/comment-page-1/#comment-157</link>
		<dc:creator>pazuzu</dc:creator>
		<pubDate>Tue, 07 Apr 2009 23:46:26 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=277#comment-157</guid>
		<description>Is it possible to use the bult in DHCP server in OpenWrt and let it handle the whole jasager-subnetwork or does it interfere with Karma?</description>
		<content:encoded><![CDATA[<p>Is it possible to use the bult in DHCP server in OpenWrt and let it handle the whole jasager-subnetwork or does it interfere with Karma?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dimitar</title>
		<link>http://dimitar.me/karma-on-the-fon-and-sniffing-wireless-network-traffic-with-ubuntu-step-by-step/comment-page-1/#comment-94</link>
		<dc:creator>dimitar</dc:creator>
		<pubDate>Thu, 12 Feb 2009 18:30:21 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=277#comment-94</guid>
		<description>As soon as you give your router the IP address of 192.168.0.250 you will no longer be able to access it until you reconfigure your interface that is connected to it.
The reason for that is because now your router is on the 192.168.0.0 network and your interface is on the 192.168.1.0 network. What you need to do is give your wired interface a static IP address that is in the 192.168.0.* range. You can use any IP between 192.168.0.1 and 192.168.0.254 excluding the 192.168.0.250 (this is the IP address of the router). Follow step 5 above. Make sure that you are configuring the right interface.
If you still cannot access it, you can connect to your router through your wireless interface (like a regular access point) and make sure the settings are right.</description>
		<content:encoded><![CDATA[<p>As soon as you give your router the IP address of 192.168.0.250 you will no longer be able to access it until you reconfigure your interface that is connected to it.<br />
The reason for that is because now your router is on the 192.168.0.0 network and your interface is on the 192.168.1.0 network. What you need to do is give your wired interface a static IP address that is in the 192.168.0.* range. You can use any IP between 192.168.0.1 and 192.168.0.254 excluding the 192.168.0.250 (this is the IP address of the router). Follow step 5 above. Make sure that you are configuring the right interface.<br />
If you still cannot access it, you can connect to your router through your wireless interface (like a regular access point) and make sure the settings are right.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
