<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://oldwiki.funkfeuer.at/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
		<id>https://oldwiki.funkfeuer.at/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Scb</id>
		<title>FunkFeuer Wiki - Benutzerbeiträge [de]</title>
		<link rel="self" type="application/atom+xml" href="https://oldwiki.funkfeuer.at/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Scb"/>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/Spezial:Beitr%C3%A4ge/Scb"/>
		<updated>2026-04-05T04:16:52Z</updated>
		<subtitle>Benutzerbeiträge</subtitle>
		<generator>MediaWiki 1.22.5</generator>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/UBNT_Bullet2</id>
		<title>UBNT Bullet2</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/UBNT_Bullet2"/>
				<updated>2009-06-22T13:11:05Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Hardware Pics */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Datei:Bullet2.JPG]]&lt;br /&gt;
&lt;br /&gt;
Die [http://ubnt.com/products/bullet.php Ubiquiti Bullet2] ist ein Wetterfester Router, der direkt an Antennen mit N-Buchse angeschlossen werden kann. Die Stromversorgung erfolgt über PoE direkt über das Netzwerkkabel (4,5+; 7,8-). Die Bullet verfügt über einen LAN-Anschluss und 6 LEDs. LED 1+2 zeigen Stromversorgung und LAN-Aktivität an. Dir restlichen LEDs zeigen im Originalbetriebssystem die Empfangsleistung an. Für AirOS gibt es zwar ein olsrd-Paket, aber leider ist der WLAN-Treiber nicht Ad-Hoc-Modus-fähig. Daher installiert man am besten OpenWRT.&lt;br /&gt;
&lt;br /&gt;
== OpenWRT Installation ==&lt;br /&gt;
&lt;br /&gt;
Das OpenWRT Image kann bequem mit dem AirOS Webinterface auf die Bullet2 geflasht werden.&lt;br /&gt;
&lt;br /&gt;
Folgendes Firmware-Image ist das richtige:&lt;br /&gt;
&lt;br /&gt;
http://downloads.openwrt.org/kamikaze/8.09/atheros/openwrt-atheros-ubnt2-squashfs.bin&lt;br /&gt;
&lt;br /&gt;
=== alternativ ===&lt;br /&gt;
Sollte man aus irgendwelchen Gruenden nicht mehr auf das Webinterface zugreifen koennen, kann man das Image auch per TFTP hochladen.&lt;br /&gt;
&lt;br /&gt;
Dazu drueckt man nach dem einschalten sofort die Reset Taste fuer 6-10 Sekunden (bis jeweils 2 LEDs abwechselnd blinken), anschliessend verbindet man sich mit einem TFTP Client (evt. zuerst mit ping die Erreichbarkeit testen).&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt; tftp 192.168.1.20&lt;br /&gt;
&amp;gt; bin&lt;br /&gt;
&amp;gt; put &amp;lt;IMAGE-NAME&amp;gt;&lt;br /&gt;
&amp;gt; exit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Nach dem flashen ==&lt;br /&gt;
Die Bullet hat nun die IP 192.168.1.1&lt;br /&gt;
entsprechend musst du deine Netzwerkkarte neu konfigurieren&lt;br /&gt;
dann per telnet einloggen (&amp;quot;root&amp;quot;/kein passwort) und mit passwd ein passwort für den root user setzen um SSH zu aktivieren&lt;br /&gt;
&lt;br /&gt;
== Netzwerk Konfiguration == &lt;br /&gt;
&lt;br /&gt;
Die relevanten Files fuer die Netzwerkkonfiguration sind &lt;br /&gt;
* /etc/config/network&lt;br /&gt;
* /etc/config/wirless&lt;br /&gt;
&lt;br /&gt;
OpenWRT bridged das Ethernet und WIFI Interface standardmaessig, diese Standardkonfiguration wird veraendert um auf dem Wireless Interface die oeffentliche IP zu konfigurieren. Auf dem Ethernet Interface wird eine private IP Adresse konfiguriert. Spaeter werden dann iptables Rules erstellt um den Traffic aus dem LAN nach aussen zu NAT'en.&lt;br /&gt;
&lt;br /&gt;
''/etc/config/network''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
config 'interface' 'loopback'&lt;br /&gt;
        option 'ifname' 'lo'&lt;br /&gt;
        option 'proto' 'static'&lt;br /&gt;
        option 'ipaddr' '127.0.0.1'&lt;br /&gt;
        option 'netmask' '255.0.0.0'&lt;br /&gt;
&lt;br /&gt;
config 'interface' 'lan'&lt;br /&gt;
        option 'ifname' 'eth0'&lt;br /&gt;
        option 'proto' 'static'&lt;br /&gt;
        option 'ipaddr' '192.168.xx.xx'&lt;br /&gt;
        option 'netmask' '255.255.255.0'&lt;br /&gt;
&lt;br /&gt;
#hier wird die IP Adresse eingetragen die man im Reedemer zugewiesen bekommen hat&lt;br /&gt;
config 'interface' 'wan'&lt;br /&gt;
        option 'ifname' 'ath0'&lt;br /&gt;
        option 'proto' 'static'&lt;br /&gt;
        option 'ipaddr' 'xx.xx.xx.xx'&lt;br /&gt;
        option 'netmask' '255.255.xx.xx'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Die richtigen Werte fuer ssid/bssid entnimmt man am besten dieser Seite: [[Kanalwahl]]&lt;br /&gt;
&lt;br /&gt;
Es ist darauf zu achten dass &amp;quot;option 'network' 'lan'&amp;quot; auskommentiert ist (man kann es auch ganz entfernen), da man sonst auf eth0 und ath0 die selbe IP hat.&lt;br /&gt;
&lt;br /&gt;
''/etc/config/wireless''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
config 'wifi-device' 'wifi0'&lt;br /&gt;
        option 'type' 'atheros'&lt;br /&gt;
        option 'channel' '1'&lt;br /&gt;
&lt;br /&gt;
config 'wifi-iface'&lt;br /&gt;
        option 'device' 'wifi0'&lt;br /&gt;
#        option 'network' 'lan'&lt;br /&gt;
        option 'encryption' 'none'&lt;br /&gt;
        option 'hidden' 0&lt;br /&gt;
        option 'mode' 'adhoc'&lt;br /&gt;
        option 'ssid' 'v1.freiesnetz.www.funkfeuer.at'&lt;br /&gt;
        option 'bssid' '4E:FE:52:36:2E:65'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In der Standardkonfiguration sind nur die Kanäle 1-11 aktiviert. Möchte man die Kanäle 12 oder 13 verwenden, ist der CountryCode auf &amp;quot;Österreich&amp;quot; zu stellen. Dazu ändert man in der Datei ''/etc/modules.d/50-madwifi'' die Zeile mit ''ath_ahb'' auf:&lt;br /&gt;
  ath_ahb countrycode=40&lt;br /&gt;
&lt;br /&gt;
== OLSR Installation ==&lt;br /&gt;
&lt;br /&gt;
Da man auf der Bullet (wahrscheinlich) noch keinen Internetzugriff hat, kann man sich das ipk File auf den lokalen Rechner herunterladen, per SCP auf die Bullet kopieren und anschliessend per ''opkg'' installieren. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OLSR braucht die libpthread die du zuvor installieren musst&lt;br /&gt;
* http://downloads.openwrt.org/kamikaze/8.09/atheros/packages/libpthread_0.9.29-14_mips.ipk&lt;br /&gt;
* http://downloads.openwrt.org/kamikaze/8.09/atheros/packages/olsrd_0.5.6-r3-2_mips.ipk&lt;br /&gt;
 opkg install &amp;lt;ipk-file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== OLSR Konfiguration ===&lt;br /&gt;
Das Konfigurationsfile fuer olsr heisst in OpenWRT: ''/etc/config/olsrd'' und es hat die uebliche UCI schreibweise, die sich von einer Standard olsr Konfigurationsdatei zwar syntaktisch unterscheidet aber die selben Konfigurationsparameter aufweisst. Die hier angegebenen Werte fuer Timer und Intervale sind von Empfehlungen auf der Funkfeuer Mailingliste uebernommen worden. Falls eine Parameter in der folgenden Liste vermisst wird so wurde dieser nicht explizit gesetzt da sein Standardwert bereits ok ist.&lt;br /&gt;
&lt;br /&gt;
''/etc/config/olsrd''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
config olsrd&lt;br /&gt;
        option IpVersion '4'&lt;br /&gt;
        option Willingness '7'&lt;br /&gt;
        option TcRedundancy '2'&lt;br /&gt;
        option LinkQualityAlgorithm 'etx_ff'&lt;br /&gt;
        option MprCoverage '7'&lt;br /&gt;
&lt;br /&gt;
config Interface&lt;br /&gt;
        list interface 'wan'&lt;br /&gt;
        option Ip4Broadcast '255.255.255.255'&lt;br /&gt;
        option HelloInterval '3.0'&lt;br /&gt;
        option HelloValidityTime '125.0'&lt;br /&gt;
        option TcValidityTime '500.0'&lt;br /&gt;
        option TcInterval '2.0'&lt;br /&gt;
        option MidInterval '25.0'&lt;br /&gt;
        option MidValidityTime '500.0'&lt;br /&gt;
        option HnaInterval '10.0'&lt;br /&gt;
        option HnaValidityTime '125.0'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Iptables / NAT ==&lt;br /&gt;
&lt;br /&gt;
OpenWRT kommt mit einem Standard iptables Setup, ich habe es durch ein paar einfache Regeln ersetzt die ihren Zweck erfuellen. Das Script kann nach /etc/rc.d/S45_deinwunschname verlinkt werden.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
iptables -F&lt;br /&gt;
iptables -t nat -F&lt;br /&gt;
iptables -X&lt;br /&gt;
&lt;br /&gt;
iptables -P INPUT DROP&lt;br /&gt;
iptables -P FORWARD DROP&lt;br /&gt;
iptables -P OUTPUT ACCEPT&lt;br /&gt;
&lt;br /&gt;
iptables -t nat -A POSTROUTING -s 192.168.xx.0/24 -j MASQUERADE&lt;br /&gt;
iptables -A FORWARD -i ath0 -o ath0 -j ACCEPT&lt;br /&gt;
iptables -A FORWARD -i eth0 -s 192.168.xx.0/24 -j ACCEPT&lt;br /&gt;
iptables -A FORWARD -m state --state RELATED,ESTABLISHED -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
#olsr&lt;br /&gt;
iptables -A INPUT -s 193.238.156.0/22 -p udp --dport 698 -j ACCEPT&lt;br /&gt;
iptables -A INPUT -s 78.41.112.0/21 -p udp --dport 698 -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
iptables -A INPUT -p icmp -j ACCEPT&lt;br /&gt;
iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT&lt;br /&gt;
iptables -A INPUT -i eth0 -j ACCEPT&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== DHCP DNS Option ==&lt;br /&gt;
&lt;br /&gt;
Wenn man moechte, dass Clients, DNS Requests direkt an den DNS Server schicken, kann der DHCP Server so eingerichtet werden, dass er dies den Clients als Option mitgibt.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# uci add_list dhcp.lan.dhcp_option=&amp;quot;6,193.238.157.16,193.238.157.5&amp;quot;&lt;br /&gt;
# uci commit dhcp&lt;br /&gt;
# /etc/init.d/dnsmasq restart&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Durch diese Schritte wird die Datei ''/etc/config/dhcp'' entsprechend veraendert und dnsmasq neugestartet.&lt;br /&gt;
&lt;br /&gt;
== Anmerkung/Tipp ==&lt;br /&gt;
&lt;br /&gt;
Die Ausspahrung im Schraubverschluss an der Unterseite ist zwar genau so gross dass ein RJ45 Stecker durchpasst, trotzdem sollte man bei gekauften (bereits gekrimpten) Kabeln darauf achten dass diese keinen Klipschutz haben. Dieser kann beim Durchfuehren des Kabels bzw. beim zuschrauben zu Problemen fuehren und muss dann evt. mit einem Messer vorsichtig entfernt werden.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
fuer die signalstaerke leds gibt es einen (IMO zieml. invasiven) patch...&lt;br /&gt;
https://dev.openwrt.org/ticket/5066&lt;br /&gt;
&lt;br /&gt;
== Hardware Pics ==&lt;br /&gt;
* http://www.flickr.com/photos/mattw/3103755054/sizes/l/&lt;br /&gt;
* http://www.flickr.com/photos/mattw/3103756610/sizes/l/&lt;br /&gt;
(gruene platine = Bullet2, weisse platine = Bullet5)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* http://www.flickr.com/photos/mattw/3460916088/&lt;br /&gt;
(hier siehst Du, das Bullet2 und Picostation2 baugleich sind bis auf den Antennenanschluss)&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/UBNT_Bullet2</id>
		<title>UBNT Bullet2</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/UBNT_Bullet2"/>
				<updated>2009-06-22T13:09:19Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Hardware Pics */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Datei:Bullet2.JPG]]&lt;br /&gt;
&lt;br /&gt;
Die [http://ubnt.com/products/bullet.php Ubiquiti Bullet2] ist ein Wetterfester Router, der direkt an Antennen mit N-Buchse angeschlossen werden kann. Die Stromversorgung erfolgt über PoE direkt über das Netzwerkkabel (4,5+; 7,8-). Die Bullet verfügt über einen LAN-Anschluss und 6 LEDs. LED 1+2 zeigen Stromversorgung und LAN-Aktivität an. Dir restlichen LEDs zeigen im Originalbetriebssystem die Empfangsleistung an. Für AirOS gibt es zwar ein olsrd-Paket, aber leider ist der WLAN-Treiber nicht Ad-Hoc-Modus-fähig. Daher installiert man am besten OpenWRT.&lt;br /&gt;
&lt;br /&gt;
== OpenWRT Installation ==&lt;br /&gt;
&lt;br /&gt;
Das OpenWRT Image kann bequem mit dem AirOS Webinterface auf die Bullet2 geflasht werden.&lt;br /&gt;
&lt;br /&gt;
Folgendes Firmware-Image ist das richtige:&lt;br /&gt;
&lt;br /&gt;
http://downloads.openwrt.org/kamikaze/8.09/atheros/openwrt-atheros-ubnt2-squashfs.bin&lt;br /&gt;
&lt;br /&gt;
=== alternativ ===&lt;br /&gt;
Sollte man aus irgendwelchen Gruenden nicht mehr auf das Webinterface zugreifen koennen, kann man das Image auch per TFTP hochladen.&lt;br /&gt;
&lt;br /&gt;
Dazu drueckt man nach dem einschalten sofort die Reset Taste fuer 6-10 Sekunden (bis jeweils 2 LEDs abwechselnd blinken), anschliessend verbindet man sich mit einem TFTP Client (evt. zuerst mit ping die Erreichbarkeit testen).&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt; tftp 192.168.1.20&lt;br /&gt;
&amp;gt; bin&lt;br /&gt;
&amp;gt; put &amp;lt;IMAGE-NAME&amp;gt;&lt;br /&gt;
&amp;gt; exit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Nach dem flashen ==&lt;br /&gt;
Die Bullet hat nun die IP 192.168.1.1&lt;br /&gt;
entsprechend musst du deine Netzwerkkarte neu konfigurieren&lt;br /&gt;
dann per telnet einloggen (&amp;quot;root&amp;quot;/kein passwort) und mit passwd ein passwort für den root user setzen um SSH zu aktivieren&lt;br /&gt;
&lt;br /&gt;
== Netzwerk Konfiguration == &lt;br /&gt;
&lt;br /&gt;
Die relevanten Files fuer die Netzwerkkonfiguration sind &lt;br /&gt;
* /etc/config/network&lt;br /&gt;
* /etc/config/wirless&lt;br /&gt;
&lt;br /&gt;
OpenWRT bridged das Ethernet und WIFI Interface standardmaessig, diese Standardkonfiguration wird veraendert um auf dem Wireless Interface die oeffentliche IP zu konfigurieren. Auf dem Ethernet Interface wird eine private IP Adresse konfiguriert. Spaeter werden dann iptables Rules erstellt um den Traffic aus dem LAN nach aussen zu NAT'en.&lt;br /&gt;
&lt;br /&gt;
''/etc/config/network''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
config 'interface' 'loopback'&lt;br /&gt;
        option 'ifname' 'lo'&lt;br /&gt;
        option 'proto' 'static'&lt;br /&gt;
        option 'ipaddr' '127.0.0.1'&lt;br /&gt;
        option 'netmask' '255.0.0.0'&lt;br /&gt;
&lt;br /&gt;
config 'interface' 'lan'&lt;br /&gt;
        option 'ifname' 'eth0'&lt;br /&gt;
        option 'proto' 'static'&lt;br /&gt;
        option 'ipaddr' '192.168.xx.xx'&lt;br /&gt;
        option 'netmask' '255.255.255.0'&lt;br /&gt;
&lt;br /&gt;
#hier wird die IP Adresse eingetragen die man im Reedemer zugewiesen bekommen hat&lt;br /&gt;
config 'interface' 'wan'&lt;br /&gt;
        option 'ifname' 'ath0'&lt;br /&gt;
        option 'proto' 'static'&lt;br /&gt;
        option 'ipaddr' 'xx.xx.xx.xx'&lt;br /&gt;
        option 'netmask' '255.255.xx.xx'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Die richtigen Werte fuer ssid/bssid entnimmt man am besten dieser Seite: [[Kanalwahl]]&lt;br /&gt;
&lt;br /&gt;
Es ist darauf zu achten dass &amp;quot;option 'network' 'lan'&amp;quot; auskommentiert ist (man kann es auch ganz entfernen), da man sonst auf eth0 und ath0 die selbe IP hat.&lt;br /&gt;
&lt;br /&gt;
''/etc/config/wireless''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
config 'wifi-device' 'wifi0'&lt;br /&gt;
        option 'type' 'atheros'&lt;br /&gt;
        option 'channel' '1'&lt;br /&gt;
&lt;br /&gt;
config 'wifi-iface'&lt;br /&gt;
        option 'device' 'wifi0'&lt;br /&gt;
#        option 'network' 'lan'&lt;br /&gt;
        option 'encryption' 'none'&lt;br /&gt;
        option 'hidden' 0&lt;br /&gt;
        option 'mode' 'adhoc'&lt;br /&gt;
        option 'ssid' 'v1.freiesnetz.www.funkfeuer.at'&lt;br /&gt;
        option 'bssid' '4E:FE:52:36:2E:65'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In der Standardkonfiguration sind nur die Kanäle 1-11 aktiviert. Möchte man die Kanäle 12 oder 13 verwenden, ist der CountryCode auf &amp;quot;Österreich&amp;quot; zu stellen. Dazu ändert man in der Datei ''/etc/modules.d/50-madwifi'' die Zeile mit ''ath_ahb'' auf:&lt;br /&gt;
  ath_ahb countrycode=40&lt;br /&gt;
&lt;br /&gt;
== OLSR Installation ==&lt;br /&gt;
&lt;br /&gt;
Da man auf der Bullet (wahrscheinlich) noch keinen Internetzugriff hat, kann man sich das ipk File auf den lokalen Rechner herunterladen, per SCP auf die Bullet kopieren und anschliessend per ''opkg'' installieren. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OLSR braucht die libpthread die du zuvor installieren musst&lt;br /&gt;
* http://downloads.openwrt.org/kamikaze/8.09/atheros/packages/libpthread_0.9.29-14_mips.ipk&lt;br /&gt;
* http://downloads.openwrt.org/kamikaze/8.09/atheros/packages/olsrd_0.5.6-r3-2_mips.ipk&lt;br /&gt;
 opkg install &amp;lt;ipk-file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== OLSR Konfiguration ===&lt;br /&gt;
Das Konfigurationsfile fuer olsr heisst in OpenWRT: ''/etc/config/olsrd'' und es hat die uebliche UCI schreibweise, die sich von einer Standard olsr Konfigurationsdatei zwar syntaktisch unterscheidet aber die selben Konfigurationsparameter aufweisst. Die hier angegebenen Werte fuer Timer und Intervale sind von Empfehlungen auf der Funkfeuer Mailingliste uebernommen worden. Falls eine Parameter in der folgenden Liste vermisst wird so wurde dieser nicht explizit gesetzt da sein Standardwert bereits ok ist.&lt;br /&gt;
&lt;br /&gt;
''/etc/config/olsrd''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
config olsrd&lt;br /&gt;
        option IpVersion '4'&lt;br /&gt;
        option Willingness '7'&lt;br /&gt;
        option TcRedundancy '2'&lt;br /&gt;
        option LinkQualityAlgorithm 'etx_ff'&lt;br /&gt;
        option MprCoverage '7'&lt;br /&gt;
&lt;br /&gt;
config Interface&lt;br /&gt;
        list interface 'wan'&lt;br /&gt;
        option Ip4Broadcast '255.255.255.255'&lt;br /&gt;
        option HelloInterval '3.0'&lt;br /&gt;
        option HelloValidityTime '125.0'&lt;br /&gt;
        option TcValidityTime '500.0'&lt;br /&gt;
        option TcInterval '2.0'&lt;br /&gt;
        option MidInterval '25.0'&lt;br /&gt;
        option MidValidityTime '500.0'&lt;br /&gt;
        option HnaInterval '10.0'&lt;br /&gt;
        option HnaValidityTime '125.0'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Iptables / NAT ==&lt;br /&gt;
&lt;br /&gt;
OpenWRT kommt mit einem Standard iptables Setup, ich habe es durch ein paar einfache Regeln ersetzt die ihren Zweck erfuellen. Das Script kann nach /etc/rc.d/S45_deinwunschname verlinkt werden.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
iptables -F&lt;br /&gt;
iptables -t nat -F&lt;br /&gt;
iptables -X&lt;br /&gt;
&lt;br /&gt;
iptables -P INPUT DROP&lt;br /&gt;
iptables -P FORWARD DROP&lt;br /&gt;
iptables -P OUTPUT ACCEPT&lt;br /&gt;
&lt;br /&gt;
iptables -t nat -A POSTROUTING -s 192.168.xx.0/24 -j MASQUERADE&lt;br /&gt;
iptables -A FORWARD -i ath0 -o ath0 -j ACCEPT&lt;br /&gt;
iptables -A FORWARD -i eth0 -s 192.168.xx.0/24 -j ACCEPT&lt;br /&gt;
iptables -A FORWARD -m state --state RELATED,ESTABLISHED -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
#olsr&lt;br /&gt;
iptables -A INPUT -s 193.238.156.0/22 -p udp --dport 698 -j ACCEPT&lt;br /&gt;
iptables -A INPUT -s 78.41.112.0/21 -p udp --dport 698 -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
iptables -A INPUT -p icmp -j ACCEPT&lt;br /&gt;
iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT&lt;br /&gt;
iptables -A INPUT -i eth0 -j ACCEPT&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== DHCP DNS Option ==&lt;br /&gt;
&lt;br /&gt;
Wenn man moechte, dass Clients, DNS Requests direkt an den DNS Server schicken, kann der DHCP Server so eingerichtet werden, dass er dies den Clients als Option mitgibt.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# uci add_list dhcp.lan.dhcp_option=&amp;quot;6,193.238.157.16,193.238.157.5&amp;quot;&lt;br /&gt;
# uci commit dhcp&lt;br /&gt;
# /etc/init.d/dnsmasq restart&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Durch diese Schritte wird die Datei ''/etc/config/dhcp'' entsprechend veraendert und dnsmasq neugestartet.&lt;br /&gt;
&lt;br /&gt;
== Anmerkung/Tipp ==&lt;br /&gt;
&lt;br /&gt;
Die Ausspahrung im Schraubverschluss an der Unterseite ist zwar genau so gross dass ein RJ45 Stecker durchpasst, trotzdem sollte man bei gekauften (bereits gekrimpten) Kabeln darauf achten dass diese keinen Klipschutz haben. Dieser kann beim Durchfuehren des Kabels bzw. beim zuschrauben zu Problemen fuehren und muss dann evt. mit einem Messer vorsichtig entfernt werden.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
fuer die signalstaerke leds gibt es einen (IMO zieml. invasiven) patch...&lt;br /&gt;
https://dev.openwrt.org/ticket/5066&lt;br /&gt;
&lt;br /&gt;
== Hardware Pics ==&lt;br /&gt;
* http://www.flickr.com/photos/mattw/3103755054/sizes/l/&lt;br /&gt;
* http://www.flickr.com/photos/mattw/3103756610/sizes/l/&lt;br /&gt;
(gruene platine = Bullet2, weisse platine = Bullet5)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* http://www.flickr.com/photos/mattw/3460916088/&lt;br /&gt;
(hier sieht man auch das bullet2 und picostation2 baugleich sind bis auf antennenanschluss)&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/UBNT_Bullet2</id>
		<title>UBNT Bullet2</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/UBNT_Bullet2"/>
				<updated>2009-06-22T13:08:38Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Hardware Pics */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Datei:Bullet2.JPG]]&lt;br /&gt;
