Benutzer:Overflo/Pastebin: Unterschied zwischen den Versionen

aus Metalab Wiki, dem offenen Zentrum für meta-disziplinäre Magier und technisch-kreative Enthusiasten.
Zur Navigation springenZur Suche springen
 
(13 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
== Keylogger ==
+
== Wenn mal Zeit ist.. ;) ==
 
 
http://www.keelog.com/de/diy.html
 
 
 
  
 +
* <strike>linsenbrille</strike>  halb implementiert mit einem 3 seitenprisma, effekt aber doch zu uninteressant.
 +
* [http://das-labor.org/wiki/Farb_Borg_3d RGB LEDcube ala labor]
 +
* video streaming server + chat
 +
* <strike>blinkenstick</strike> '''done (aber besser nocheinmal mit strpes)'''
 +
* elektrorad
 +
* VPN tunnel fürs lab für congress und so..
 +
* hackerspace VPN
 +
* [http://www.keelog.com/de/diy.html Keylogger]
 +
* laserpistole
 +
* lampenlayout (london 5 rings!)
 +
* ledstripe/art-frame
 +
* <strike>ledstripe PROJECTOR</strike> '''done (ist gut für pschedelische beleuchtugseffekte aber nicht für text oder ähnliches (fokus/triangulation))'''
 +
* ledstripe stick
 +
* <strike>ledstripe pois</strike> '''done'''
 +
* <strike>ledstripe "matrix"</strike> '''done (projektor)'''
 +
* <strike>wassertropfen/strobo dings [http://log.gebenedeit.at/post/116247620/YouTube-Strobe-light-makes-water-drops-fall link]</done> gewan einen preis auf der roboexotica 2011
 +
* <strike>blinkenwall elektronik auf eigenes board migireren (weg vom arduino) mit neuer firmware fon ben und strom unterbrechen bei special frames</strike> '''abgegeben'''
 +
* <strike>blinkentunnel hardware neu implementieren mit strom unterbrechen alle X animationen</strike> '''fixed in software'''
  
 
== Fonera ==
 
== Fonera ==
Zeile 12: Zeile 27:
 
http://download.berlin.freifunk.net/fonera/
 
http://download.berlin.freifunk.net/fonera/
  
 +
 +
 +
Buildchain
 +
http://wiki.openwrt.org/BuildingPackagesHowTo
 +
 +
svn co https://svn.openwrt.org/openwrt/tags/kamikaze_7.09
 +
 +
http://forum.openwrt.org/viewtopic.php?pid=31794#p31794
 +
 +
 +
Fettes ipkg repository
 +
http://downloads.openwrt.org/kamikaze/packages/mips/
  
 
Repeater
 
Repeater
http://daubau.net/post/hackinglafonera
+
<pre>
 +
 
 +
#!/bin/sh
 +
 
 +
TARGET="deinnetz"
 +
 
 +
 
 +
killall -9 udhcpc
 +
killall dnsmasq
 +
 
 +
 
 +
# flush netfilter tables
 +
iptables -F
 +
iptables -P INPUT ACCEPT
 +
iptables -P OUTPUT ACCEPT
 +
iptables -P FORWARD ACCEPT
 +
iptables -t nat -F
 +
 
 +
 
 +
 
 +
wlanconfig ath0 destroy
 +
wlanconfig ath1 destroy
 +
 
  
 +
# VAP ath0 as Access Point
 +
wlanconfig ath0 create wlandev wifi0 wlanmode ap
 +
 +
# nosbeacon .. arghl..
 +
wlanconfig ath1 create wlandev wifi0 wlanmode sta nosbeacon
 +
 +
 +
 +
iwconfig ath1 essid $TARGET
 +
sleep 1
 +
 +
#externes DHCP?
 +
udhcpc -t 3 -b -i ath1
 +
 +
 +
 +
iwconfig ath0 essid $TARGET
 +
ifconfig ath0 192.168.10.1 netmask 255.255.255.0 up
 +
route add default gw 192.168.1.1  // sollte man automatisieren
 +
 +
dnsmasq  -i ath0 --dhcp-range=192.168.10.2,192.168.10.255,1800
 +
 +
 +
 +
echo 1 > /proc/sys/net/ipv4/ip_forward
 +
iptables -t nat -A POSTROUTING -o ath1 -j MASQUERADE
 +
#ifconfig eth0 172.16.0.126 netmask 255.255.0.0 up
 +
#iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
 +
 +
 +
</pre>
  
 
===HARDWARE===
 
===HARDWARE===
Zeile 28: Zeile 108:
 
SD card am fonera?
 
SD card am fonera?
 
http://www.larsen-b.com/Article/262.html
 
http://www.larsen-b.com/Article/262.html
 +
http://phrozen.org/fonera.html
 +
  
  
 
GPIO kernel modul
 
GPIO kernel modul
 
http://mobileaccess.de/fonera/gpio/
 
http://mobileaccess.de/fonera/gpio/
http://fghhgh.150m.com/
+
http://daubau.net/proc_gpio/
 +
 
 +
Fertig compiliertes GPIO kernelmodul im feschen .ipk + src
 +
[[Media:Kamikaze_7.09_GPIOkmod.tar.gz]]

Aktuelle Version vom 7. Oktober 2012, 22:17 Uhr

Wenn mal Zeit ist.. ;)

  • linsenbrille halb implementiert mit einem 3 seitenprisma, effekt aber doch zu uninteressant.
  • RGB LEDcube ala labor
  • video streaming server + chat
  • blinkenstick done (aber besser nocheinmal mit strpes)
  • elektrorad
  • VPN tunnel fürs lab für congress und so..
  • hackerspace VPN
  • Keylogger
  • laserpistole
  • lampenlayout (london 5 rings!)
  • ledstripe/art-frame
  • ledstripe PROJECTOR done (ist gut für pschedelische beleuchtugseffekte aber nicht für text oder ähnliches (fokus/triangulation))
  • ledstripe stick
  • ledstripe pois done
  • ledstripe "matrix" done (projektor)
  • wassertropfen/strobo dings link</done> gewan einen preis auf der roboexotica 2011
  • blinkenwall elektronik auf eigenes board migireren (weg vom arduino) mit neuer firmware fon ben und strom unterbrechen bei special frames abgegeben
  • blinkentunnel hardware neu implementieren mit strom unterbrechen alle X animationen fixed in software

Fonera

SOFTWARE

software zum flashen + packages .. http://download.berlin.freifunk.net/fonera/


Buildchain http://wiki.openwrt.org/BuildingPackagesHowTo

svn co https://svn.openwrt.org/openwrt/tags/kamikaze_7.09

http://forum.openwrt.org/viewtopic.php?pid=31794#p31794


Fettes ipkg repository http://downloads.openwrt.org/kamikaze/packages/mips/

Repeater


#!/bin/sh

TARGET="deinnetz" 


killall -9 udhcpc
killall dnsmasq


# flush netfilter tables
iptables -F
iptables -P INPUT ACCEPT
iptables -P OUTPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -t nat -F



wlanconfig ath0 destroy
wlanconfig ath1 destroy


# VAP ath0 as Access Point
wlanconfig ath0 create wlandev wifi0 wlanmode ap

# nosbeacon .. arghl..
wlanconfig ath1 create wlandev wifi0 wlanmode sta nosbeacon 



iwconfig ath1 essid $TARGET
sleep 1

#externes DHCP?
udhcpc -t 3 -b -i ath1



iwconfig ath0 essid $TARGET
ifconfig ath0 192.168.10.1 netmask 255.255.255.0 up
route add default gw 192.168.1.1   // sollte man automatisieren

dnsmasq  -i ath0 --dhcp-range=192.168.10.2,192.168.10.255,1800



echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -o ath1 -j MASQUERADE
#ifconfig eth0 172.16.0.126 netmask 255.255.0.0 up
#iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE


HARDWARE

LCD am fonera? http://www.lefinnois.net/wpen/index.php/2007/11/11/lcd-screen-for-la-fonera/

I2C bus? http://www.lefinnois.net/wpen/index.php/2007/05/13/i2c-bus-for-la-fonera/

SD card am fonera? http://www.larsen-b.com/Article/262.html http://phrozen.org/fonera.html


GPIO kernel modul http://mobileaccess.de/fonera/gpio/ http://daubau.net/proc_gpio/

Fertig compiliertes GPIO kernelmodul im feschen .ipk + src Media:Kamikaze_7.09_GPIOkmod.tar.gz