User Tools

Site Tools


install_fonera

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
install_fonera [2007/03/28 18:09] darkaudaxinstall_fonera [2018/11/22 00:14] (current) – deprecated mister_x
Line 1: Line 1:
-====== Tutorial: How to install Aircrack-ng on La Fonera ======+====== DEPRECATED - Tutorial: How to install Aircrack-ng on La Fonera ======
 February 12, 2007 \\ February 12, 2007 \\
 By: SonicvanaJr By: SonicvanaJr
Line 24: Line 24:
  
 The Fon is able to run the [[http://openwrt.org|OpenWRT]] Kamikaze image, and can thus run various pieces of software that are ported to it. Including the Aircrack-ng suite. The Fon is able to run the [[http://openwrt.org|OpenWRT]] Kamikaze image, and can thus run various pieces of software that are ported to it. Including the Aircrack-ng suite.
 +
 +== Power Adapter(s) ==
 +
 +Over the past month of so I have fabricated various power supplies for the fon, since a power outlet is not always available. 
 +
 +Since it runs on five volts the options to power it are almost limitless. 
 +
 +So far I have build a car power adapter, USB power adapter, and a power adapter that uses two 9V batteries.
 +
 +The car, and 9V battery adapters both used a 5V voltage regulator available from Radioshack. Part number 276-1770
 +
 +Basically this takes an input voltage up to 35V, and drops it down to 5V. However since the laws of science apply in our world the lost energy has to go somewhere, and that somewhere is out of the regulator in the form of heat, so in layman's terms these get VERY hot after a bit of use.
 +
 +For the USB adapter it was as simple as connecting ground to ground and positive to 5V+ on the USB cable.
 +
 +I'm not going to go into wiring specifics since all of it is VERY basic stuff, however if you need help feel free to contact me.
  
  
Line 36: Line 52:
 If your Fon is not capable of being SSH'd into then you can use a [[http://wiki.openwrt.org/OpenWrtDocs/Customizing/Hardware/Serial_Console|serial console]] to flash the image as well.  If your Fon is not capable of being SSH'd into then you can use a [[http://wiki.openwrt.org/OpenWrtDocs/Customizing/Hardware/Serial_Console|serial console]] to flash the image as well. 
  
-Instructions for building your own image, and various other bits ofinformation about the Fon and OpenWRT can be found  [[http://wiki.openwrt.org/OpenWrtDocs/Hardware/Fon/Fonera|here]]+Instructions for building your own image, and various other bits of information about the Fon and OpenWRT can be found  [[http://wiki.openwrt.org/OpenWrtDocs/Hardware/Fon/Fonera|here]]
  
  
  
 ==== First pull the SVN trunk and packages from the OpenWRT SVN server ==== ==== First pull the SVN trunk and packages from the OpenWRT SVN server ====
-    *  <code bash>svn co https://svn.openwrt.org/openwrt/trunk/</code> +    *  <code bash>cd ~</code> 
-    *  <code bash>svn co https://svn.openwrt.org/openwrt/packages</code>+    *  <code bash>svn co svn://svn.openwrt.org/openwrt/trunk/ trunk</code> 
 +    *  <code bash>svn co svn://svn.openwrt.org/openwrt/packages/ packages</code>
     *  You can then later update either of those by going into either the **trunk** or **packages** directory, and typing <code bash>svn up</code>     *  You can then later update either of those by going into either the **trunk** or **packages** directory, and typing <code bash>svn up</code>
  
 ==== Setup and build the image ==== ==== Setup and build the image ====
-  * Go into trunk/package directory and create a symbolic link from the packages tree to the trunk/packages directory <code bash> ln -../../packages/*/* . </code>+  * Go into trunk/package directory and create a symbolic link from the packages tree to the trunk/packages directory <code bash> cd ~/trunk/package </code> 
 +  * <code bash> ln -sf ../../packages/*/* . </code> 
 + 
 +  *  Now go into the trunk directory, and type <code bash> cd ~/trunk/ </code> 
 +  * <code bash> make menuconfig </code> 
 +    * Make sure that "Target System" is "Atheros AR231x/AR5312 [2.6]" 
 +<code bash>(X) Atheros AR231x/AR5312 [2.6]</code>
  
-  *  Now go into the trunk directory, and type <code bash> make menuconfig </code> 
-    * Make sure that "Target System" is Atheros [2.6] 
     * Make sure the Aircrack-Ng package is selected in the Network section as a module.     * Make sure the Aircrack-Ng package is selected in the Network section as a module.
 +<code>Network  ---> 
 +<*> airpwn........................................... Packet injection pwnage (NEW)
 +    wireless  ---> 
 +<*> aircrack-ng................ next generation of aircrack with new features (NEW)
 +<*> aircrack-ptw............. A tool using a new method for breaking WEP Keys (NEW)
 +<*> kismet-drone................................................ Kismet drone (NEW)</code>
 +
     * Make sure the libpthread package is selected in the Libraries section as a module.     * Make sure the libpthread package is selected in the Libraries section as a module.
 +<code>Libraries  --->
 +<*> libpthread-stubs........................................ libpthread-stubs (NEW)</code>
 +
     * Exit out of the kernel configuration, and be sure to save your changes.     * Exit out of the kernel configuration, and be sure to save your changes.
  
Line 73: Line 104:
 Once you have successfully flashed your Fon boot it up, and ssh into it. Default login "root", password "admin" Once you have successfully flashed your Fon boot it up, and ssh into it. Default login "root", password "admin"
  
-Now you need the aircrack-ng and libpthread ipk files. They can be found [[http://sonicvanajr.com/fonera/|here]] or if you built them you should have no problem getting them over to your fon at this point.+Now you need the aircrack-ng and libpthread ipk files. They can be found [[http://mobileaccess.de/fonera/bin/packages|here]] or if you built them you should have no problem getting them over to your fon at this point.
  
 Use the command <code bash>ipkg install <file name here>.ipk</code> for both of the files. Use the command <code bash>ipkg install <file name here>.ipk</code> for both of the files.
Line 90: Line 121:
  
 If you need help I can be found in the Aircrack-ng IRC channel. If you need help I can be found in the Aircrack-ng IRC channel.
 +
  
 ===== Ready to use images ===== ===== Ready to use images =====
  
-However, if you're lazy, or just don't feel like you can do this you can download the image files [[http://www.sonicvanajr.com/fonera/LazyPeopleLookHere/|at this site]]+However, if you're lazy, or just don't feel like you can do this you can download the image files [[http://mobileaccess.de/fonera/bin/packages/|at this site]]
  
-Please understand that these packages are provided as is, and I will not be making any changes to their kernel configuration unless I need to or you can prove to me why I should make a certain change+Please understand that these packages are provided as is.
install_fonera.1175098154.txt.gz · Last modified: 2007/03/28 18:09 by darkaudax