&lt;br /&gt;
Die [http://ubnt.com/products/bullet.php Ubiquiti Bullet2] ist ein Wetterfester Router, der direkt an Antennen mit N-Buchse angeschlossen werden kann. Die Stromversorgung erfolgt über PoE direkt über das Netzwerkkabel (4,5+; 7,8-). Die Bullet verfügt über einen LAN-Anschluss und 6 LEDs. LED 1+2 zeigen Stromversorgung und LAN-Aktivität an. Dir restlichen LEDs zeigen im Originalbetriebssystem die Empfangsleistung an. Für AirOS gibt es zwar ein olsrd-Paket, aber leider ist der WLAN-Treiber nicht Ad-Hoc-Modus-fähig. Daher installiert man am besten OpenWRT.&lt;br /&gt;
&lt;br /&gt;
== OpenWRT Installation ==&lt;br /&gt;
&lt;br /&gt;
Das OpenWRT Image kann bequem mit dem AirOS Webinterface auf die Bullet2 geflasht werden.&lt;br /&gt;
&lt;br /&gt;
Folgendes Firmware-Image ist das richtige:&lt;br /&gt;
&lt;br /&gt;
http://downloads.openwrt.org/kamikaze/8.09/atheros/openwrt-atheros-ubnt2-squashfs.bin&lt;br /&gt;
&lt;br /&gt;
=== alternativ ===&lt;br /&gt;
Sollte man aus irgendwelchen Gruenden nicht mehr auf das Webinterface zugreifen koennen, kann man das Image auch per TFTP hochladen.&lt;br /&gt;
&lt;br /&gt;
Dazu drueckt man nach dem einschalten sofort die Reset Taste fuer 6-10 Sekunden (bis jeweils 2 LEDs abwechselnd blinken), anschliessend verbindet man sich mit einem TFTP Client (evt. zuerst mit ping die Erreichbarkeit testen).&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt; tftp 192.168.1.20&lt;br /&gt;
&amp;gt; bin&lt;br /&gt;
&amp;gt; put &amp;lt;IMAGE-NAME&amp;gt;&lt;br /&gt;
&amp;gt; exit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Nach dem flashen ==&lt;br /&gt;
Die Bullet hat nun die IP 192.168.1.1&lt;br /&gt;
entsprechend musst du deine Netzwerkkarte neu konfigurieren&lt;br /&gt;
dann per telnet einloggen (&amp;quot;root&amp;quot;/kein passwort) und mit passwd ein passwort für den root user setzen um SSH zu aktivieren&lt;br /&gt;
&lt;br /&gt;
== Netzwerk Konfiguration == &lt;br /&gt;
&lt;br /&gt;
Die relevanten Files fuer die Netzwerkkonfiguration sind &lt;br /&gt;
* /etc/config/network&lt;br /&gt;
* /etc/config/wirless&lt;br /&gt;
&lt;br /&gt;
OpenWRT bridged das Ethernet und WIFI Interface standardmaessig, diese Standardkonfiguration wird veraendert um auf dem Wireless Interface die oeffentliche IP zu konfigurieren. Auf dem Ethernet Interface wird eine private IP Adresse konfiguriert. Spaeter werden dann iptables Rules erstellt um den Traffic aus dem LAN nach aussen zu NAT'en.&lt;br /&gt;
&lt;br /&gt;
''/etc/config/network''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
config 'interface' 'loopback'&lt;br /&gt;
        option 'ifname' 'lo'&lt;br /&gt;
        option 'proto' 'static'&lt;br /&gt;
        option 'ipaddr' '127.0.0.1'&lt;br /&gt;
        option 'netmask' '255.0.0.0'&lt;br /&gt;
&lt;br /&gt;
config 'interface' 'lan'&lt;br /&gt;
        option 'ifname' 'eth0'&lt;br /&gt;
        option 'proto' 'static'&lt;br /&gt;
        option 'ipaddr' '192.168.xx.xx'&lt;br /&gt;
        option 'netmask' '255.255.255.0'&lt;br /&gt;
&lt;br /&gt;
#hier wird die IP Adresse eingetragen die man im Reedemer zugewiesen bekommen hat&lt;br /&gt;
config 'interface' 'wan'&lt;br /&gt;
        option 'ifname' 'ath0'&lt;br /&gt;
        option 'proto' 'static'&lt;br /&gt;
        option 'ipaddr' 'xx.xx.xx.xx'&lt;br /&gt;
        option 'netmask' '255.255.xx.xx'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Die richtigen Werte fuer ssid/bssid entnimmt man am besten dieser Seite: [[Kanalwahl]]&lt;br /&gt;
&lt;br /&gt;
Es ist darauf zu achten dass &amp;quot;option 'network' 'lan'&amp;quot; auskommentiert ist (man kann es auch ganz entfernen), da man sonst auf eth0 und ath0 die selbe IP hat.&lt;br /&gt;
&lt;br /&gt;
''/etc/config/wireless''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
config 'wifi-device' 'wifi0'&lt;br /&gt;
        option 'type' 'atheros'&lt;br /&gt;
        option 'channel' '1'&lt;br /&gt;
&lt;br /&gt;
config 'wifi-iface'&lt;br /&gt;
        option 'device' 'wifi0'&lt;br /&gt;
#        option 'network' 'lan'&lt;br /&gt;
        option 'encryption' 'none'&lt;br /&gt;
        option 'hidden' 0&lt;br /&gt;
        option 'mode' 'adhoc'&lt;br /&gt;
        option 'ssid' 'v1.freiesnetz.www.funkfeuer.at'&lt;br /&gt;
        option 'bssid' '4E:FE:52:36:2E:65'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In der Standardkonfiguration sind nur die Kanäle 1-11 aktiviert. Möchte man die Kanäle 12 oder 13 verwenden, ist der CountryCode auf &amp;quot;Österreich&amp;quot; zu stellen. Dazu ändert man in der Datei ''/etc/modules.d/50-madwifi'' die Zeile mit ''ath_ahb'' auf:&lt;br /&gt;
  ath_ahb countrycode=40&lt;br /&gt;
&lt;br /&gt;
== OLSR Installation ==&lt;br /&gt;
&lt;br /&gt;
Da man auf der Bullet (wahrscheinlich) noch keinen Internetzugriff hat, kann man sich das ipk File auf den lokalen Rechner herunterladen, per SCP auf die Bullet kopieren und anschliessend per ''opkg'' installieren. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OLSR braucht die libpthread die du zuvor installieren musst&lt;br /&gt;
* http://downloads.openwrt.org/kamikaze/8.09/atheros/packages/libpthread_0.9.29-14_mips.ipk&lt;br /&gt;
* http://downloads.openwrt.org/kamikaze/8.09/atheros/packages/olsrd_0.5.6-r3-2_mips.ipk&lt;br /&gt;
 opkg install &amp;lt;ipk-file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== OLSR Konfiguration ===&lt;br /&gt;
Das Konfigurationsfile fuer olsr heisst in OpenWRT: ''/etc/config/olsrd'' und es hat die uebliche UCI schreibweise, die sich von einer Standard olsr Konfigurationsdatei zwar syntaktisch unterscheidet aber die selben Konfigurationsparameter aufweisst. Die hier angegebenen Werte fuer Timer und Intervale sind von Empfehlungen auf der Funkfeuer Mailingliste uebernommen worden. Falls eine Parameter in der folgenden Liste vermisst wird so wurde dieser nicht explizit gesetzt da sein Standardwert bereits ok ist.&lt;br /&gt;
&lt;br /&gt;
''/etc/config/olsrd''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
config olsrd&lt;br /&gt;
        option IpVersion '4'&lt;br /&gt;
        option Willingness '7'&lt;br /&gt;
        option TcRedundancy '2'&lt;br /&gt;
        option LinkQualityAlgorithm 'etx_ff'&lt;br /&gt;
        option MprCoverage '7'&lt;br /&gt;
&lt;br /&gt;
config Interface&lt;br /&gt;
        list interface 'wan'&lt;br /&gt;
        option Ip4Broadcast '255.255.255.255'&lt;br /&gt;
        option HelloInterval '3.0'&lt;br /&gt;
        option HelloValidityTime '125.0'&lt;br /&gt;
        option TcValidityTime '500.0'&lt;br /&gt;
        option TcInterval '2.0'&lt;br /&gt;
        option MidInterval '25.0'&lt;br /&gt;
        option MidValidityTime '500.0'&lt;br /&gt;
        option HnaInterval '10.0'&lt;br /&gt;
        option HnaValidityTime '125.0'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Iptables / NAT ==&lt;br /&gt;
&lt;br /&gt;
OpenWRT kommt mit einem Standard iptables Setup, ich habe es durch ein paar einfache Regeln ersetzt die ihren Zweck erfuellen. Das Script kann nach /etc/rc.d/S45_deinwunschname verlinkt werden.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
iptables -F&lt;br /&gt;
iptables -t nat -F&lt;br /&gt;
iptables -X&lt;br /&gt;
&lt;br /&gt;
iptables -P INPUT DROP&lt;br /&gt;
iptables -P FORWARD DROP&lt;br /&gt;
iptables -P OUTPUT ACCEPT&lt;br /&gt;
&lt;br /&gt;
iptables -t nat -A POSTROUTING -s 192.168.xx.0/24 -j MASQUERADE&lt;br /&gt;
iptables -A FORWARD -i ath0 -o ath0 -j ACCEPT&lt;br /&gt;
iptables -A FORWARD -i eth0 -s 192.168.xx.0/24 -j ACCEPT&lt;br /&gt;
iptables -A FORWARD -m state --state RELATED,ESTABLISHED -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
#olsr&lt;br /&gt;
iptables -A INPUT -s 193.238.156.0/22 -p udp --dport 698 -j ACCEPT&lt;br /&gt;
iptables -A INPUT -s 78.41.112.0/21 -p udp --dport 698 -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
iptables -A INPUT -p icmp -j ACCEPT&lt;br /&gt;
iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT&lt;br /&gt;
iptables -A INPUT -i eth0 -j ACCEPT&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== DHCP DNS Option ==&lt;br /&gt;
&lt;br /&gt;
Wenn man moechte, dass Clients, DNS Requests direkt an den DNS Server schicken, kann der DHCP Server so eingerichtet werden, dass er dies den Clients als Option mitgibt.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# uci add_list dhcp.lan.dhcp_option=&amp;quot;6,193.238.157.16,193.238.157.5&amp;quot;&lt;br /&gt;
# uci commit dhcp&lt;br /&gt;
# /etc/init.d/dnsmasq restart&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Durch diese Schritte wird die Datei ''/etc/config/dhcp'' entsprechend veraendert und dnsmasq neugestartet.&lt;br /&gt;
&lt;br /&gt;
== Anmerkung/Tipp ==&lt;br /&gt;
&lt;br /&gt;
Die Ausspahrung im Schraubverschluss an der Unterseite ist zwar genau so gross dass ein RJ45 Stecker durchpasst, trotzdem sollte man bei gekauften (bereits gekrimpten) Kabeln darauf achten dass diese keinen Klipschutz haben. Dieser kann beim Durchfuehren des Kabels bzw. beim zuschrauben zu Problemen fuehren und muss dann evt. mit einem Messer vorsichtig entfernt werden.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
fuer die signalstaerke leds gibt es einen (IMO zieml. invasiven) patch...&lt;br /&gt;
https://dev.openwrt.org/ticket/5066&lt;br /&gt;
&lt;br /&gt;
== Hardware Pics ==&lt;br /&gt;
* http://www.flickr.com/photos/mattw/3103755054/sizes/l/&lt;br /&gt;
* http://www.flickr.com/photos/mattw/3103756610/sizes/l/&lt;br /&gt;
&lt;br /&gt;
(gruene platine = Bullet2, weisse platine = Bullet5)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* http://www.flickr.com/photos/mattw/3460916088/&lt;br /&gt;
(hier sieht man auch das bullet2 und picostation2 baugleich sind bis auf antennenanschluss)&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/UBNT_Bullet2</id>
		<title>UBNT Bullet2</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/UBNT_Bullet2"/>
				<updated>2009-06-22T08:56:16Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Anmerkung/Tipp */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Datei:Bullet2.JPG]]&lt;br /&gt;
