Eigenen Rechner in das Freifunk-Netz: Unterschied zwischen den Versionen
Rubo77 (Diskussion | Beiträge) (→Start-Script erstellen: cellid und optionen fuer Hamburg ergaenzt) |
Rubo77 (Diskussion | Beiträge) |
||
Zeile 16: | Zeile 16: | ||
===Start-Script erstellen=== | ===Start-Script erstellen=== | ||
− | Um sich mit <code>batman.kiel.freifunk.net</code> auf der Schnittstelle wlan0 mit der [[bssid]] <code>02:ca:ff:ee:ba:be</code> zu verbinden erstelle folgendes script und nenne es | + | Um sich mit <code>batman.kiel.freifunk.net</code> auf der Schnittstelle wlan0 mit der [[bssid]] <code>02:ca:ff:ee:ba:be</code> zu verbinden erstelle folgendes script und nenne es <br> |
+ | '''<code>`/usr/local/sbin/freifunk-connect`</code>''': | ||
[http://pastebin.com/a1J1Wx5U download script] | [http://pastebin.com/a1J1Wx5U download script] | ||
+ | |||
+ | {{Achtung|Breite=100% |Dieses Script ist noch experimentell: Ein Fehler ist, dass es nur einmal funktioniert. Man kann sich dann zwar wieder trennen mit <br><code>`freifunk-connect stop`</code> <br> | ||
+ | aber meist funktioniert ein erneutes Verbinden erst nach einem Rechner neustart}} | ||
+ | |||
'''<pre style="color:#222233"> | '''<pre style="color:#222233"> | ||
#!/bin/bash | #!/bin/bash | ||
Zeile 78: | Zeile 83: | ||
iwconfig $IFACE enc off | iwconfig $IFACE enc off | ||
echo "start ad-hoc mode" | echo "start ad-hoc mode" | ||
+ | |||
iwconfig $IFACE mode ad-hoc essid $ESSID ap $CELLID channel $CHANNEL | iwconfig $IFACE mode ad-hoc essid $ESSID ap $CELLID channel $CHANNEL | ||
+ | |||
#eigentlich sollte man lieber das hier benutzen, geht aber nicht: | #eigentlich sollte man lieber das hier benutzen, geht aber nicht: | ||
# iw dev wlan0 ibss join $ESSID 2412 HT40+ fixed-freq $CELLID | # iw dev wlan0 ibss join $ESSID 2412 HT40+ fixed-freq $CELLID | ||
+ | |||
echo "load module into kernel" | echo "load module into kernel" | ||
modprobe batman-adv | modprobe batman-adv | ||
Zeile 95: | Zeile 103: | ||
echo "internet starting, this may take some minutes due to latency..." | echo "internet starting, this may take some minutes due to latency..." | ||
+ | echo "Die Fehlermeldung 'Rather than invoking init scripts through /etc/init.d...' kann ignoriert werden" | ||
dhclient bat0 | dhclient bat0 | ||
echo "internet connection IP:" | echo "internet connection IP:" |
Version vom 8. Dezember 2012, 10:58 Uhr
So einfach kann man seinen Laptop in das Freifunk-Netz als Knoten mit integrieren (Unter Ubuntu 12.04 getestet):
Installation
sudo apt-get install batctl
Kernelmodul laden:
sudo modprobe batman-adv
Version prüfen:
sudo batctl -v
Nicht alle Batmanversionen sind kompatibel - siehe: http://www.open-mesh.org/projects/batman-adv/wiki/Compatversion
Start-Script erstellen
Um sich mit batman.kiel.freifunk.net
auf der Schnittstelle wlan0 mit der bssid 02:ca:ff:ee:ba:be
zu verbinden erstelle folgendes script und nenne es
`/usr/local/sbin/freifunk-connect`
:
Dieses Script ist noch experimentell: Ein Fehler ist, dass es nur einmal funktioniert. Man kann sich dann zwar wieder trennen mit |
#!/bin/bash IFACE=wlan0 ESSID=batman.kiel.freifunk.net CHANNEL=11 CELLID=02:ca:ff:ee:ba:be NODELINK=http://freifunk.in-kiel.de/ffmap/nodes.html if [ "$1" = "hh" ]; then ESSID=f8:d1:11:87:52:2e CHANNEL=1 CELLID=f8:d1:11:87:52:2e NODELINK=http://10.130.10.1/ffhh/nodes.html fi if [ "$1" = "--help" ]; then echo "[start](default) or [stop]" echo to connect to hamburg call this script with option hh echo edit the options in the top section of this script to connect to another network echo your network devices: lspci|grep -i net exit fi NETWORKMANAGER="service network-manager" # some distributions have #NETWORKMANAGER="/etc/init.d/network-manager" if [ "$(whoami &2>/dev/null)" != "root" ] && [ "$(id -un &2>/dev/null)" != "root" ] ; then echo "You must be root to run this script!"; exit 1 fi if [ "$1" = "stop" ]; then echo "resuming normal networking..." echo "restart network-manager" $NETWORKMANAGER restart echo "turn wlan iface off" batctl if del $IFACE sleep 10 echo "OK" echo "echo it can take a few minutes until network-manager gets a new route" echo exit elif [ "$1" = "restart" ]; then echo "not implemented. call this script first with stop and then with start" exit else # "start" echo "stopping network-manager" $NETWORKMANAGER stop echo "pls wait" sleep 10 echo "turn wlan iface off" ifconfig $IFACE down echo" set maximal transfer unit from standard 1500 to 1528" ifconfig $IFACE mtu 1528 echo "turn wlan encryption off" iwconfig $IFACE enc off echo "start ad-hoc mode" iwconfig $IFACE mode ad-hoc essid $ESSID ap $CELLID channel $CHANNEL #eigentlich sollte man lieber das hier benutzen, geht aber nicht: # iw dev wlan0 ibss join $ESSID 2412 HT40+ fixed-freq $CELLID echo "load module into kernel" modprobe batman-adv echo "adding iface to batman" batctl if add $IFACE echo "turn wlan iface on" ifconfig $IFACE up echo "turn batman iface on" ifconfig bat0 up echo "ESSID $ESSID on $IFACE should be ready" #sollte man eigentlich machen, geht aber nicht: #batctl gw client echo "internet starting, this may take some minutes due to latency..." echo "Die Fehlermeldung 'Rather than invoking init scripts through /etc/init.d...' kann ignoriert werden" dhclient bat0 echo "internet connection IP:" ifconfig|grep Bcast echo you should have an IP like 10.x.x.x echo after a minute your node should popup on the nodeGraph here $NODELINK echo echo "to resume normal networking call this script with option stop" echo fi
Wenn das script ausgeführt wird, dann ist dein Rechner Teil des Freifunk-Netzwerkes und mescht mit. Er kann so also auch als Brücke zwischen zwei Routern fungieren, die zu weit auseinander liegen.
Siehe auch: Askubuntu
Todo
fastd installieren und eine Werbindung vom eigenen Rechner aus aufbauen:
- fastd installation: http://freifunk.in-kiel.de/wiki/Entwicklung/fastd#Debian