• 1
    Step 1

    Source :

    I followed instructions from that magazine http://boutique.ed-diamond.com/home/861-hackable-magazine-6.htm
    Note that a lot of step are in common with my other #Pi MITM ..
    It can be summarized as follow :

  • 2
    Step 2

    Install OS :

    Install last version of raspbian on your SD card

  • 3
    Step 3

    Configure network :

    configure /etc/network/interface to use eth0 as DHCP client (which will be connected to your network), and wlan0 as fixed IP address (the tor access point) :

    auto lo eth0 wlan0
    iface lo inet loopback
    iface eth0 inet dhcp
    iface wlan0 inet static
       address 192.168.74.1
       netmask 255.255.255.0