&lt;br /&gt;
Die [http://ubnt.com/products/bullet.php Ubiquiti Bullet2] ist ein Wetterfester Router, der direkt an Antennen mit N-Buchse angeschlossen werden kann. Die Stromversorgung erfolgt über PoE direkt über das Netzwerkkabel (4,5+; 7,8-). Die Bullet verfügt über einen LAN-Anschluss und 6 LEDs. LED 1+2 zeigen Stromversorgung und LAN-Aktivität an. Dir restlichen LEDs zeigen im Originalbetriebssystem die Empfangsleistung an. Für AirOS gibt es zwar ein olsrd-Paket, aber leider ist der WLAN-Treiber nicht Ad-Hoc-Modus-fähig. Daher installiert man am besten OpenWRT.&lt;br /&gt;
&lt;br /&gt;
== OpenWRT Installation ==&lt;br /&gt;
&lt;br /&gt;
Das OpenWRT Image kann bequem mit dem AirOS Webinterface auf die Bullet2 geflasht werden.&lt;br /&gt;
&lt;br /&gt;
Folgendes Firmware-Image ist das richtige:&lt;br /&gt;
&lt;br /&gt;
http://downloads.openwrt.org/kamikaze/8.09/atheros/openwrt-atheros-ubnt2-squashfs.bin&lt;br /&gt;
&lt;br /&gt;
=== alternativ ===&lt;br /&gt;
Sollte man aus irgendwelchen Gruenden nicht mehr auf das Webinterface zugreifen koennen, kann man das Image auch per TFTP hochladen.&lt;br /&gt;
&lt;br /&gt;
Dazu drueckt man nach dem einschalten sofort die Reset Taste fuer 6-10 Sekunden (bis jeweils 2 LEDs abwechselnd blinken), anschliessend verbindet man sich mit einem TFTP Client (evt. zuerst mit ping die Erreichbarkeit testen).&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt; tftp 192.168.1.20&lt;br /&gt;
&amp;gt; bin&lt;br /&gt;
&amp;gt; put &amp;lt;IMAGE-NAME&amp;gt;&lt;br /&gt;
&amp;gt; exit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Nach dem flashen ==&lt;br /&gt;
Die Bullet hat nun die IP 192.168.1.1&lt;br /&gt;
entsprechend musst du deine Netzwerkkarte neu konfigurieren&lt;br /&gt;
dann per telnet einloggen (&amp;quot;root&amp;quot;/kein passwort) und mit passwd ein passwort für den root user setzen um SSH zu aktivieren&lt;br /&gt;
&lt;br /&gt;
== Netzwerk Konfiguration == &lt;br /&gt;
&lt;br /&gt;
Die relevanten Files fuer die Netzwerkkonfiguration sind &lt;br /&gt;
* /etc/config/network&lt;br /&gt;
* /etc/config/wirless&lt;br /&gt;
&lt;br /&gt;
OpenWRT bridged das Ethernet und WIFI Interface standardmaessig, diese Standardkonfiguration wird veraendert um auf dem Wireless Interface die oeffentliche IP zu konfigurieren. Auf dem Ethernet Interface wird eine private IP Adresse konfiguriert. Spaeter werden dann iptables Rules erstellt um den Traffic aus dem LAN nach aussen zu NAT'en.&lt;br /&gt;
&lt;br /&gt;
''/etc/config/network''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
config 'interface' 'loopback'&lt;br /&gt;
        option 'ifname' 'lo'&lt;br /&gt;
        option 'proto' 'static'&lt;br /&gt;
        option 'ipaddr' '127.0.0.1'&lt;br /&gt;
        option 'netmask' '255.0.0.0'&lt;br /&gt;
&lt;br /&gt;
config 'interface' 'lan'&lt;br /&gt;
        option 'ifname' 'eth0'&lt;br /&gt;
        option 'proto' 'static'&lt;br /&gt;
        option 'ipaddr' '192.168.xx.xx'&lt;br /&gt;
        option 'netmask' '255.255.255.0'&lt;br /&gt;
&lt;br /&gt;
#hier wird die IP Adresse eingetragen die man im Reedemer zugewiesen bekommen hat&lt;br /&gt;
config 'interface' 'wan'&lt;br /&gt;
        option 'ifname' 'ath0'&lt;br /&gt;
        option 'proto' 'static'&lt;br /&gt;
        option 'ipaddr' 'xx.xx.xx.xx'&lt;br /&gt;
        option 'netmask' '255.255.xx.xx'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Die richtigen Werte fuer ssid/bssid entnimmt man am besten dieser Seite: [[Kanalwahl]]&lt;br /&gt;
&lt;br /&gt;
Es ist darauf zu achten dass &amp;quot;option 'network' 'lan'&amp;quot; auskommentiert ist (man kann es auch ganz entfernen), da man sonst auf eth0 und ath0 die selbe IP hat.&lt;br /&gt;
&lt;br /&gt;
''/etc/config/wireless''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
config 'wifi-device' 'wifi0'&lt;br /&gt;
        option 'type' 'atheros'&lt;br /&gt;
        option 'channel' '1'&lt;br /&gt;
&lt;br /&gt;
config 'wifi-iface'&lt;br /&gt;
        option 'device' 'wifi0'&lt;br /&gt;
#        option 'network' 'lan'&lt;br /&gt;
        option 'encryption' 'none'&lt;br /&gt;
        option 'hidden' 0&lt;br /&gt;
        option 'mode' 'adhoc'&lt;br /&gt;
        option 'ssid' 'v1.freiesnetz.www.funkfeuer.at'&lt;br /&gt;
        option 'bssid' '4E:FE:52:36:2E:65'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In der Standardkonfiguration sind nur die Kanäle 1-11 aktiviert. Möchte man die Kanäle 12 oder 13 verwenden, ist der CountryCode auf &amp;quot;Österreich&amp;quot; zu stellen. Dazu ändert man in der Datei ''/etc/modules.d/50-madwifi'' die Zeile mit ''ath_ahb'' auf:&lt;br /&gt;
  ath_ahb countrycode=40&lt;br /&gt;
&lt;br /&gt;
== OLSR Installation ==&lt;br /&gt;
&lt;br /&gt;
Da man auf der Bullet (wahrscheinlich) noch keinen Internetzugriff hat, kann man sich das ipk File auf den lokalen Rechner herunterladen, per SCP auf die Bullet kopieren und anschliessend per ''opkg'' installieren. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OLSR braucht die libpthread die du zuvor installieren musst&lt;br /&gt;
* http://downloads.openwrt.org/kamikaze/8.09/atheros/packages/libpthread_0.9.29-14_mips.ipk&lt;br /&gt;
* http://downloads.openwrt.org/kamikaze/8.09/atheros/packages/olsrd_0.5.6-r3-2_mips.ipk&lt;br /&gt;
 opkg install &amp;lt;ipk-file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== OLSR Konfiguration ===&lt;br /&gt;
Das Konfigurationsfile fuer olsr heisst in OpenWRT: ''/etc/config/olsrd'' und es hat die uebliche UCI schreibweise, die sich von einer Standard olsr Konfigurationsdatei zwar syntaktisch unterscheidet aber die selben Konfigurationsparameter aufweisst. Die hier angegebenen Werte fuer Timer und Intervale sind von Empfehlungen auf der Funkfeuer Mailingliste uebernommen worden. Falls eine Parameter in der folgenden Liste vermisst wird so wurde dieser nicht explizit gesetzt da sein Standardwert bereits ok ist.&lt;br /&gt;
&lt;br /&gt;
''/etc/config/olsrd''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
config olsrd&lt;br /&gt;
        option IpVersion '4'&lt;br /&gt;
        option Willingness '7'&lt;br /&gt;
        option TcRedundancy '2'&lt;br /&gt;
        option LinkQualityAlgorithm 'etx_ff'&lt;br /&gt;
        option MprCoverage '7'&lt;br /&gt;
&lt;br /&gt;
config Interface&lt;br /&gt;
        list interface 'wan'&lt;br /&gt;
        option Ip4Broadcast '255.255.255.255'&lt;br /&gt;
        option HelloInterval '3.0'&lt;br /&gt;
        option HelloValidityTime '125.0'&lt;br /&gt;
        option TcValidityTime '500.0'&lt;br /&gt;
        option TcInterval '2.0'&lt;br /&gt;
        option MidInterval '25.0'&lt;br /&gt;
        option MidValidityTime '500.0'&lt;br /&gt;
        option HnaInterval '10.0'&lt;br /&gt;
        option HnaValidityTime '125.0'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Iptables / NAT ==&lt;br /&gt;
&lt;br /&gt;
OpenWRT kommt mit einem Standard iptables Setup, ich habe es durch ein paar einfache Regeln ersetzt die ihren Zweck erfuellen. Das Script kann nach /etc/rc.d/S45_deinwunschname verlinkt werden.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
iptables -F&lt;br /&gt;
iptables -t nat -F&lt;br /&gt;
iptables -X&lt;br /&gt;
&lt;br /&gt;
iptables -P INPUT DROP&lt;br /&gt;
iptables -P FORWARD DROP&lt;br /&gt;
iptables -P OUTPUT ACCEPT&lt;br /&gt;
&lt;br /&gt;
iptables -t nat -A POSTROUTING -s 192.168.xx.0/24 -j MASQUERADE&lt;br /&gt;
iptables -A FORWARD -i ath0 -o ath0 -j ACCEPT&lt;br /&gt;
iptables -A FORWARD -i eth0 -s 192.168.xx.0/24 -j ACCEPT&lt;br /&gt;
iptables -A FORWARD -m state --state RELATED,ESTABLISHED -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
#olsr&lt;br /&gt;
iptables -A INPUT -s 193.238.156.0/22 -p udp --dport 698 -j ACCEPT&lt;br /&gt;
iptables -A INPUT -s 78.41.112.0/21 -p udp --dport 698 -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
iptables -A INPUT -p icmp -j ACCEPT&lt;br /&gt;
iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT&lt;br /&gt;
iptables -A INPUT -i eth0 -j ACCEPT&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== DHCP DNS Option ==&lt;br /&gt;
&lt;br /&gt;
Wenn man moechte, dass Clients, DNS Requests direkt an den DNS Server schicken, kann der DHCP Server so eingerichtet werden, dass er dies den Clients als Option mitgibt.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# uci add_list dhcp.lan.dhcp_option=&amp;quot;6,193.238.157.16,193.238.157.5&amp;quot;&lt;br /&gt;
# uci commit dhcp&lt;br /&gt;
# /etc/init.d/dnsmasq restart&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Durch diese Schritte wird die Datei ''/etc/config/dhcp'' entsprechend veraendert und dnsmasq neugestartet.&lt;br /&gt;
&lt;br /&gt;
== Anmerkung/Tipp ==&lt;br /&gt;
&lt;br /&gt;
Die Ausspahrung im Schraubverschluss an der Unterseite ist zwar genau so gross dass ein RJ45 Stecker durchpasst, trotzdem sollte man bei gekauften (bereits gekrimpten) Kabeln darauf achten dass diese keinen Klipschutz haben. Dieser kann beim Durchfuehren des Kabels bzw. beim zuschrauben zu Problemen fuehren und muss dann evt. mit einem Messer vorsichtig entfernt werden.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
fuer die signalstaerke leds gibt es einen (IMO zieml. invasiven) patch...&lt;br /&gt;
https://dev.openwrt.org/ticket/5066&lt;br /&gt;
&lt;br /&gt;
== Hardware Pics ==&lt;br /&gt;
* http://www.flickr.com/photos/mattw/3103755054/sizes/l/&lt;br /&gt;
* http://www.flickr.com/photos/mattw/3103756610/sizes/l/&lt;br /&gt;
&lt;br /&gt;
(gruene platine = Bullet2, weisse platine = Bullet5)&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/UBNT_Bullet2</id>
		<title>UBNT Bullet2</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/UBNT_Bullet2"/>
				<updated>2009-06-22T08:51:09Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: added Hardware Pics&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Datei:Bullet2.JPG]]&lt;br /&gt;
&lt;br /&gt;
Die [http://ubnt.com/products/bullet.php Ubiquiti Bullet2] ist ein Wetterfester Router, der direkt an Antennen mit N-Buchse angeschlossen werden kann. Die Stromversorgung erfolgt über PoE direkt über das Netzwerkkabel (4,5+; 7,8-). Die Bullet verfügt über einen LAN-Anschluss und 6 LEDs. LED 1+2 zeigen Stromversorgung und LAN-Aktivität an. Dir restlichen LEDs zeigen im Originalbetriebssystem die Empfangsleistung an. Für AirOS gibt es zwar ein olsrd-Paket, aber leider ist der WLAN-Treiber nicht Ad-Hoc-Modus-fähig. Daher installiert man am besten OpenWRT.&lt;br /&gt;
&lt;br /&gt;
== OpenWRT Installation ==&lt;br /&gt;
&lt;br /&gt;
Das OpenWRT Image kann bequem mit dem AirOS Webinterface auf die Bullet2 geflasht werden.&lt;br /&gt;
&lt;br /&gt;
Folgendes Firmware-Image ist das richtige:&lt;br /&gt;
&lt;br /&gt;
http://downloads.openwrt.org/kamikaze/8.09/atheros/openwrt-atheros-ubnt2-squashfs.bin&lt;br /&gt;
&lt;br /&gt;
=== alternativ ===&lt;br /&gt;
Sollte man aus irgendwelchen Gruenden nicht mehr auf das Webinterface zugreifen koennen, kann man das Image auch per TFTP hochladen.&lt;br /&gt;
&lt;br /&gt;
Dazu drueckt man nach dem einschalten sofort die Reset Taste fuer 6-10 Sekunden (bis jeweils 2 LEDs abwechselnd blinken), anschliessend verbindet man sich mit einem TFTP Client (evt. zuerst mit ping die Erreichbarkeit testen).&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt; tftp 192.168.1.20&lt;br /&gt;
&amp;gt; bin&lt;br /&gt;
&amp;gt; put &amp;lt;IMAGE-NAME&amp;gt;&lt;br /&gt;
&amp;gt; exit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Nach dem flashen ==&lt;br /&gt;
Die Bullet hat nun die IP 192.168.1.1&lt;br /&gt;
entsprechend musst du deine Netzwerkkarte neu konfigurieren&lt;br /&gt;
dann per telnet einloggen (&amp;quot;root&amp;quot;/kein passwort) und mit passwd ein passwort für den root user setzen um SSH zu aktivieren&lt;br /&gt;
&lt;br /&gt;
== Netzwerk Konfiguration == &lt;br /&gt;
&lt;br /&gt;
Die relevanten Files fuer die Netzwerkkonfiguration sind &lt;br /&gt;
* /etc/config/network&lt;br /&gt;
* /etc/config/wirless&lt;br /&gt;
&lt;br /&gt;
OpenWRT bridged das Ethernet und WIFI Interface standardmaessig, diese Standardkonfiguration wird veraendert um auf dem Wireless Interface die oeffentliche IP zu konfigurieren. Auf dem Ethernet Interface wird eine private IP Adresse konfiguriert. Spaeter werden dann iptables Rules erstellt um den Traffic aus dem LAN nach aussen zu NAT'en.&lt;br /&gt;
&lt;br /&gt;
''/etc/config/network''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
config 'interface' 'loopback'&lt;br /&gt;
        option 'ifname' 'lo'&lt;br /&gt;
        option 'proto' 'static'&lt;br /&gt;
        option 'ipaddr' '127.0.0.1'&lt;br /&gt;
        option 'netmask' '255.0.0.0'&lt;br /&gt;
&lt;br /&gt;
config 'interface' 'lan'&lt;br /&gt;
        option 'ifname' 'eth0'&lt;br /&gt;
        option 'proto' 'static'&lt;br /&gt;
        option 'ipaddr' '192.168.xx.xx'&lt;br /&gt;
        option 'netmask' '255.255.255.0'&lt;br /&gt;
&lt;br /&gt;
#hier wird die IP Adresse eingetragen die man im Reedemer zugewiesen bekommen hat&lt;br /&gt;
config 'interface' 'wan'&lt;br /&gt;
        option 'ifname' 'ath0'&lt;br /&gt;
        option 'proto' 'static'&lt;br /&gt;
        option 'ipaddr' 'xx.xx.xx.xx'&lt;br /&gt;
        option 'netmask' '255.255.xx.xx'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Die richtigen Werte fuer ssid/bssid entnimmt man am besten dieser Seite: [[Kanalwahl]]&lt;br /&gt;
&lt;br /&gt;
Es ist darauf zu achten dass &amp;quot;option 'network' 'lan'&amp;quot; auskommentiert ist (man kann es auch ganz entfernen), da man sonst auf eth0 und ath0 die selbe IP hat.&lt;br /&gt;
&lt;br /&gt;
''/etc/config/wireless''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
config 'wifi-device' 'wifi0'&lt;br /&gt;
        option 'type' 'atheros'&lt;br /&gt;
        option 'channel' '1'&lt;br /&gt;
&lt;br /&gt;
config 'wifi-iface'&lt;br /&gt;
        option 'device' 'wifi0'&lt;br /&gt;
#        option 'network' 'lan'&lt;br /&gt;
        option 'encryption' 'none'&lt;br /&gt;
        option 'hidden' 0&lt;br /&gt;
        option 'mode' 'adhoc'&lt;br /&gt;
        option 'ssid' 'v1.freiesnetz.www.funkfeuer.at'&lt;br /&gt;
        option 'bssid' '4E:FE:52:36:2E:65'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In der Standardkonfiguration sind nur die Kanäle 1-11 aktiviert. Möchte man die Kanäle 12 oder 13 verwenden, ist der CountryCode auf &amp;quot;Österreich&amp;quot; zu stellen. Dazu ändert man in der Datei ''/etc/modules.d/50-madwifi'' die Zeile mit ''ath_ahb'' auf:&lt;br /&gt;
  ath_ahb countrycode=40&lt;br /&gt;
&lt;br /&gt;
== OLSR Installation ==&lt;br /&gt;
&lt;br /&gt;
Da man auf der Bullet (wahrscheinlich) noch keinen Internetzugriff hat, kann man sich das ipk File auf den lokalen Rechner herunterladen, per SCP auf die Bullet kopieren und anschliessend per ''opkg'' installieren. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OLSR braucht die libpthread die du zuvor installieren musst&lt;br /&gt;
* http://downloads.openwrt.org/kamikaze/8.09/atheros/packages/libpthread_0.9.29-14_mips.ipk&lt;br /&gt;
* http://downloads.openwrt.org/kamikaze/8.09/atheros/packages/olsrd_0.5.6-r3-2_mips.ipk&lt;br /&gt;
 opkg install &amp;lt;ipk-file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== OLSR Konfiguration ===&lt;br /&gt;
Das Konfigurationsfile fuer olsr heisst in OpenWRT: ''/etc/config/olsrd'' und es hat die uebliche UCI schreibweise, die sich von einer Standard olsr Konfigurationsdatei zwar syntaktisch unterscheidet aber die selben Konfigurationsparameter aufweisst. Die hier angegebenen Werte fuer Timer und Intervale sind von Empfehlungen auf der Funkfeuer Mailingliste uebernommen worden. Falls eine Parameter in der folgenden Liste vermisst wird so wurde dieser nicht explizit gesetzt da sein Standardwert bereits ok ist.&lt;br /&gt;
&lt;br /&gt;
''/etc/config/olsrd''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
config olsrd&lt;br /&gt;
        option IpVersion '4'&lt;br /&gt;
        option Willingness '7'&lt;br /&gt;
        option TcRedundancy '2'&lt;br /&gt;
        option LinkQualityAlgorithm 'etx_ff'&lt;br /&gt;
        option MprCoverage '7'&lt;br /&gt;
&lt;br /&gt;
config Interface&lt;br /&gt;
        list interface 'wan'&lt;br /&gt;
        option Ip4Broadcast '255.255.255.255'&lt;br /&gt;
        option HelloInterval '3.0'&lt;br /&gt;
        option HelloValidityTime '125.0'&lt;br /&gt;
        option TcValidityTime '500.0'&lt;br /&gt;
        option TcInterval '2.0'&lt;br /&gt;
        option MidInterval '25.0'&lt;br /&gt;
        option MidValidityTime '500.0'&lt;br /&gt;
        option HnaInterval '10.0'&lt;br /&gt;
        option HnaValidityTime '125.0'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Iptables / NAT ==&lt;br /&gt;
&lt;br /&gt;
OpenWRT kommt mit einem Standard iptables Setup, ich habe es durch ein paar einfache Regeln ersetzt die ihren Zweck erfuellen. Das Script kann nach /etc/rc.d/S45_deinwunschname verlinkt werden.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
iptables -F&lt;br /&gt;
iptables -t nat -F&lt;br /&gt;
iptables -X&lt;br /&gt;
&lt;br /&gt;
iptables -P INPUT DROP&lt;br /&gt;
iptables -P FORWARD DROP&lt;br /&gt;
iptables -P OUTPUT ACCEPT&lt;br /&gt;
&lt;br /&gt;
iptables -t nat -A POSTROUTING -s 192.168.xx.0/24 -j MASQUERADE&lt;br /&gt;
iptables -A FORWARD -i ath0 -o ath0 -j ACCEPT&lt;br /&gt;
iptables -A FORWARD -i eth0 -s 192.168.xx.0/24 -j ACCEPT&lt;br /&gt;
iptables -A FORWARD -m state --state RELATED,ESTABLISHED -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
#olsr&lt;br /&gt;
iptables -A INPUT -s 193.238.156.0/22 -p udp --dport 698 -j ACCEPT&lt;br /&gt;
iptables -A INPUT -s 78.41.112.0/21 -p udp --dport 698 -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
iptables -A INPUT -p icmp -j ACCEPT&lt;br /&gt;
iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT&lt;br /&gt;
iptables -A INPUT -i eth0 -j ACCEPT&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== DHCP DNS Option ==&lt;br /&gt;
&lt;br /&gt;
Wenn man moechte, dass Clients, DNS Requests direkt an den DNS Server schicken, kann der DHCP Server so eingerichtet werden, dass er dies den Clients als Option mitgibt.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# uci add_list dhcp.lan.dhcp_option=&amp;quot;6,193.238.157.16,193.238.157.5&amp;quot;&lt;br /&gt;
# uci commit dhcp&lt;br /&gt;
# /etc/init.d/dnsmasq restart&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Durch diese Schritte wird die Datei ''/etc/config/dhcp'' entsprechend veraendert und dnsmasq neugestartet.&lt;br /&gt;
&lt;br /&gt;
== Anmerkung/Tipp ==&lt;br /&gt;
&lt;br /&gt;
Die Ausspahrung im Schraubverschluss an der Unterseite ist zwar genau so gross dass ein RJ45 Stecker durchpasst, trotzdem sollte man bei gekauften (bereits gekrimpten) Kabeln darauf achten dass diese keinen Klipschutz haben. Dieser kann beim Durchfuehren des Kabels bzw. beim zuschrauben zu Problemen fuehren und muss dann evt. mit einem Messer vorsichtig entfernt werden.&lt;br /&gt;
&lt;br /&gt;
== Hardware Pics ==&lt;br /&gt;
* http://www.flickr.com/photos/mattw/3103755054/sizes/l/&lt;br /&gt;
* http://www.flickr.com/photos/mattw/3103756610/sizes/l/&lt;br /&gt;
&lt;br /&gt;
(gruene platine = Bullet2, weisse platine = Bullet5)&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/Presse</id>
		<title>Presse</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/Presse"/>
				<updated>2008-10-31T16:19:05Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Ljubljana */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Presse =&lt;br /&gt;
&lt;br /&gt;
== Wien ==&lt;br /&gt;
&lt;br /&gt;
* siehe auch http://www.funkfeuer.at/Presse.256.0.html&lt;br /&gt;
* [[KurierArtikel20060802|Artikel im Kurier vom 2.8.2006]]&lt;br /&gt;
* [[Artikel im profil:profil.jpg|Artikel]] im profil über FunkFeuer vom 27. Juni 2005&lt;br /&gt;
* [[Interview|Interview]] mit Armin Medosch im profil vom 2. Juni 2006&lt;br /&gt;
* [http://tema.lo-res.org/~aaron/Breitband-Loch2.pdf  Walter Groebchen's Breitbandloch]&lt;br /&gt;
&lt;br /&gt;
== Graz ==&lt;br /&gt;
&lt;br /&gt;
* http://wiki.graz.funkfeuer.at/Presse&lt;br /&gt;
&lt;br /&gt;
== Ljubljana ==&lt;br /&gt;
Pressebericht uber das slowenischen OLSR nachbar-netz [http://wifi.frubsd.org/wlan-lj Wlan LJ]&lt;br /&gt;
&lt;br /&gt;
* http://www.vest.si/2008/02/17/wlan-lj/&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/Presse</id>
		<title>Presse</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/Presse"/>
				<updated>2008-10-31T00:34:52Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Presse =&lt;br /&gt;
&lt;br /&gt;
== Wien ==&lt;br /&gt;
&lt;br /&gt;
* siehe auch http://www.funkfeuer.at/Presse.256.0.html&lt;br /&gt;
* [[KurierArtikel20060802|Artikel im Kurier vom 2.8.2006]]&lt;br /&gt;
* [[Artikel im profil:profil.jpg|Artikel]] im profil über FunkFeuer vom 27. Juni 2005&lt;br /&gt;
* [[Interview|Interview]] mit Armin Medosch im profil vom 2. Juni 2006&lt;br /&gt;
* [http://tema.lo-res.org/~aaron/Breitband-Loch2.pdf  Walter Groebchen's Breitbandloch]&lt;br /&gt;
&lt;br /&gt;
== Graz ==&lt;br /&gt;
&lt;br /&gt;
* http://wiki.graz.funkfeuer.at/Presse&lt;br /&gt;
&lt;br /&gt;
== Ljubljana ==&lt;br /&gt;
Presse von unseren slowenischen OLSR nachbar-netz [http://wifi.frubsd.org/wlan-lj Wlan LJ]&lt;br /&gt;
&lt;br /&gt;
* http://www.vest.si/2008/02/17/wlan-lj/&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:38:07Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* LinkQuality */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* Optimized Link State Routing Protocol (OLSR) - Experimental [http://tools.ietf.org/html/rfc3626 RFC3626]&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* The Optimized Link State Routing Protocol version 2 - [http://tools.ietf.org/html/draft-ietf-manet-olsrv2 draft-ietf-manet-olsrv2]&lt;br /&gt;
* Generalized MANET Packet/Message Format - [http://tools.ietf.org/html/draft-ietf-manet-packetbb draft-ietf-manet-packetbb]&lt;br /&gt;
* Representing multi-value time in MANETs - [http://tools.ietf.org/html/draft-ietf-manet-timetlv draft-ietf-manet-timetlv] &lt;br /&gt;
* Jitter considerations in Mobile Ad Hoc Networks (MANETs) - [http://tools.ietf.org/html/draft-ietf-manet-jitter draft-ietf-manet-jitter]&lt;br /&gt;
* MANET Neighborhood Discovery Protocol (NHDP) - [http://tools.ietf.org/html/draft-ietf-manet-nhdp draft-ietf-manet-nhdp]&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* Architectural Implications of Link Indications, 2.7.3. Metric Consistency - Informational [http://www3.tools.ietf.org/html/rfc4907#section-2.7.3 RFC4907]&lt;br /&gt;
&lt;br /&gt;
=== LinkQuality ===&lt;br /&gt;
* http://en.wikipedia.org/wiki/Bernoulli_trial&lt;br /&gt;
* http://mathworld.wolfram.com/BernoulliTrial.html&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* De Couto, Aguayo, Bicket, Morris: [http://pdos.csail.mit.edu/papers/grid:mobicom03/ High-Throughput Path Metric for Multi-Hop Wireless Routing]&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* Clausen, Baccelli, Rodolakis, Adjih, Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:34:49Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Metrics */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* Optimized Link State Routing Protocol (OLSR) - Experimental [http://tools.ietf.org/html/rfc3626 RFC3626]&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* The Optimized Link State Routing Protocol version 2 - [http://tools.ietf.org/html/draft-ietf-manet-olsrv2 draft-ietf-manet-olsrv2]&lt;br /&gt;
* Generalized MANET Packet/Message Format - [http://tools.ietf.org/html/draft-ietf-manet-packetbb draft-ietf-manet-packetbb]&lt;br /&gt;
* Representing multi-value time in MANETs - [http://tools.ietf.org/html/draft-ietf-manet-timetlv draft-ietf-manet-timetlv] &lt;br /&gt;
* Jitter considerations in Mobile Ad Hoc Networks (MANETs) - [http://tools.ietf.org/html/draft-ietf-manet-jitter draft-ietf-manet-jitter]&lt;br /&gt;
* MANET Neighborhood Discovery Protocol (NHDP) - [http://tools.ietf.org/html/draft-ietf-manet-nhdp draft-ietf-manet-nhdp]&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* Architectural Implications of Link Indications, 2.7.3. Metric Consistency - Informational [http://www3.tools.ietf.org/html/rfc4907#section-2.7.3 RFC4907]&lt;br /&gt;
&lt;br /&gt;
=== LinkQuality ===&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* De Couto, Aguayo, Bicket, Morris: [http://pdos.csail.mit.edu/papers/grid:mobicom03/ High-Throughput Path Metric for Multi-Hop Wireless Routing]&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* Clausen, Baccelli, Rodolakis, Adjih, Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:33:33Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Fisheye */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* Optimized Link State Routing Protocol (OLSR) - Experimental [http://tools.ietf.org/html/rfc3626 RFC3626]&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* The Optimized Link State Routing Protocol version 2 - [http://tools.ietf.org/html/draft-ietf-manet-olsrv2 draft-ietf-manet-olsrv2]&lt;br /&gt;
* Generalized MANET Packet/Message Format - [http://tools.ietf.org/html/draft-ietf-manet-packetbb draft-ietf-manet-packetbb]&lt;br /&gt;
* Representing multi-value time in MANETs - [http://tools.ietf.org/html/draft-ietf-manet-timetlv draft-ietf-manet-timetlv] &lt;br /&gt;
* Jitter considerations in Mobile Ad Hoc Networks (MANETs) - [http://tools.ietf.org/html/draft-ietf-manet-jitter draft-ietf-manet-jitter]&lt;br /&gt;
* MANET Neighborhood Discovery Protocol (NHDP) - [http://tools.ietf.org/html/draft-ietf-manet-nhdp draft-ietf-manet-nhdp]&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* Architectural Implications of Link Indications, 2.7.3. Metric Consistency - Informational [http://www3.tools.ietf.org/html/rfc4907#section-2.7.3 RFC4907]&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* De Couto, Aguayo, Bicket, Morris: [http://pdos.csail.mit.edu/papers/grid:mobicom03/ High-Throughput Path Metric for Multi-Hop Wireless Routing]&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* Clausen, Baccelli, Rodolakis, Adjih, Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:33:12Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* ETX */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* Optimized Link State Routing Protocol (OLSR) - Experimental [http://tools.ietf.org/html/rfc3626 RFC3626]&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* The Optimized Link State Routing Protocol version 2 - [http://tools.ietf.org/html/draft-ietf-manet-olsrv2 draft-ietf-manet-olsrv2]&lt;br /&gt;
* Generalized MANET Packet/Message Format - [http://tools.ietf.org/html/draft-ietf-manet-packetbb draft-ietf-manet-packetbb]&lt;br /&gt;
* Representing multi-value time in MANETs - [http://tools.ietf.org/html/draft-ietf-manet-timetlv draft-ietf-manet-timetlv] &lt;br /&gt;
* Jitter considerations in Mobile Ad Hoc Networks (MANETs) - [http://tools.ietf.org/html/draft-ietf-manet-jitter draft-ietf-manet-jitter]&lt;br /&gt;
* MANET Neighborhood Discovery Protocol (NHDP) - [http://tools.ietf.org/html/draft-ietf-manet-nhdp draft-ietf-manet-nhdp]&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* Architectural Implications of Link Indications, 2.7.3. Metric Consistency - Informational [http://www3.tools.ietf.org/html/rfc4907#section-2.7.3 RFC4907]&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* De Couto, Aguayo, Bicket, Morris: [http://pdos.csail.mit.edu/papers/grid:mobicom03/ High-Throughput Path Metric for Multi-Hop Wireless Routing]&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:32:41Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* ETX */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* Optimized Link State Routing Protocol (OLSR) - Experimental [http://tools.ietf.org/html/rfc3626 RFC3626]&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* The Optimized Link State Routing Protocol version 2 - [http://tools.ietf.org/html/draft-ietf-manet-olsrv2 draft-ietf-manet-olsrv2]&lt;br /&gt;
* Generalized MANET Packet/Message Format - [http://tools.ietf.org/html/draft-ietf-manet-packetbb draft-ietf-manet-packetbb]&lt;br /&gt;
* Representing multi-value time in MANETs - [http://tools.ietf.org/html/draft-ietf-manet-timetlv draft-ietf-manet-timetlv] &lt;br /&gt;
* Jitter considerations in Mobile Ad Hoc Networks (MANETs) - [http://tools.ietf.org/html/draft-ietf-manet-jitter draft-ietf-manet-jitter]&lt;br /&gt;
* MANET Neighborhood Discovery Protocol (NHDP) - [http://tools.ietf.org/html/draft-ietf-manet-nhdp draft-ietf-manet-nhdp]&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* Architectural Implications of Link Indications, 2.7.3. Metric Consistency - Informational [http://www3.tools.ietf.org/html/rfc4907#section-2.7.3 RFC4907]&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* D De Couto, D Aguayo, J Bicket, R Morris: [http://pdos.csail.mit.edu/papers/grid:mobicom03/ High-Throughput Path Metric for Multi-Hop Wireless Routing]&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:30:34Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Metrics */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* Optimized Link State Routing Protocol (OLSR) - Experimental [http://tools.ietf.org/html/rfc3626 RFC3626]&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* The Optimized Link State Routing Protocol version 2 - [http://tools.ietf.org/html/draft-ietf-manet-olsrv2 draft-ietf-manet-olsrv2]&lt;br /&gt;
* Generalized MANET Packet/Message Format - [http://tools.ietf.org/html/draft-ietf-manet-packetbb draft-ietf-manet-packetbb]&lt;br /&gt;
* Representing multi-value time in MANETs - [http://tools.ietf.org/html/draft-ietf-manet-timetlv draft-ietf-manet-timetlv] &lt;br /&gt;
* Jitter considerations in Mobile Ad Hoc Networks (MANETs) - [http://tools.ietf.org/html/draft-ietf-manet-jitter draft-ietf-manet-jitter]&lt;br /&gt;
* MANET Neighborhood Discovery Protocol (NHDP) - [http://tools.ietf.org/html/draft-ietf-manet-nhdp draft-ietf-manet-nhdp]&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* Architectural Implications of Link Indications, 2.7.3. Metric Consistency - Informational [http://www3.tools.ietf.org/html/rfc4907#section-2.7.3 RFC4907]&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:29:54Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Metrics */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* Optimized Link State Routing Protocol (OLSR) - Experimental [http://tools.ietf.org/html/rfc3626 RFC3626]&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* The Optimized Link State Routing Protocol version 2 - [http://tools.ietf.org/html/draft-ietf-manet-olsrv2 draft-ietf-manet-olsrv2]&lt;br /&gt;
* Generalized MANET Packet/Message Format - [http://tools.ietf.org/html/draft-ietf-manet-packetbb draft-ietf-manet-packetbb]&lt;br /&gt;
* Representing multi-value time in MANETs - [http://tools.ietf.org/html/draft-ietf-manet-timetlv draft-ietf-manet-timetlv] &lt;br /&gt;
* Jitter considerations in Mobile Ad Hoc Networks (MANETs) - [http://tools.ietf.org/html/draft-ietf-manet-jitter draft-ietf-manet-jitter]&lt;br /&gt;
* MANET Neighborhood Discovery Protocol (NHDP) - [http://tools.ietf.org/html/draft-ietf-manet-nhdp draft-ietf-manet-nhdp]&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* Architectural Implications of Link Indications, 2.7.3. Metric Consistency [http://www3.tools.ietf.org/html/rfc4907#section-2.7.3 RFC4907]&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:28:32Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Metrics */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* Optimized Link State Routing Protocol (OLSR) - Experimental [http://tools.ietf.org/html/rfc3626 RFC3626]&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* The Optimized Link State Routing Protocol version 2 - [http://tools.ietf.org/html/draft-ietf-manet-olsrv2 draft-ietf-manet-olsrv2]&lt;br /&gt;
* Generalized MANET Packet/Message Format - [http://tools.ietf.org/html/draft-ietf-manet-packetbb draft-ietf-manet-packetbb]&lt;br /&gt;
* Representing multi-value time in MANETs - [http://tools.ietf.org/html/draft-ietf-manet-timetlv draft-ietf-manet-timetlv] &lt;br /&gt;
* Jitter considerations in Mobile Ad Hoc Networks (MANETs) - [http://tools.ietf.org/html/draft-ietf-manet-jitter draft-ietf-manet-jitter]&lt;br /&gt;
* MANET Neighborhood Discovery Protocol (NHDP) - [http://tools.ietf.org/html/draft-ietf-manet-nhdp draft-ietf-manet-nhdp]&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* 2.7.3. Metric Consistency [http://www3.tools.ietf.org/html/rfc4907#section-2.7.3 RFC4907]&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:27:40Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* OLSR v1 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* Optimized Link State Routing Protocol (OLSR) - Experimental [http://tools.ietf.org/html/rfc3626 RFC3626]&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* The Optimized Link State Routing Protocol version 2 - [http://tools.ietf.org/html/draft-ietf-manet-olsrv2 draft-ietf-manet-olsrv2]&lt;br /&gt;
* Generalized MANET Packet/Message Format - [http://tools.ietf.org/html/draft-ietf-manet-packetbb draft-ietf-manet-packetbb]&lt;br /&gt;
* Representing multi-value time in MANETs - [http://tools.ietf.org/html/draft-ietf-manet-timetlv draft-ietf-manet-timetlv] &lt;br /&gt;
* Jitter considerations in Mobile Ad Hoc Networks (MANETs) - [http://tools.ietf.org/html/draft-ietf-manet-jitter draft-ietf-manet-jitter]&lt;br /&gt;
* MANET Neighborhood Discovery Protocol (NHDP) - [http://tools.ietf.org/html/draft-ietf-manet-nhdp draft-ietf-manet-nhdp]&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* http://www3.tools.ietf.org/html/rfc4907#section-2.7.3&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:26:47Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* OLSR v1 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* Optimized Link State Routing Protocol (OLSR) - [http://tools.ietf.org/html/rfc3626 RFC3626]&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* The Optimized Link State Routing Protocol version 2 - [http://tools.ietf.org/html/draft-ietf-manet-olsrv2 draft-ietf-manet-olsrv2]&lt;br /&gt;
* Generalized MANET Packet/Message Format - [http://tools.ietf.org/html/draft-ietf-manet-packetbb draft-ietf-manet-packetbb]&lt;br /&gt;
* Representing multi-value time in MANETs - [http://tools.ietf.org/html/draft-ietf-manet-timetlv draft-ietf-manet-timetlv] &lt;br /&gt;
* Jitter considerations in Mobile Ad Hoc Networks (MANETs) - [http://tools.ietf.org/html/draft-ietf-manet-jitter draft-ietf-manet-jitter]&lt;br /&gt;
* MANET Neighborhood Discovery Protocol (NHDP) - [http://tools.ietf.org/html/draft-ietf-manet-nhdp draft-ietf-manet-nhdp]&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* http://www3.tools.ietf.org/html/rfc4907#section-2.7.3&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:26:12Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* OLSR v1 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* Optimized Link State Routing Protocol (OLSR) - [http://tools.ietf.org/html/rfc3626 &amp;quot;RFC 3626&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* The Optimized Link State Routing Protocol version 2 - [http://tools.ietf.org/html/draft-ietf-manet-olsrv2 draft-ietf-manet-olsrv2]&lt;br /&gt;
* Generalized MANET Packet/Message Format - [http://tools.ietf.org/html/draft-ietf-manet-packetbb draft-ietf-manet-packetbb]&lt;br /&gt;
* Representing multi-value time in MANETs - [http://tools.ietf.org/html/draft-ietf-manet-timetlv draft-ietf-manet-timetlv] &lt;br /&gt;
* Jitter considerations in Mobile Ad Hoc Networks (MANETs) - [http://tools.ietf.org/html/draft-ietf-manet-jitter draft-ietf-manet-jitter]&lt;br /&gt;
* MANET Neighborhood Discovery Protocol (NHDP) - [http://tools.ietf.org/html/draft-ietf-manet-nhdp draft-ietf-manet-nhdp]&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* http://www3.tools.ietf.org/html/rfc4907#section-2.7.3&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:25:48Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* OLSR v1 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* Optimized Link State Routing Protocol (OLSR) - [http://tools.ietf.org/html/rfc3626 RFC 3626]&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* The Optimized Link State Routing Protocol version 2 - [http://tools.ietf.org/html/draft-ietf-manet-olsrv2 draft-ietf-manet-olsrv2]&lt;br /&gt;
* Generalized MANET Packet/Message Format - [http://tools.ietf.org/html/draft-ietf-manet-packetbb draft-ietf-manet-packetbb]&lt;br /&gt;
* Representing multi-value time in MANETs - [http://tools.ietf.org/html/draft-ietf-manet-timetlv draft-ietf-manet-timetlv] &lt;br /&gt;
* Jitter considerations in Mobile Ad Hoc Networks (MANETs) - [http://tools.ietf.org/html/draft-ietf-manet-jitter draft-ietf-manet-jitter]&lt;br /&gt;
* MANET Neighborhood Discovery Protocol (NHDP) - [http://tools.ietf.org/html/draft-ietf-manet-nhdp draft-ietf-manet-nhdp]&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* http://www3.tools.ietf.org/html/rfc4907#section-2.7.3&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:24:48Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* OLSR v2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/rfc3626&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* The Optimized Link State Routing Protocol version 2 - [http://tools.ietf.org/html/draft-ietf-manet-olsrv2 draft-ietf-manet-olsrv2]&lt;br /&gt;
* Generalized MANET Packet/Message Format - [http://tools.ietf.org/html/draft-ietf-manet-packetbb draft-ietf-manet-packetbb]&lt;br /&gt;
* Representing multi-value time in MANETs - [http://tools.ietf.org/html/draft-ietf-manet-timetlv draft-ietf-manet-timetlv] &lt;br /&gt;
* Jitter considerations in Mobile Ad Hoc Networks (MANETs) - [http://tools.ietf.org/html/draft-ietf-manet-jitter draft-ietf-manet-jitter]&lt;br /&gt;
* MANET Neighborhood Discovery Protocol (NHDP) - [http://tools.ietf.org/html/draft-ietf-manet-nhdp draft-ietf-manet-nhdp]&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* http://www3.tools.ietf.org/html/rfc4907#section-2.7.3&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:23:35Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* OLSR v2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/rfc3626&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* The Optimized Link State Routing Protocol version 2 - [http://tools.ietf.org/html/draft-ietf-manet-olsrv2 draft-ietf-manet-olsrv2]&lt;br /&gt;
* Generalized MANET Packet/Message Format - [http://tools.ietf.org/html/draft-ietf-manet-packetbb draft-ietf-manet-packetbb]&lt;br /&gt;
* Representing multi-value time in MANETs [http://tools.ietf.org/html/draft-ietf-manet-timetlv draft-ietf-manet-timetlv] &lt;br /&gt;
* Jitter considerations in Mobile Ad Hoc Networks (MANETs) http://tools.ietf.org/html/draft-ietf-manet-jitter&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-nhdp&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* http://www3.tools.ietf.org/html/rfc4907#section-2.7.3&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:23:10Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* OLSR v2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/rfc3626&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* The Optimized Link State Routing Protocol version 2 - [http://tools.ietf.org/html/draft-ietf-manet-olsrv2 draft-ietf-manet-olsrv2]&lt;br /&gt;
* Generalized MANET Packet/Message Format - [http://tools.ietf.org/html/draft-ietf-manet-packetbb draft-ietf-manet-packetbb]&lt;br /&gt;
* Representing multi-value time in MANETs [http://tools.ietf.org/html/draft-ietf-manet-timetlv draft-ietf-manet-timetlv] &lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-jitter&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-nhdp&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* http://www3.tools.ietf.org/html/rfc4907#section-2.7.3&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:22:03Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* OLSR v2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/rfc3626&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* The Optimized Link State Routing Protocol version 2 - [http://tools.ietf.org/html/draft-ietf-manet-olsrv2 draft-ietf-manet-olsrv2]&lt;br /&gt;
* Generalized MANET Packet/Message Format - [http://tools.ietf.org/html/draft-ietf-manet-packetbb draft-ietf-manet-packetbb]&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-timetlv&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-jitter&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-nhdp&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* http://www3.tools.ietf.org/html/rfc4907#section-2.7.3&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:21:12Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* OLSR v2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/rfc3626&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* The Optimized Link State Routing Protocol version 2 - [http://tools.ietf.org/html/draft-ietf-manet-olsrv2 draft-ietf-manet-olsrv2]&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-packetbb&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-timetlv&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-jitter&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-nhdp&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* http://www3.tools.ietf.org/html/rfc4907#section-2.7.3&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:20:36Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* OLSR v2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/rfc3626&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* The Optimized Link State Routing Protocol version 2 [http://tools.ietf.org/html/draft-ietf-manet-olsrv2 draft-ietf-manet-olsrv2]&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-packetbb&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-timetlv&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-jitter&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-nhdp&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* http://www3.tools.ietf.org/html/rfc4907#section-2.7.3&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:19:27Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Fisheye */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/rfc3626&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-olsrv2&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-packetbb&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-timetlv&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-jitter&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-nhdp&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* http://www3.tools.ietf.org/html/rfc4907#section-2.7.3&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* Fisheye State Routing Protocol (FSR) for Ad Hoc Networks - [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:18:49Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Fisheye */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/rfc3626&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-olsrv2&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-packetbb&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-timetlv&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-jitter&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-nhdp&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* http://www3.tools.ietf.org/html/rfc4907#section-2.7.3&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* [http://tools.ietf.org/html/draft-ietf-manet-fsr draft-ietf-manet-fsr]- Fisheye State Routing Protocol (FSR) for Ad Hoc Networks&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:16:53Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Fisheye */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/rfc3626&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-olsrv2&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-packetbb&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-timetlv&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-jitter&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-nhdp&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* http://www3.tools.ietf.org/html/rfc4907#section-2.7.3&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-fsr&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:15:29Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Fisheye */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/rfc3626&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-olsrv2&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-packetbb&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-timetlv&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-jitter&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-nhdp&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* http://www3.tools.ietf.org/html/rfc4907#section-2.7.3&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties]&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:15:04Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Fisheye */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/rfc3626&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-olsrv2&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-packetbb&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-timetlv&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-jitter&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-nhdp&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* http://www3.tools.ietf.org/html/rfc4907#section-2.7.3&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties] &lt;br /&gt;
IEEE Journal on Communications Networks (JCN)&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:14:47Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Fisheye */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/rfc3626&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-olsrv2&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-packetbb&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-timetlv&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-jitter&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-nhdp&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* http://www3.tools.ietf.org/html/rfc4907#section-2.7.3&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* T.Clausen, E.Baccelli, G.Rodolakis, C.Adjih, P. Jacquet: [http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf Fish-Eye OLSR Scaling Properties] IEEE Journal on Communications Networks (JCN)&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T14:12:24Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* ETX */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/rfc3626&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-olsrv2&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-packetbb&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-timetlv&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-jitter&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-nhdp&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* http://www3.tools.ietf.org/html/rfc4907#section-2.7.3&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;br /&gt;
&lt;br /&gt;
== Fisheye ==&lt;br /&gt;
&lt;br /&gt;
* http://www.lix.polytechnique.fr/~rodolakis/publications/JCN_2004.pdf&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR_Specs</id>
		<title>OLSR Specs</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR_Specs"/>
				<updated>2008-05-17T12:33:55Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== OLSR v1 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/rfc3626&lt;br /&gt;
&lt;br /&gt;
== OLSR v2 ==&lt;br /&gt;
&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-olsrv2&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-packetbb&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-timetlv&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-jitter&lt;br /&gt;
* http://tools.ietf.org/html/draft-ietf-manet-nhdp&lt;br /&gt;
&lt;br /&gt;
== Metrics ==&lt;br /&gt;
&lt;br /&gt;
* http://www3.tools.ietf.org/html/rfc4907#section-2.7.3&lt;br /&gt;
&lt;br /&gt;
=== ETX ===&lt;br /&gt;
&lt;br /&gt;
* http://pdos.csail.mit.edu/papers/grid:mobicom03/&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR-NG</id>
		<title>OLSR-NG</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR-NG"/>
				<updated>2007-11-05T13:51:29Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Who is working on what? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;google&amp;gt;OLSR&amp;lt;/google&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=  NEWS =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;We have released our first set of improvements to the olsrd SPF calculation module.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== SPF implementation ==&lt;br /&gt;
When executing the [http://en.wikipedia.org/wiki/Dijkstra%27s_algorithm SPF calculation]&lt;br /&gt;
upon every iteration the least cost path needs to be extracted and put on the result list.&lt;br /&gt;
For that purpose olsrd-current does keep a linear list which has O(N) [http://en.wikipedia.org/wiki/Asymptotic_complexity asymptotic_complexity] to traverse.&lt;br /&gt;
Every node needs to be visited, which&lt;br /&gt;
has again O(N) [http://en.wikipedia.org/wiki/Asymptotic_complexity asymptotic_complexity]. This results in a total behavior of O(N^2) which can eat a lot&lt;br /&gt;
of CPU where N is large (for example when there are hundreds of olsrd nodes in a network).&lt;br /&gt;
&lt;br /&gt;
== speed by efficient sorting ==&lt;br /&gt;
modern SPF implementations use data structures which are efficient at sorting the preliminary path costs like&lt;br /&gt;
[http://en.wikipedia.org/wiki/Min_heap min_heaps] or [http://en.wikipedia.org/wiki/AVL_tree AVL_trees]. Since olsrd already&lt;br /&gt;
had a nice and efficient AVL tree implementation, the two SPF related data structures (the candidate and path tree) are implemented using&lt;br /&gt;
AVL trees with the path etx metric as the key. Determining the minimal path cost in an AVL tree comes at a cost of O(log(N)) which results&lt;br /&gt;
in a total [http://en.wikipedia.org/wiki/Asymptotic_complexity asymptotic_complexity] of O(N * log(N)), which scales much nicer now in large networks.&lt;br /&gt;
&lt;br /&gt;
== Results ==&lt;br /&gt;
In the [http://www.funkfeuer.at funkfeuer.at] network topology of 190 nodes the raw SPF execution was reduced by 45%. Note that the raw SPF execution represents only about 20% of the CPU cost in a running olsrd. At funkfeuer.at we have observed an overall decrease in the CPU load of about 12% on the embedded routers.&lt;br /&gt;
&lt;br /&gt;
== Outlook ==&lt;br /&gt;
10-20% (depending on network size) in the route-handling module is admittedly not exciting. During refactoring the SPF implementation the olsrd-ng development team, has spotted further bottlenecks in the existing implementation. We are tackling this one by one, and would need active participation of the wireless communities to test our improvements and verify if we have added any undesired regressions. so stay tuned and report bugs to the [mailto:olsr-dev@lists.olsr.org olsrd-dev] mailing list.&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
please check out the [http://tema.lo-res.org/~aaron/spf-refactoring.diff.gz patch]&lt;br /&gt;
&lt;br /&gt;
= sponsor =&lt;br /&gt;
&lt;br /&gt;
[[Bild:netideelogo.png|200px|supported by IPA]] made possible by a grant from [http://www.netidee.at IPA].  Thanks we really appreciate your help and your courage to support us!&lt;br /&gt;
&lt;br /&gt;
= main links =&lt;br /&gt;
&lt;br /&gt;
Main OLSR-NG project blog: http://olsr.funkfeuer.at&lt;br /&gt;
&lt;br /&gt;
Slides from the OLSR-NG kickoff presentation: http://outpost.funkfeuer.at/~aaron/olsr-ng.pdf&lt;br /&gt;
&lt;br /&gt;
We communicate on the olsr-dev mailinglist: https://www.olsr.org/mailman/listinfo/olsr-dev . All commit messages can be seen on the olsr-cvs list&lt;br /&gt;
&lt;br /&gt;
= Goals =&lt;br /&gt;
&lt;br /&gt;
# Clean up the code of OLSR (http://www.olsr.org), &lt;br /&gt;
# improve the algorithms of OLSR and make it more scalable.&lt;br /&gt;
# Furthermore, produce a new RFC for a (potential) new mesh routing protocol which is based on the experiences of OLSR coding (at the moment the most promising candidate for this RFC is [http://open-mesh.net/batman B.A.T.M.A.N])&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OLSR-NG is a open source project. Meaning everybody is invited to join in and help. &lt;br /&gt;
We do have some bounties for the best solutions. If you want to participate, drop us an email: mailto:aaron@lo-res.org and mailto:bernd@firmix.at&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
One of the main goals is to make OLSR more scalable '''in practice'''.&lt;br /&gt;
[[Bild:O-Dijkstra.gif|350px|right|Complexity for n=1000 nodes of different data structures in the Dijkstra shortest path (SPF) algorithm. ]]&lt;br /&gt;
&lt;br /&gt;
In the this picture you can see the different complexity graphs for the SPF under the assumption that every node has 10 edges . As you can see, the red line has O(n^2) complexity. This conforms to the current implementation of OLSR from www.olsr.org. OLSR-NG plans to reduce the complexity to the green or even the yellow level. This will allow the mesh network clouds to become larger by a factor ~ 1000 (on the routing layer / layer 3).&lt;br /&gt;
&lt;br /&gt;
= Current Status =&lt;br /&gt;
&lt;br /&gt;
* olsrd 0.5.4 was released! Thx everybody a lot! Big credits go out to Hannes and Bernd.&lt;br /&gt;
* UML test server is being worked on. This will allow the B.A.T.M.A.N team to test their protocol and us to test our scalability ideas with 1000nd of olsr instances.&lt;br /&gt;
* Ongoing code cleanups&lt;br /&gt;
&lt;br /&gt;
== [http://www.user-mode-linux.org UML] test server ==&lt;br /&gt;
&lt;br /&gt;
current load and statistics: http://texas.funkfeuer.at&lt;br /&gt;
&lt;br /&gt;
[[Bild:Texas.funkfeuer.at.png|right|300px|our UML server]]&lt;br /&gt;
&lt;br /&gt;
[[Bild:Topology-1-small.png|center|600px|topo map 1500 UML instances running in parallel. Note the packetloss!]]&lt;br /&gt;
(check out the [[TopologyPics archive]] also)&lt;br /&gt;
&lt;br /&gt;
topo map 1500 UML instances running in parallel. Note the packetloss! &lt;br /&gt;
&lt;br /&gt;
We have already been running 2000 instances and there was still  plenty of RAM left. So 1000 is a very safe bet. However according to the UML docu we can probably safely assume that we can scale up miuch higher because UML will only take the RAM that each instance actually needs. &lt;br /&gt;
UML actually has other shortcomings: high CPU overhead, lots of context swiches. Trying to increase the performance at the moment...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== current open todos UML server ===&lt;br /&gt;
Next important (*) things to do:&lt;br /&gt;
* DONE(aka) update texas's BIOS - FIXED &lt;br /&gt;
* add the packet loss tc rules (zethix already prepared it)&lt;br /&gt;
* create random netowkrs (easy)&lt;br /&gt;
* create network topologies based on a power law distribution ( a bit harder, but realistic for the internet)&lt;br /&gt;
* DONE(zethix) create scripts to find out which olsrd instances crashed&lt;br /&gt;
* create scripts to find out if a UML instance is not responsive anymore&lt;br /&gt;
* find better measurement tools . Look into sar&lt;br /&gt;
* DONE(aka) recompile host kernel and get rid of the &amp;quot;BUG: soft lockup detected on CPU#0!&amp;quot; messages&lt;br /&gt;
* DONE(aka) recompile host kernel and enable the preemtion patch&lt;br /&gt;
* DONE(zethix,aka) make hostfs so that developers can easily upload a new olsrd version to all uml instances. They should see the difference easily. Look into hostfs&lt;br /&gt;
* DONE(ake) increase performance of the UML simulator itself (decrease HZ, look into SKAS3 patch again, 32 bit recompile, talk with jeff etc)&lt;br /&gt;
* find more meaningful topology visualization tools (http://www.caida.org)&lt;br /&gt;
* add b.a.t.m.a.n to the root filesystem. (?)&lt;br /&gt;
* compare the scheduling / scalability of the test with [http://openvz.org/ OpenVZ] and [http://www.olsr.org/docs/README-Olsr-Switch.html olsr_switch]&lt;br /&gt;
&lt;br /&gt;
=== User HOWTO ===&lt;br /&gt;
&lt;br /&gt;
  NOTE! You are root on the system. Effectively we need lots of sudo privs. So... use it wisely.&lt;br /&gt;
&lt;br /&gt;
# log in&lt;br /&gt;
# make clean&lt;br /&gt;
# edit common.sh and adapt the parameters to your needs&lt;br /&gt;
  #!/bin/sh&lt;br /&gt;
  #&lt;br /&gt;
  # VARS&lt;br /&gt;
  #&lt;br /&gt;
  MAX_INSTANCES=1500&lt;br /&gt;
  ROOT_FS=root_fs&lt;br /&gt;
  NICELVL=&amp;quot;-n 5&amp;quot;&lt;br /&gt;
  u=$USER&lt;br /&gt;
  #SINGLE=1&lt;br /&gt;
We supply you with a good working root filesystem (root_fs) so no need to change that. The SINGLE  parameter just says that you want to start a single instance and be logged in (needed for debugging purposes)&lt;br /&gt;
# the UML instance can read files and programs from &lt;br /&gt;
  $HOME/public_uml/share&lt;br /&gt;
This is where you can put your programs or your version of olsrd (and its libs) or the B.A.T.M.A.N. binaries.&lt;br /&gt;
&lt;br /&gt;
  N.B. This directory is shared between all UML instances that you will &lt;br /&gt;
  start in your simulation, so, they all have read-only access to it. &lt;br /&gt;
  It will appear inside each UML as /mnt/share/. There is also another, &lt;br /&gt;
  per-instance, read-write directory that you can use to save data for &lt;br /&gt;
  later analysis (e.g. redirect olsrd stdout to a file and print some &lt;br /&gt;
  debugging info there). This second directory will be under &lt;br /&gt;
  $HOME/public_uml/exp/&amp;lt;UML IP&amp;gt; (where UML IP is the ip address of each &lt;br /&gt;
  UML instance). It will also appear as /mnt/exp inside UML's environment.&lt;br /&gt;
&lt;br /&gt;
# put your special rcS file into $HOME/public_uml/share/etc/init.d/ . This rcS file will be called from the UML instances /etc/init.d/rcS startup script. Starting olsrd etc must be done from this user supplied rcS. In case there is no user supplied rcS, then the standard olsrd with the standard settings of the root_fs (/etc/olsrd.conf) us started.&lt;br /&gt;
&lt;br /&gt;
# make&lt;br /&gt;
&lt;br /&gt;
This will start the simulation.&lt;br /&gt;
&lt;br /&gt;
  N.B. When the simulation is started, an olsrd instance is started on &lt;br /&gt;
  the host as well. You can use it if you need to interact with the &lt;br /&gt;
  olsrd network - for instance, topology maps are generated through this&lt;br /&gt;
  instance (see below). &lt;br /&gt;
&lt;br /&gt;
# Issuing commands inside UML manually - the 'make' command creates a screen session for every UML process it creates, and redirects its input and output there. You can use screen to attach to a particular session. Use&lt;br /&gt;
  screen -ls              (as root)&lt;br /&gt;
to list all available sessions, and&lt;br /&gt;
  screen -S blabla.10.0.x.y -d -RR&lt;br /&gt;
to attach to a session. This will give you shell access to the system.&lt;br /&gt;
&lt;br /&gt;
  N.B. All modifications to the root filesystem will be preserved only &lt;br /&gt;
  for the duration of the simulation! Once it is stopped, changes will &lt;br /&gt;
  be lost!&lt;br /&gt;
&lt;br /&gt;
# observe the success on http://texas.funkfeuer.at or create a new topo map via ( cd /var/www/topo; ./doit.sh ). If you see a [http://en.wikipedia.org/wiki/Complete_graph complete graph], then your version has little packetloss!&lt;br /&gt;
&lt;br /&gt;
# stop it via &lt;br /&gt;
  make clean &lt;br /&gt;
or &lt;br /&gt;
  make stop&lt;br /&gt;
&lt;br /&gt;
Please make sure (by looking at http://texas.funkfeuer.at) if you are the only person running a simulation at the moment!&lt;br /&gt;
&lt;br /&gt;
'''Some things to note'''&lt;br /&gt;
&lt;br /&gt;
* the topology visualisation scripts run with nice level +5&lt;br /&gt;
the UML instances with nicelevel +10 (see run.sh)&lt;br /&gt;
-&amp;gt; Never ever go higher than nicelevel 0 because then you will disturb the system monitoring (munin) tools and we will not be able to see what the seimulation is doing.&lt;br /&gt;
*&lt;br /&gt;
&lt;br /&gt;
=== Open questions/bug reports? ===&lt;br /&gt;
&lt;br /&gt;
= Who wants to contribute? =&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;80%&amp;quot; class=&amp;quot;events&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!align=&amp;quot;left&amp;quot; | Who is willing to work on something&lt;br /&gt;
!align=&amp;quot;left&amp;quot; | Contact info&lt;br /&gt;
|-&lt;br /&gt;
| Aaron Kaplan&lt;br /&gt;
| mailto:aaron@lo-res.org&lt;br /&gt;
|-&lt;br /&gt;
| Roman Steiner&lt;br /&gt;
| mailto:roman.steiner@gmx.at&lt;br /&gt;
|-&lt;br /&gt;
| Bernd Petrovitsch&lt;br /&gt;
| mailto:bernd@firmix.at&lt;br /&gt;
|-&lt;br /&gt;
| Andrej Rursev (zethix)&lt;br /&gt;
| mailto:zethix@gmail.com&lt;br /&gt;
|-&lt;br /&gt;
| Hannes Gredler&lt;br /&gt;
| mailto:hannes@gredler.at&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Who is working on what? =&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;80%&amp;quot; class=&amp;quot;events&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!align=&amp;quot;left&amp;quot;  | Who&lt;br /&gt;
!align=&amp;quot;left&amp;quot; | What&lt;br /&gt;
!align=&amp;quot;left&amp;quot; | Status&lt;br /&gt;
!align=&amp;quot;left&amp;quot; | Comments&lt;br /&gt;
|-  class=&amp;quot;oeffentlich&amp;quot;&lt;br /&gt;
| Bernd Petrovitsch, Thomas Lopatic, Hannes Gredler&lt;br /&gt;
| release 0.5&lt;br /&gt;
| DONE&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| ???&lt;br /&gt;
| release 0.5 make packages for  freifunk FW, DD-WRT, etc, windows (XP, Vista), ... and test them&lt;br /&gt;
| OPEN&lt;br /&gt;
| freifunk FW is done by Sven-Ola Tücke, .rpm and .deb by various people on olsr-dev@lists.olsr.org, Windows: ???&lt;br /&gt;
|-&lt;br /&gt;
| Aaron&lt;br /&gt;
| analyze IP autoconfig mechanisms and find the best one&lt;br /&gt;
| OPEN&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Hannes Gredler&lt;br /&gt;
| tcpdump parses olsr packets, &lt;br /&gt;
| DONE&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Hannes Gredler&lt;br /&gt;
| SPF improvements&lt;br /&gt;
| DONE&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Hannes Gredler&lt;br /&gt;
| reduce malloc thrashing during SPF computation&lt;br /&gt;
| DONE&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Hannes Gredler&lt;br /&gt;
| improve post-SPF handling (route table conciliation, best path selection)&lt;br /&gt;
| DONE&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Bernd Petrovitsch&lt;br /&gt;
| rework the logging/tracing/error reporting&lt;br /&gt;
| WIP&lt;br /&gt;
|&lt;br /&gt;
|-|-&lt;br /&gt;
| Bernd Petrovitsch&lt;br /&gt;
| rework the LQ-TC and LQ-HELLO input parsing, avoiding malloc thrashing&lt;br /&gt;
| DONE&lt;br /&gt;
| The output side can also be avoid malloc() and free(). Alas, the code is more complicated there.&lt;br /&gt;
|-&lt;br /&gt;
| Hannes Gredler&lt;br /&gt;
| spurious neighbor loss on nodes with high neighbor count&lt;br /&gt;
| OPEN/investigating&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Aaron Kaplan,Bernd Petrovitsch&lt;br /&gt;
| olsr-ng test server&lt;br /&gt;
| DONE&lt;br /&gt;
| Well, the thing doesn't boot ATM. God knows why ....&lt;br /&gt;
|-&lt;br /&gt;
| Aaron Kaplan&lt;br /&gt;
| theory, complexity analysis. Goal: find the best complexity on the algorithmic side.&lt;br /&gt;
| DONE&lt;br /&gt;
| theory tells that fibonacci heaps are best, practise tells that an AVL tree as a minheap implementation fits the complexity of frequent re-keyings better&lt;br /&gt;
|-&lt;br /&gt;
| Zethix, Aaron Kaplan&lt;br /&gt;
| UML cluster setup&lt;br /&gt;
| WIP, currently we can start around 2000 UML instances. But the uml_switch software still drops packets between virtual interfaces. http://www.openvz.org seems also like a promising solution&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Aaron Kaplan, Hannes&lt;br /&gt;
| draft. write a draft about LQ extensions&lt;br /&gt;
| OPEN&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Bernd Petrovitsch&lt;br /&gt;
| Variuos '''Cleanup''' Mini- Projects&lt;br /&gt;
| DONE/WIP&lt;br /&gt;
| reworked floating point ops in src/mantissa.[ch] to minimize run-time impact, fixed dependencies, &lt;br /&gt;
|-&lt;br /&gt;
| Sebastian Sauer&lt;br /&gt;
| LinkQuality / metrics (e.g. ETX) improvements&lt;br /&gt;
| OPEN/WIP (no code yet committed)&lt;br /&gt;
| evaluate best current practice; &lt;br /&gt;
|-&lt;br /&gt;
| Sebastian Sauer&lt;br /&gt;
| FishEye improvements&lt;br /&gt;
| OPEN/investigating&lt;br /&gt;
| evaluate best current practice;&lt;br /&gt;
|-&lt;br /&gt;
| Sebastian Sauer&lt;br /&gt;
| effect of OLSR parameters on the mesh&lt;br /&gt;
| OPEN/investigating&lt;br /&gt;
| evaluate best current practice; spot and (maybe) eliminate dangers/instabilities&lt;br /&gt;
|-&lt;br /&gt;
| Sebastian Sauer&lt;br /&gt;
| selfish nodes / malicious nodes&lt;br /&gt;
| OPEN/investigating&lt;br /&gt;
| risk assessments&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;mm&amp;gt;[[olsr-ng.mm|flash]]&amp;lt;/mm&amp;gt;&lt;br /&gt;
&lt;br /&gt;
contact mailto:aaron@lo-res.org  or Bernd if you are interested in participating!&lt;br /&gt;
&lt;br /&gt;
= Next Steps =&lt;br /&gt;
&lt;br /&gt;
* TU Wien lecture [http://tuwis.tuwien.ac.at/lva/tuwien/384090 &amp;quot;Verteilte systeme&amp;quot;], 20.4.2007 will present our ideas about optimizing complexity. Aaron also wants to adress more students from the TU to participate. DONE. Let's see if new participants want to join.&lt;br /&gt;
* finalize the UML test server&lt;br /&gt;
* try out the optimization ideas and document the speedup&lt;br /&gt;
* more cleanups&lt;br /&gt;
** olsrd is doing '''lots of''' &amp;lt;tt&amp;gt;malloc()&amp;lt;/tt&amp;gt;s and &amp;lt;tt&amp;gt;free()&amp;lt;/tt&amp;gt;s - use &amp;lt;tt&amp;gt;ltrace&amp;lt;/tt&amp;gt; to see this.&lt;br /&gt;
*** review &amp;lt;tt&amp;gt;malloc()&amp;lt;/tt&amp;gt;/&amp;lt;tt&amp;gt;free()&amp;lt;/tt&amp;gt; if it theys are superflous and can be implemented with buffers on the stack or just moving pointers around.&lt;br /&gt;
*** are there very frequently &amp;lt;tt&amp;gt;malloc()&amp;lt;/tt&amp;gt;ed and &amp;lt;tt&amp;gt;free()&amp;lt;/tt&amp;gt;d ''struct''? Perhaps a free list can help to avoid lots of &amp;lt;tt&amp;gt;malloc()&amp;lt;/tt&amp;gt;/&amp;lt;tt&amp;gt;free()&amp;lt;/tt&amp;gt; handling.&lt;br /&gt;
** we have several coding styles in there&lt;br /&gt;
** add wrappers to hide type casts for Windows (and perhaps others). Reserve some prefix (e.g. ''x'' is used for this often as in &amp;lt;tt&amp;gt;xmalloc()&amp;lt;/tt&amp;gt;, ''olsr_'' is IMHO quite long and there too many ''olsr_'' perfixed types and functions right now.)&lt;br /&gt;
** fixup error reporting/tracing/logging&lt;br /&gt;
** add synchronization and make the daemon multi-threading (e.g. the bmf plugin uses it right now, the httpinfo plugin could benefit from such a thing)&lt;br /&gt;
** make the parameter parsing of the plugins more consistent (some are case-sensitive, some are not, most do not check syntax errors). ''Work in progress''&lt;br /&gt;
** The incoming and outgoing packets are deserialized and serialized via pointers to packed ''struct''s. This is somewhat dangerous as other compilers or the same compielr for other architectures may or may not behave the same. And - '''worse''' - it misleads people to copy the same data various times around or play with pointers so no one can easily see ehat'e going on. I (Bernd) started with a more direct approach in src/lq_packet.c where we have one &amp;quot;unsigned char *&amp;quot; which walks sequentially through the incoming packet and gets the value with small inline functions into where one needs it later on - mostly some simple ''struct'' which is a normal C struct and used by the core code.&lt;br /&gt;
** '''net_outbuffer_push()'' memcpy()es the packet from the caller supplied buffer into another buffer. Well, that's one more copy operation for every outgoinf packet.&lt;br /&gt;
** ....&lt;br /&gt;
&lt;br /&gt;
= Bounties =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
please take a look at the slides and get in contact with us directly at the moment!&lt;br /&gt;
&lt;br /&gt;
= Source code =&lt;br /&gt;
* CVS repos:  &lt;br /&gt;
  (as user &amp;quot;ipo23&amp;quot; ) &lt;br /&gt;
     export CVS_RSH=ssh&lt;br /&gt;
     cvs -z3 -d:ext:ipo23@olsrd.cvs.sourceforge.net:/cvsroot/olsrd co -P olsrd-current&lt;br /&gt;
  as anonymous user) &lt;br /&gt;
      cvs -d:pserver:anonymous@olsrd.cvs.sourceforge.net:/cvsroot/olsrd login &lt;br /&gt;
      cvs -z3 -d:pserver:anonymous@olsrd.cvs.sourceforge.net:/cvsroot/olsrd co -P olsrd-current&lt;br /&gt;
&lt;br /&gt;
= Theory section =&lt;br /&gt;
&lt;br /&gt;
== data structures ==&lt;br /&gt;
* [[Wikipedia:Heap (data_structure)|Heap]] ... We need good heaps/priority queues for A*-Search / Dijkstra&lt;br /&gt;
* especially the [[Wikipedia:Fibonacci_heap|Fibonacci Heap]] has a to my knowledge the very best asymptotic complexity of O(1) almost everywhere.&lt;br /&gt;
'''However, practice shows that'''...&lt;br /&gt;
Currently as of 0.51pre we use a AVL tree which has complexity O(log(n)). Hannes tested the fibheap package from gcc and found out that in our networks (~ 200 nodes) the AVL tree heap implementation still beats the fibonacci heap by 60%. &lt;br /&gt;
&lt;br /&gt;
fibonacci heap:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
--- SPF-stats for 203 nodes, 335 routes (total/init/run/route/kern/cleanup):,, 237, &lt;br /&gt;
--- SPF-stats for 203 nodes, 337 routes (total/init/run/route/kern/cleanup):,, 238,&lt;br /&gt;
--- SPF-stats for 203 nodes, 337 routes (total/init/run/route/kern/cleanup):,, 238,&lt;br /&gt;
--- SPF-stats for 203 nodes, 339 routes (total/init/run/route/kern/cleanup):,, 239, &lt;br /&gt;
--- SPF-stats for 203 nodes, 339 routes (total/init/run/route/kern/cleanup):,, 238, &lt;br /&gt;
--- SPF-stats for 203 nodes, 341 routes (total/init/run/route/kern/cleanup):,, 240,&lt;br /&gt;
--- SPF-stats for 203 nodes, 341 routes (total/init/run/route/kern/cleanup):,, 236, &lt;br /&gt;
--- SPF-stats for 203 nodes, 341 routes (total/init/run/route/kern/cleanup):,, 238, &lt;br /&gt;
--- SPF-stats for 203 nodes, 341 routes (total/init/run/route/kern/cleanup):,, 238, &lt;br /&gt;
--- SPF-stats for 203 nodes, 345 routes (total/init/run/route/kern/cleanup):,, 239, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 238, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 238, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 238,&lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 238, &lt;br /&gt;
--- SPF-stats for 203 nodes, 347 routes (total/init/run/route/kern/cleanup):,, 238, &lt;br /&gt;
                                                                                                                                         &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
AVL heap:&lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 143,&lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 142, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 142, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 144, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 145, &lt;br /&gt;
--- SPF-stats for 203 nodes, 347 routes (total/init/run/route/kern/cleanup):,, 145, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 142, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 142, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 144, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 145, &lt;br /&gt;
--- SPF-stats for 203 nodes, 347 routes (total/init/run/route/kern/cleanup):,, 145, &lt;br /&gt;
--- SPF-stats for 202 nodes, 347 routes (total/init/run/route/kern/cleanup):,, 145, &lt;br /&gt;
--- SPF-stats for 202 nodes, 347 routes (total/init/run/route/kern/cleanup):,, 142, &lt;br /&gt;
--- SPF-stats for 202 nodes, 347 routes (total/init/run/route/kern/cleanup):,, 146, &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following complexities&amp;lt;ref&amp;gt;&lt;br /&gt;
Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest (1990): Introduction to algorithms.&lt;br /&gt;
MIT Press / McGraw-Hill.&lt;br /&gt;
&amp;lt;/ref&amp;gt; are worst-case for binary and binomial heaps and [[Wikipedia:Amortized analysis|amortized complexity]] for Fibonacci heap. O(f) gives asymptotic upper bound and Θ(f) is asymptotically tight bound (see [[Wikipedia:Big O notation]]). Function names assume a min-heap.&lt;br /&gt;
&lt;br /&gt;
{|  class=&amp;quot;toccolours&amp;quot; border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; style=&amp;quot;border-collapse:collapse&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background-color:#e9e9e9&amp;quot; |&lt;br /&gt;
! Operation &lt;br /&gt;
! [[Wikipedia:Binary heap|Binary]]&lt;br /&gt;
! [[Wikipedia:Binomial heap|Binomial]] &lt;br /&gt;
! [[Wikipedia:Fibonacci heap|Fibonacci]]&lt;br /&gt;
|-&lt;br /&gt;
| createHeap&lt;br /&gt;
|| Θ(1)&lt;br /&gt;
|| Θ(1)&lt;br /&gt;
|| Θ(1)&lt;br /&gt;
|-&lt;br /&gt;
| findMin &lt;br /&gt;
|| Θ(1)&lt;br /&gt;
|| O(lg ''n'') or Θ(1)&lt;br /&gt;
|| Θ(1)&lt;br /&gt;
|-&lt;br /&gt;
| deleteMin &lt;br /&gt;
|| Θ(lg ''n'')&lt;br /&gt;
|| Θ(lg ''n'')&lt;br /&gt;
|| O(lg ''n'')&lt;br /&gt;
|-&lt;br /&gt;
| insert &lt;br /&gt;
|| Θ(lg ''n'')&lt;br /&gt;
|| O(lg ''n'')&lt;br /&gt;
|| Θ(1)&lt;br /&gt;
|-&lt;br /&gt;
| decreaseKey &lt;br /&gt;
|| Θ(lg ''n'')&lt;br /&gt;
|| Θ(lg ''n'')&lt;br /&gt;
|| Θ(1)&lt;br /&gt;
|-&lt;br /&gt;
| merge&lt;br /&gt;
|| Θ(''n'')&lt;br /&gt;
|| O(lg ''n'')&lt;br /&gt;
|| Θ(1)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== other interesting data structures not directly related ==&lt;br /&gt;
* [[Wikipedia:Data_Structures]] general overview. Good entry point for trees: [[Wikipedia:Binary_tree]]&lt;br /&gt;
* [http://www.nist.gov/dads/ NIST Directory of Data Structures] has a very extensive overview&lt;br /&gt;
* [http://www.google.com/search?client=safari&amp;amp;rls=en&amp;amp;q=Optimal+Worst-Case+Operations+for+Implicit+Cache-Oblivious+Search+Trees&amp;amp;ie=UTF-8&amp;amp;oe=UTF-8 succinct datastructures (trees)]&lt;br /&gt;
* [http://blogs.msdn.com/devdev/archive/2005/12/05/500171.aspx succinct datastructures overview]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Trie Tries]&lt;br /&gt;
* [http://www-users.cs.umn.edu/~saad/PS/iter1.pdf sparse matrices]&lt;br /&gt;
* look at [http://users.footprints.net/~kaz/kazlib.html kazlib] from IS-IS ??&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Wikibooks:Data Structures/Min and Max Heaps|Heaps at wikibooks]]&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Links =&lt;br /&gt;
== Papers, Theory ==&lt;br /&gt;
* [http://ietfreport.isoc.org/idref/rfc3626/ RFC-3626]: the &amp;quot;OLSR RFC&amp;quot;&lt;br /&gt;
* [http://www.lix.polytechnique.fr/hipercom/index.php?option=com_content&amp;amp;task=view&amp;amp;id=152&amp;amp;Itemid=1 Workshop at Hipercom Oct 2006]&lt;br /&gt;
* [http://www.lix.polytechnique.fr/hipercom/index.php?option=com_content&amp;amp;task=view&amp;amp;id=60&amp;amp;Itemid=50 OLSR-v2 Draft 01 at hipercom]&lt;br /&gt;
** http://www.ietf.org/internet-drafts/draft-ietf-manet-olsrv2-02.txt&lt;br /&gt;
** http://www.ietf.org/internet-drafts/draft-ietf-manet-packetbb-02.txt&lt;br /&gt;
** http://olsrv2.online.fr/blog/ OLSRv2 Development Blog&lt;br /&gt;
* http://www.adhocsys.org/&lt;br /&gt;
   AdHocSys is a two-year European project to provide reliable broadband services in rural and mountain regions. This objective&lt;br /&gt;
   will be achieved by means of the creation of a wireless ad hoc broadband network, with special enhancements to reliability&lt;br /&gt;
   and availability. The network consists of one or several gateways connecting to the global Internet and several intermediate&lt;br /&gt;
   nodes which provide multihop connections between the gateways and end users.&lt;br /&gt;
* [http://folk.uio.no/kenneho/index.php?page=studies&amp;amp;subpage=wospf WOSPF-OR] Uni Oslo Wireless OSPF with Overlapping Relays&lt;br /&gt;
* [http://hipserver.mct.phantomworks.org/ietf/ospf/ W-OSPF] INRA/Boing Wireless OSPF&lt;br /&gt;
&lt;br /&gt;
== misc ==&lt;br /&gt;
* Homepage: http://www.olsr.org/&lt;br /&gt;
* NATO C3 Agency (NC3A) Radio Protocols Lab https://elayne.nc3a.nato.int/&lt;br /&gt;
* commercial INRIA HIPERCOM spin-off http://www.luceor.com/&lt;br /&gt;
* commercial MIT Roofnet spin-off http://www.meraki.net/&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR-NG</id>
		<title>OLSR-NG</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR-NG"/>
				<updated>2007-11-05T13:45:38Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Who is working on what? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;google&amp;gt;OLSR&amp;lt;/google&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=  NEWS =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;We have released our first set of improvements to the olsrd SPF calculation module.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== SPF implementation ==&lt;br /&gt;
When executing the [http://en.wikipedia.org/wiki/Dijkstra%27s_algorithm SPF calculation]&lt;br /&gt;
upon every iteration the least cost path needs to be extracted and put on the result list.&lt;br /&gt;
For that purpose olsrd-current does keep a linear list which has O(N) [http://en.wikipedia.org/wiki/Asymptotic_complexity asymptotic_complexity] to traverse.&lt;br /&gt;
Every node needs to be visited, which&lt;br /&gt;
has again O(N) [http://en.wikipedia.org/wiki/Asymptotic_complexity asymptotic_complexity]. This results in a total behavior of O(N^2) which can eat a lot&lt;br /&gt;
of CPU where N is large (for example when there are hundreds of olsrd nodes in a network).&lt;br /&gt;
&lt;br /&gt;
== speed by efficient sorting ==&lt;br /&gt;
modern SPF implementations use data structures which are efficient at sorting the preliminary path costs like&lt;br /&gt;
[http://en.wikipedia.org/wiki/Min_heap min_heaps] or [http://en.wikipedia.org/wiki/AVL_tree AVL_trees]. Since olsrd already&lt;br /&gt;
had a nice and efficient AVL tree implementation, the two SPF related data structures (the candidate and path tree) are implemented using&lt;br /&gt;
AVL trees with the path etx metric as the key. Determining the minimal path cost in an AVL tree comes at a cost of O(log(N)) which results&lt;br /&gt;
in a total [http://en.wikipedia.org/wiki/Asymptotic_complexity asymptotic_complexity] of O(N * log(N)), which scales much nicer now in large networks.&lt;br /&gt;
&lt;br /&gt;
== Results ==&lt;br /&gt;
In the [http://www.funkfeuer.at funkfeuer.at] network topology of 190 nodes the raw SPF execution was reduced by 45%. Note that the raw SPF execution represents only about 20% of the CPU cost in a running olsrd. At funkfeuer.at we have observed an overall decrease in the CPU load of about 12% on the embedded routers.&lt;br /&gt;
&lt;br /&gt;
== Outlook ==&lt;br /&gt;
10-20% (depending on network size) in the route-handling module is admittedly not exciting. During refactoring the SPF implementation the olsrd-ng development team, has spotted further bottlenecks in the existing implementation. We are tackling this one by one, and would need active participation of the wireless communities to test our improvements and verify if we have added any undesired regressions. so stay tuned and report bugs to the [mailto:olsr-dev@lists.olsr.org olsrd-dev] mailing list.&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
please check out the [http://tema.lo-res.org/~aaron/spf-refactoring.diff.gz patch]&lt;br /&gt;
&lt;br /&gt;
= sponsor =&lt;br /&gt;
&lt;br /&gt;
[[Bild:netideelogo.png|200px|supported by IPA]] made possible by a grant from [http://www.netidee.at IPA].  Thanks we really appreciate your help and your courage to support us!&lt;br /&gt;
&lt;br /&gt;
= main links =&lt;br /&gt;
&lt;br /&gt;
Main OLSR-NG project blog: http://olsr.funkfeuer.at&lt;br /&gt;
&lt;br /&gt;
Slides from the OLSR-NG kickoff presentation: http://outpost.funkfeuer.at/~aaron/olsr-ng.pdf&lt;br /&gt;
&lt;br /&gt;
We communicate on the olsr-dev mailinglist: https://www.olsr.org/mailman/listinfo/olsr-dev . All commit messages can be seen on the olsr-cvs list&lt;br /&gt;
&lt;br /&gt;
= Goals =&lt;br /&gt;
&lt;br /&gt;
# Clean up the code of OLSR (http://www.olsr.org), &lt;br /&gt;
# improve the algorithms of OLSR and make it more scalable.&lt;br /&gt;
# Furthermore, produce a new RFC for a (potential) new mesh routing protocol which is based on the experiences of OLSR coding (at the moment the most promising candidate for this RFC is [http://open-mesh.net/batman B.A.T.M.A.N])&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OLSR-NG is a open source project. Meaning everybody is invited to join in and help. &lt;br /&gt;
We do have some bounties for the best solutions. If you want to participate, drop us an email: mailto:aaron@lo-res.org and mailto:bernd@firmix.at&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
One of the main goals is to make OLSR more scalable '''in practice'''.&lt;br /&gt;
[[Bild:O-Dijkstra.gif|350px|right|Complexity for n=1000 nodes of different data structures in the Dijkstra shortest path (SPF) algorithm. ]]&lt;br /&gt;
&lt;br /&gt;
In the this picture you can see the different complexity graphs for the SPF under the assumption that every node has 10 edges . As you can see, the red line has O(n^2) complexity. This conforms to the current implementation of OLSR from www.olsr.org. OLSR-NG plans to reduce the complexity to the green or even the yellow level. This will allow the mesh network clouds to become larger by a factor ~ 1000 (on the routing layer / layer 3).&lt;br /&gt;
&lt;br /&gt;
= Current Status =&lt;br /&gt;
&lt;br /&gt;
* olsrd 0.5.4 was released! Thx everybody a lot! Big credits go out to Hannes and Bernd.&lt;br /&gt;
* UML test server is being worked on. This will allow the B.A.T.M.A.N team to test their protocol and us to test our scalability ideas with 1000nd of olsr instances.&lt;br /&gt;
* Ongoing code cleanups&lt;br /&gt;
&lt;br /&gt;
== [http://www.user-mode-linux.org UML] test server ==&lt;br /&gt;
&lt;br /&gt;
current load and statistics: http://texas.funkfeuer.at&lt;br /&gt;
&lt;br /&gt;
[[Bild:Texas.funkfeuer.at.png|right|300px|our UML server]]&lt;br /&gt;
&lt;br /&gt;
[[Bild:Topology-1-small.png|center|600px|topo map 1500 UML instances running in parallel. Note the packetloss!]]&lt;br /&gt;
(check out the [[TopologyPics archive]] also)&lt;br /&gt;
&lt;br /&gt;
topo map 1500 UML instances running in parallel. Note the packetloss! &lt;br /&gt;
&lt;br /&gt;
We have already been running 2000 instances and there was still  plenty of RAM left. So 1000 is a very safe bet. However according to the UML docu we can probably safely assume that we can scale up miuch higher because UML will only take the RAM that each instance actually needs. &lt;br /&gt;
UML actually has other shortcomings: high CPU overhead, lots of context swiches. Trying to increase the performance at the moment...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== current open todos UML server ===&lt;br /&gt;
Next important (*) things to do:&lt;br /&gt;
* DONE(aka) update texas's BIOS - FIXED &lt;br /&gt;
* add the packet loss tc rules (zethix already prepared it)&lt;br /&gt;
* create random netowkrs (easy)&lt;br /&gt;
* create network topologies based on a power law distribution ( a bit harder, but realistic for the internet)&lt;br /&gt;
* DONE(zethix) create scripts to find out which olsrd instances crashed&lt;br /&gt;
* create scripts to find out if a UML instance is not responsive anymore&lt;br /&gt;
* find better measurement tools . Look into sar&lt;br /&gt;
* DONE(aka) recompile host kernel and get rid of the &amp;quot;BUG: soft lockup detected on CPU#0!&amp;quot; messages&lt;br /&gt;
* DONE(aka) recompile host kernel and enable the preemtion patch&lt;br /&gt;
* DONE(zethix,aka) make hostfs so that developers can easily upload a new olsrd version to all uml instances. They should see the difference easily. Look into hostfs&lt;br /&gt;
* DONE(ake) increase performance of the UML simulator itself (decrease HZ, look into SKAS3 patch again, 32 bit recompile, talk with jeff etc)&lt;br /&gt;
* find more meaningful topology visualization tools (http://www.caida.org)&lt;br /&gt;
* add b.a.t.m.a.n to the root filesystem. (?)&lt;br /&gt;
* compare the scheduling / scalability of the test with [http://openvz.org/ OpenVZ] and [http://www.olsr.org/docs/README-Olsr-Switch.html olsr_switch]&lt;br /&gt;
&lt;br /&gt;
=== User HOWTO ===&lt;br /&gt;
&lt;br /&gt;
  NOTE! You are root on the system. Effectively we need lots of sudo privs. So... use it wisely.&lt;br /&gt;
&lt;br /&gt;
# log in&lt;br /&gt;
# make clean&lt;br /&gt;
# edit common.sh and adapt the parameters to your needs&lt;br /&gt;
  #!/bin/sh&lt;br /&gt;
  #&lt;br /&gt;
  # VARS&lt;br /&gt;
  #&lt;br /&gt;
  MAX_INSTANCES=1500&lt;br /&gt;
  ROOT_FS=root_fs&lt;br /&gt;
  NICELVL=&amp;quot;-n 5&amp;quot;&lt;br /&gt;
  u=$USER&lt;br /&gt;
  #SINGLE=1&lt;br /&gt;
We supply you with a good working root filesystem (root_fs) so no need to change that. The SINGLE  parameter just says that you want to start a single instance and be logged in (needed for debugging purposes)&lt;br /&gt;
# the UML instance can read files and programs from &lt;br /&gt;
  $HOME/public_uml/share&lt;br /&gt;
This is where you can put your programs or your version of olsrd (and its libs) or the B.A.T.M.A.N. binaries.&lt;br /&gt;
&lt;br /&gt;
  N.B. This directory is shared between all UML instances that you will &lt;br /&gt;
  start in your simulation, so, they all have read-only access to it. &lt;br /&gt;
  It will appear inside each UML as /mnt/share/. There is also another, &lt;br /&gt;
  per-instance, read-write directory that you can use to save data for &lt;br /&gt;
  later analysis (e.g. redirect olsrd stdout to a file and print some &lt;br /&gt;
  debugging info there). This second directory will be under &lt;br /&gt;
  $HOME/public_uml/exp/&amp;lt;UML IP&amp;gt; (where UML IP is the ip address of each &lt;br /&gt;
  UML instance). It will also appear as /mnt/exp inside UML's environment.&lt;br /&gt;
&lt;br /&gt;
# put your special rcS file into $HOME/public_uml/share/etc/init.d/ . This rcS file will be called from the UML instances /etc/init.d/rcS startup script. Starting olsrd etc must be done from this user supplied rcS. In case there is no user supplied rcS, then the standard olsrd with the standard settings of the root_fs (/etc/olsrd.conf) us started.&lt;br /&gt;
&lt;br /&gt;
# make&lt;br /&gt;
&lt;br /&gt;
This will start the simulation.&lt;br /&gt;
&lt;br /&gt;
  N.B. When the simulation is started, an olsrd instance is started on &lt;br /&gt;
  the host as well. You can use it if you need to interact with the &lt;br /&gt;
  olsrd network - for instance, topology maps are generated through this&lt;br /&gt;
  instance (see below). &lt;br /&gt;
&lt;br /&gt;
# Issuing commands inside UML manually - the 'make' command creates a screen session for every UML process it creates, and redirects its input and output there. You can use screen to attach to a particular session. Use&lt;br /&gt;
  screen -ls              (as root)&lt;br /&gt;
to list all available sessions, and&lt;br /&gt;
  screen -S blabla.10.0.x.y -d -RR&lt;br /&gt;
to attach to a session. This will give you shell access to the system.&lt;br /&gt;
&lt;br /&gt;
  N.B. All modifications to the root filesystem will be preserved only &lt;br /&gt;
  for the duration of the simulation! Once it is stopped, changes will &lt;br /&gt;
  be lost!&lt;br /&gt;
&lt;br /&gt;
# observe the success on http://texas.funkfeuer.at or create a new topo map via ( cd /var/www/topo; ./doit.sh ). If you see a [http://en.wikipedia.org/wiki/Complete_graph complete graph], then your version has little packetloss!&lt;br /&gt;
&lt;br /&gt;
# stop it via &lt;br /&gt;
  make clean &lt;br /&gt;
or &lt;br /&gt;
  make stop&lt;br /&gt;
&lt;br /&gt;
Please make sure (by looking at http://texas.funkfeuer.at) if you are the only person running a simulation at the moment!&lt;br /&gt;
&lt;br /&gt;
'''Some things to note'''&lt;br /&gt;
&lt;br /&gt;
* the topology visualisation scripts run with nice level +5&lt;br /&gt;
the UML instances with nicelevel +10 (see run.sh)&lt;br /&gt;
-&amp;gt; Never ever go higher than nicelevel 0 because then you will disturb the system monitoring (munin) tools and we will not be able to see what the seimulation is doing.&lt;br /&gt;
*&lt;br /&gt;
&lt;br /&gt;
=== Open questions/bug reports? ===&lt;br /&gt;
&lt;br /&gt;
= Who wants to contribute? =&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;80%&amp;quot; class=&amp;quot;events&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!align=&amp;quot;left&amp;quot; | Who is willing to work on something&lt;br /&gt;
!align=&amp;quot;left&amp;quot; | Contact info&lt;br /&gt;
|-&lt;br /&gt;
| Aaron Kaplan&lt;br /&gt;
| mailto:aaron@lo-res.org&lt;br /&gt;
|-&lt;br /&gt;
| Roman Steiner&lt;br /&gt;
| mailto:roman.steiner@gmx.at&lt;br /&gt;
|-&lt;br /&gt;
| Bernd Petrovitsch&lt;br /&gt;
| mailto:bernd@firmix.at&lt;br /&gt;
|-&lt;br /&gt;
| Andrej Rursev (zethix)&lt;br /&gt;
| mailto:zethix@gmail.com&lt;br /&gt;
|-&lt;br /&gt;
| Hannes Gredler&lt;br /&gt;
| mailto:hannes@gredler.at&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Who is working on what? =&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;80%&amp;quot; class=&amp;quot;events&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!align=&amp;quot;left&amp;quot;  | Who&lt;br /&gt;
!align=&amp;quot;left&amp;quot; | What&lt;br /&gt;
!align=&amp;quot;left&amp;quot; | Status&lt;br /&gt;
!align=&amp;quot;left&amp;quot; | Comments&lt;br /&gt;
|-  class=&amp;quot;oeffentlich&amp;quot;&lt;br /&gt;
| Bernd Petrovitsch, Thomas Lopatic, Hannes Gredler&lt;br /&gt;
| release 0.5&lt;br /&gt;
| DONE&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| ???&lt;br /&gt;
| release 0.5 make packages for  freifunk FW, DD-WRT, etc, windows (XP, Vista), ... and test them&lt;br /&gt;
| OPEN&lt;br /&gt;
| freifunk FW is done by Sven-Ola Tücke, .rpm and .deb by various people on olsr-dev@lists.olsr.org, Windows: ???&lt;br /&gt;
|-&lt;br /&gt;
| Aaron&lt;br /&gt;
| analyze IP autoconfig mechanisms and find the best one&lt;br /&gt;
| OPEN&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Hannes Gredler&lt;br /&gt;
| tcpdump parses olsr packets, &lt;br /&gt;
| DONE&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Hannes Gredler&lt;br /&gt;
| SPF improvements&lt;br /&gt;
| DONE&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Hannes Gredler&lt;br /&gt;
| reduce malloc thrashing during SPF computation&lt;br /&gt;
| DONE&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Hannes Gredler&lt;br /&gt;
| improve post-SPF handling (route table conciliation, best path selection)&lt;br /&gt;
| DONE&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Bernd Petrovitsch&lt;br /&gt;
| rework the logging/tracing/error reporting&lt;br /&gt;
| WIP&lt;br /&gt;
|&lt;br /&gt;
|-|-&lt;br /&gt;
| Bernd Petrovitsch&lt;br /&gt;
| rework the LQ-TC and LQ-HELLO input parsing, avoiding malloc thrashing&lt;br /&gt;
| DONE&lt;br /&gt;
| The output side can also be avoid malloc() and free(). Alas, the code is more complicated there.&lt;br /&gt;
|-&lt;br /&gt;
| Hannes Gredler&lt;br /&gt;
| spurious neighbor loss on nodes with high neighbor count&lt;br /&gt;
| OPEN/investigating&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Aaron Kaplan,Bernd Petrovitsch&lt;br /&gt;
| olsr-ng test server&lt;br /&gt;
| DONE&lt;br /&gt;
| Well, the thing doesn't boot ATM. God knows why ....&lt;br /&gt;
|-&lt;br /&gt;
| Aaron Kaplan&lt;br /&gt;
| theory, complexity analysis. Goal: find the best complexity on the algorithmic side.&lt;br /&gt;
| DONE&lt;br /&gt;
| theory tells that fibonacci heaps are best, practise tells that an AVL tree as a minheap implementation fits the complexity of frequent re-keyings better&lt;br /&gt;
|-&lt;br /&gt;
| Zethix, Aaron Kaplan&lt;br /&gt;
| UML cluster setup&lt;br /&gt;
| WIP, currently we can start around 2000 UML instances. But the uml_switch software still drops packets between virtual interfaces. http://www.openvz.org seems also like a promising solution&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Aaron Kaplan, Hannes&lt;br /&gt;
| draft. write a draft about LQ extensions&lt;br /&gt;
| OPEN&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Bernd Petrovitsch&lt;br /&gt;
| Variuos '''Cleanup''' Mini- Projects&lt;br /&gt;
| DONE/WIP&lt;br /&gt;
| reworked floating point ops in src/mantissa.[ch] to minimize run-time impact, fixed dependencies, &lt;br /&gt;
|-&lt;br /&gt;
| Sebastian Sauer&lt;br /&gt;
| LinkQuality / metrics (e.g. ETX) improvements&lt;br /&gt;
| OPEN/WIP (no code yet committed)&lt;br /&gt;
| evaluate best current practice; &lt;br /&gt;
|-&lt;br /&gt;
| Sebastian Sauer&lt;br /&gt;
| FishEye improvements&lt;br /&gt;
| OPEN/investigating&lt;br /&gt;
| evaluate best current practice;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;mm&amp;gt;[[olsr-ng.mm|flash]]&amp;lt;/mm&amp;gt;&lt;br /&gt;
&lt;br /&gt;
contact mailto:aaron@lo-res.org  or Bernd if you are interested in participating!&lt;br /&gt;
&lt;br /&gt;
= Next Steps =&lt;br /&gt;
&lt;br /&gt;
* TU Wien lecture [http://tuwis.tuwien.ac.at/lva/tuwien/384090 &amp;quot;Verteilte systeme&amp;quot;], 20.4.2007 will present our ideas about optimizing complexity. Aaron also wants to adress more students from the TU to participate. DONE. Let's see if new participants want to join.&lt;br /&gt;
* finalize the UML test server&lt;br /&gt;
* try out the optimization ideas and document the speedup&lt;br /&gt;
* more cleanups&lt;br /&gt;
** olsrd is doing '''lots of''' &amp;lt;tt&amp;gt;malloc()&amp;lt;/tt&amp;gt;s and &amp;lt;tt&amp;gt;free()&amp;lt;/tt&amp;gt;s - use &amp;lt;tt&amp;gt;ltrace&amp;lt;/tt&amp;gt; to see this.&lt;br /&gt;
*** review &amp;lt;tt&amp;gt;malloc()&amp;lt;/tt&amp;gt;/&amp;lt;tt&amp;gt;free()&amp;lt;/tt&amp;gt; if it theys are superflous and can be implemented with buffers on the stack or just moving pointers around.&lt;br /&gt;
*** are there very frequently &amp;lt;tt&amp;gt;malloc()&amp;lt;/tt&amp;gt;ed and &amp;lt;tt&amp;gt;free()&amp;lt;/tt&amp;gt;d ''struct''? Perhaps a free list can help to avoid lots of &amp;lt;tt&amp;gt;malloc()&amp;lt;/tt&amp;gt;/&amp;lt;tt&amp;gt;free()&amp;lt;/tt&amp;gt; handling.&lt;br /&gt;
** we have several coding styles in there&lt;br /&gt;
** add wrappers to hide type casts for Windows (and perhaps others). Reserve some prefix (e.g. ''x'' is used for this often as in &amp;lt;tt&amp;gt;xmalloc()&amp;lt;/tt&amp;gt;, ''olsr_'' is IMHO quite long and there too many ''olsr_'' perfixed types and functions right now.)&lt;br /&gt;
** fixup error reporting/tracing/logging&lt;br /&gt;
** add synchronization and make the daemon multi-threading (e.g. the bmf plugin uses it right now, the httpinfo plugin could benefit from such a thing)&lt;br /&gt;
** make the parameter parsing of the plugins more consistent (some are case-sensitive, some are not, most do not check syntax errors). ''Work in progress''&lt;br /&gt;
** The incoming and outgoing packets are deserialized and serialized via pointers to packed ''struct''s. This is somewhat dangerous as other compilers or the same compielr for other architectures may or may not behave the same. And - '''worse''' - it misleads people to copy the same data various times around or play with pointers so no one can easily see ehat'e going on. I (Bernd) started with a more direct approach in src/lq_packet.c where we have one &amp;quot;unsigned char *&amp;quot; which walks sequentially through the incoming packet and gets the value with small inline functions into where one needs it later on - mostly some simple ''struct'' which is a normal C struct and used by the core code.&lt;br /&gt;
** '''net_outbuffer_push()'' memcpy()es the packet from the caller supplied buffer into another buffer. Well, that's one more copy operation for every outgoinf packet.&lt;br /&gt;
** ....&lt;br /&gt;
&lt;br /&gt;
= Bounties =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
please take a look at the slides and get in contact with us directly at the moment!&lt;br /&gt;
&lt;br /&gt;
= Source code =&lt;br /&gt;
* CVS repos:  &lt;br /&gt;
  (as user &amp;quot;ipo23&amp;quot; ) &lt;br /&gt;
     export CVS_RSH=ssh&lt;br /&gt;
     cvs -z3 -d:ext:ipo23@olsrd.cvs.sourceforge.net:/cvsroot/olsrd co -P olsrd-current&lt;br /&gt;
  as anonymous user) &lt;br /&gt;
      cvs -d:pserver:anonymous@olsrd.cvs.sourceforge.net:/cvsroot/olsrd login &lt;br /&gt;
      cvs -z3 -d:pserver:anonymous@olsrd.cvs.sourceforge.net:/cvsroot/olsrd co -P olsrd-current&lt;br /&gt;
&lt;br /&gt;
= Theory section =&lt;br /&gt;
&lt;br /&gt;
== data structures ==&lt;br /&gt;
* [[Wikipedia:Heap (data_structure)|Heap]] ... We need good heaps/priority queues for A*-Search / Dijkstra&lt;br /&gt;
* especially the [[Wikipedia:Fibonacci_heap|Fibonacci Heap]] has a to my knowledge the very best asymptotic complexity of O(1) almost everywhere.&lt;br /&gt;
'''However, practice shows that'''...&lt;br /&gt;
Currently as of 0.51pre we use a AVL tree which has complexity O(log(n)). Hannes tested the fibheap package from gcc and found out that in our networks (~ 200 nodes) the AVL tree heap implementation still beats the fibonacci heap by 60%. &lt;br /&gt;
&lt;br /&gt;
fibonacci heap:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
--- SPF-stats for 203 nodes, 335 routes (total/init/run/route/kern/cleanup):,, 237, &lt;br /&gt;
--- SPF-stats for 203 nodes, 337 routes (total/init/run/route/kern/cleanup):,, 238,&lt;br /&gt;
--- SPF-stats for 203 nodes, 337 routes (total/init/run/route/kern/cleanup):,, 238,&lt;br /&gt;
--- SPF-stats for 203 nodes, 339 routes (total/init/run/route/kern/cleanup):,, 239, &lt;br /&gt;
--- SPF-stats for 203 nodes, 339 routes (total/init/run/route/kern/cleanup):,, 238, &lt;br /&gt;
--- SPF-stats for 203 nodes, 341 routes (total/init/run/route/kern/cleanup):,, 240,&lt;br /&gt;
--- SPF-stats for 203 nodes, 341 routes (total/init/run/route/kern/cleanup):,, 236, &lt;br /&gt;
--- SPF-stats for 203 nodes, 341 routes (total/init/run/route/kern/cleanup):,, 238, &lt;br /&gt;
--- SPF-stats for 203 nodes, 341 routes (total/init/run/route/kern/cleanup):,, 238, &lt;br /&gt;
--- SPF-stats for 203 nodes, 345 routes (total/init/run/route/kern/cleanup):,, 239, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 238, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 238, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 238,&lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 238, &lt;br /&gt;
--- SPF-stats for 203 nodes, 347 routes (total/init/run/route/kern/cleanup):,, 238, &lt;br /&gt;
                                                                                                                                         &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
AVL heap:&lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 143,&lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 142, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 142, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 144, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 145, &lt;br /&gt;
--- SPF-stats for 203 nodes, 347 routes (total/init/run/route/kern/cleanup):,, 145, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 142, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 142, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 144, &lt;br /&gt;
--- SPF-stats for 203 nodes, 346 routes (total/init/run/route/kern/cleanup):,, 145, &lt;br /&gt;
--- SPF-stats for 203 nodes, 347 routes (total/init/run/route/kern/cleanup):,, 145, &lt;br /&gt;
--- SPF-stats for 202 nodes, 347 routes (total/init/run/route/kern/cleanup):,, 145, &lt;br /&gt;
--- SPF-stats for 202 nodes, 347 routes (total/init/run/route/kern/cleanup):,, 142, &lt;br /&gt;
--- SPF-stats for 202 nodes, 347 routes (total/init/run/route/kern/cleanup):,, 146, &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following complexities&amp;lt;ref&amp;gt;&lt;br /&gt;
Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest (1990): Introduction to algorithms.&lt;br /&gt;
MIT Press / McGraw-Hill.&lt;br /&gt;
&amp;lt;/ref&amp;gt; are worst-case for binary and binomial heaps and [[Wikipedia:Amortized analysis|amortized complexity]] for Fibonacci heap. O(f) gives asymptotic upper bound and Θ(f) is asymptotically tight bound (see [[Wikipedia:Big O notation]]). Function names assume a min-heap.&lt;br /&gt;
&lt;br /&gt;
{|  class=&amp;quot;toccolours&amp;quot; border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; style=&amp;quot;border-collapse:collapse&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background-color:#e9e9e9&amp;quot; |&lt;br /&gt;
! Operation &lt;br /&gt;
! [[Wikipedia:Binary heap|Binary]]&lt;br /&gt;
! [[Wikipedia:Binomial heap|Binomial]] &lt;br /&gt;
! [[Wikipedia:Fibonacci heap|Fibonacci]]&lt;br /&gt;
|-&lt;br /&gt;
| createHeap&lt;br /&gt;
|| Θ(1)&lt;br /&gt;
|| Θ(1)&lt;br /&gt;
|| Θ(1)&lt;br /&gt;
|-&lt;br /&gt;
| findMin &lt;br /&gt;
|| Θ(1)&lt;br /&gt;
|| O(lg ''n'') or Θ(1)&lt;br /&gt;
|| Θ(1)&lt;br /&gt;
|-&lt;br /&gt;
| deleteMin &lt;br /&gt;
|| Θ(lg ''n'')&lt;br /&gt;
|| Θ(lg ''n'')&lt;br /&gt;
|| O(lg ''n'')&lt;br /&gt;
|-&lt;br /&gt;
| insert &lt;br /&gt;
|| Θ(lg ''n'')&lt;br /&gt;
|| O(lg ''n'')&lt;br /&gt;
|| Θ(1)&lt;br /&gt;
|-&lt;br /&gt;
| decreaseKey &lt;br /&gt;
|| Θ(lg ''n'')&lt;br /&gt;
|| Θ(lg ''n'')&lt;br /&gt;
|| Θ(1)&lt;br /&gt;
|-&lt;br /&gt;
| merge&lt;br /&gt;
|| Θ(''n'')&lt;br /&gt;
|| O(lg ''n'')&lt;br /&gt;
|| Θ(1)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== other interesting data structures not directly related ==&lt;br /&gt;
* [[Wikipedia:Data_Structures]] general overview. Good entry point for trees: [[Wikipedia:Binary_tree]]&lt;br /&gt;
* [http://www.nist.gov/dads/ NIST Directory of Data Structures] has a very extensive overview&lt;br /&gt;
* [http://www.google.com/search?client=safari&amp;amp;rls=en&amp;amp;q=Optimal+Worst-Case+Operations+for+Implicit+Cache-Oblivious+Search+Trees&amp;amp;ie=UTF-8&amp;amp;oe=UTF-8 succinct datastructures (trees)]&lt;br /&gt;
* [http://blogs.msdn.com/devdev/archive/2005/12/05/500171.aspx succinct datastructures overview]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Trie Tries]&lt;br /&gt;
* [http://www-users.cs.umn.edu/~saad/PS/iter1.pdf sparse matrices]&lt;br /&gt;
* look at [http://users.footprints.net/~kaz/kazlib.html kazlib] from IS-IS ??&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Wikibooks:Data Structures/Min and Max Heaps|Heaps at wikibooks]]&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Links =&lt;br /&gt;
== Papers, Theory ==&lt;br /&gt;
* [http://ietfreport.isoc.org/idref/rfc3626/ RFC-3626]: the &amp;quot;OLSR RFC&amp;quot;&lt;br /&gt;
* [http://www.lix.polytechnique.fr/hipercom/index.php?option=com_content&amp;amp;task=view&amp;amp;id=152&amp;amp;Itemid=1 Workshop at Hipercom Oct 2006]&lt;br /&gt;
* [http://www.lix.polytechnique.fr/hipercom/index.php?option=com_content&amp;amp;task=view&amp;amp;id=60&amp;amp;Itemid=50 OLSR-v2 Draft 01 at hipercom]&lt;br /&gt;
** http://www.ietf.org/internet-drafts/draft-ietf-manet-olsrv2-02.txt&lt;br /&gt;
** http://www.ietf.org/internet-drafts/draft-ietf-manet-packetbb-02.txt&lt;br /&gt;
** http://olsrv2.online.fr/blog/ OLSRv2 Development Blog&lt;br /&gt;
* http://www.adhocsys.org/&lt;br /&gt;
   AdHocSys is a two-year European project to provide reliable broadband services in rural and mountain regions. This objective&lt;br /&gt;
   will be achieved by means of the creation of a wireless ad hoc broadband network, with special enhancements to reliability&lt;br /&gt;
   and availability. The network consists of one or several gateways connecting to the global Internet and several intermediate&lt;br /&gt;
   nodes which provide multihop connections between the gateways and end users.&lt;br /&gt;
* [http://folk.uio.no/kenneho/index.php?page=studies&amp;amp;subpage=wospf WOSPF-OR] Uni Oslo Wireless OSPF with Overlapping Relays&lt;br /&gt;
* [http://hipserver.mct.phantomworks.org/ietf/ospf/ W-OSPF] INRA/Boing Wireless OSPF&lt;br /&gt;
&lt;br /&gt;
== misc ==&lt;br /&gt;
* Homepage: http://www.olsr.org/&lt;br /&gt;
* NATO C3 Agency (NC3A) Radio Protocols Lab https://elayne.nc3a.nato.int/&lt;br /&gt;
* commercial INRIA HIPERCOM spin-off http://www.luceor.com/&lt;br /&gt;
* commercial MIT Roofnet spin-off http://www.meraki.net/&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR-NG</id>
		<title>OLSR-NG</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR-NG"/>
				<updated>2006-11-01T12:45:56Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* Papers, Theorie */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== olsrd-ng ==&lt;br /&gt;
&lt;br /&gt;
=== Papers, Theorie ===&lt;br /&gt;
* [http://ietfreport.isoc.org/idref/rfc3626/ RFC-3626]: der &amp;quot;OLSR RFC&amp;quot;&lt;br /&gt;
* [http://www.lix.polytechnique.fr/hipercom/index.php?option=com_content&amp;amp;task=view&amp;amp;id=152&amp;amp;Itemid=1 Workshop at Hipercom Oct 2006]&lt;br /&gt;
* [http://www.lix.polytechnique.fr/hipercom/index.php?option=com_content&amp;amp;task=view&amp;amp;id=60&amp;amp;Itemid=50 OLSR-v2 Draft 01 at hipercom]&lt;br /&gt;
** http://www.ietf.org/internet-drafts/draft-ietf-manet-olsrv2-02.txt&lt;br /&gt;
** http://www.ietf.org/internet-drafts/draft-ietf-manet-packetbb-02.txt&lt;br /&gt;
** http://olsrv2.online.fr/blog/ OLSRv2 Development Blog&lt;br /&gt;
* http://www.adhocsys.org/&lt;br /&gt;
   AdHocSys is a two-year European project to provide reliable broadband services in rural and mountain regions. This objective&lt;br /&gt;
   will be achieved by means of the creation of a wireless ad hoc broadband network, with special enhancements to reliability&lt;br /&gt;
   and availability. The network consists of one or several gateways connecting to the global Internet and several intermediate&lt;br /&gt;
   nodes which provide multihop connections between the gateways and end users.&lt;br /&gt;
* [http://folk.uio.no/kenneho/index.php?page=studies&amp;amp;subpage=wospf WOSPF-OR] Uni Oslo Wireless OSPF with Overlapping Relays&lt;br /&gt;
* [http://hipserver.mct.phantomworks.org/ietf/ospf/ W-OSPF] INRA/Boing Wireless OSPF&lt;br /&gt;
&lt;br /&gt;
=== Sonstiges===&lt;br /&gt;
* Homepage: http://www.olsr.org/&lt;br /&gt;
* NATO C3 Agency (NC3A) Radio Protocols Lab https://elayne.nc3a.nato.int/&lt;br /&gt;
* commercial INRIA HIPERCOM spin-off http://www.luceor.com/&lt;br /&gt;
* commercial MIT Roofnet spin-off http://www.meraki.net/&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	<entry>
		<id>https://oldwiki.funkfeuer.at/wiki/OLSR-NG</id>
		<title>OLSR-NG</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.funkfeuer.at/wiki/OLSR-NG"/>
				<updated>2006-11-01T12:41:03Z</updated>
		
		<summary type="html">&lt;p&gt;Scb: /* olsrd-ng */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== olsrd-ng ==&lt;br /&gt;
&lt;br /&gt;
=== Papers, Theorie ===&lt;br /&gt;
* [http://ietfreport.isoc.org/idref/rfc3626/ RFC-3626]: der &amp;quot;OLSR RFC&amp;quot;&lt;br /&gt;
* [http://www.lix.polytechnique.fr/hipercom/index.php?option=com_content&amp;amp;task=view&amp;amp;id=152&amp;amp;Itemid=1 Workshop at Hipercom Oct 2006]&lt;br /&gt;
* [http://www.lix.polytechnique.fr/hipercom/index.php?option=com_content&amp;amp;task=view&amp;amp;id=60&amp;amp;Itemid=50 OLSR-v2 Draft 01 at hipercom]&lt;br /&gt;
** http://www.ietf.org/internet-drafts/draft-ietf-manet-olsrv2-02.txt&lt;br /&gt;
** http://www.ietf.org/internet-drafts/draft-ietf-manet-packetbb-02.txt&lt;br /&gt;
* http://www.adhocsys.org/&lt;br /&gt;
   AdHocSys is a two-year European project to provide reliable broadband services in rural and mountain regions. This objective&lt;br /&gt;
   will be achieved by means of the creation of a wireless ad hoc broadband network, with special enhancements to reliability&lt;br /&gt;
   and availability. The network consists of one or several gateways connecting to the global Internet and several intermediate&lt;br /&gt;
   nodes which provide multihop connections between the gateways and end users.&lt;br /&gt;
* [http://folk.uio.no/kenneho/index.php?page=studies&amp;amp;subpage=wospf WOSPF-OR] Uni Oslo Wireless OSPF with Overlapping Relays&lt;br /&gt;
* [http://hipserver.mct.phantomworks.org/ietf/ospf/ W-OSPF] INRA/Boing Wireless OSPF&lt;br /&gt;
&lt;br /&gt;
=== Sonstiges===&lt;br /&gt;
* Homepage: http://www.olsr.org/&lt;br /&gt;
* NATO C3 Agency (NC3A) Radio Protocols Lab https://elayne.nc3a.nato.int/&lt;br /&gt;
* commercial INRIA HIPERCOM spin-off http://www.luceor.com/&lt;br /&gt;
* commercial MIT Roofnet spin-off http://www.meraki.net/&lt;/div&gt;</summary>
		<author><name>Scb</name></author>	</entry>

	</feed>