<div dir="auto"><div>Could someone explain this part ?<div dir="auto"><br></div><div dir="auto"><span style="font-family:sans-serif;font-size:12.8px">config interface</span><br style="font-family:sans-serif;font-size:12.8px"><span style="font-family:sans-serif;font-size:12.8px">       option ifname wlan0</span><br style="font-family:sans-serif;font-size:12.8px"><br style="font-family:sans-serif;font-size:12.8px"><span style="font-family:sans-serif;font-size:12.8px">   config filter</span><br style="font-family:sans-serif;font-size:12.8px"><span style="font-family:sans-serif;font-size:12.8px">       option type redistribute</span><br style="font-family:sans-serif;font-size:12.8px"><span style="font-family:sans-serif;font-size:12.8px">       option ip '</span><a href="http://0.0.0.0/0" style="text-decoration-line:none;color:rgb(66,133,244);font-family:sans-serif;font-size:12.8px">0.0.0.0/0</a><span style="font-family:sans-serif;font-size:12.8px">'</span><br style="font-family:sans-serif;font-size:12.8px"><span style="font-family:sans-serif;font-size:12.8px">       option eq 0</span><br style="font-family:sans-serif;font-size:12.8px"><span style="font-family:sans-serif;font-size:12.8px">       option action 'metric 128'</span><br></div><div dir="auto"><span style="font-family:sans-serif;font-size:12.8px"><br></span></div><div dir="auto"><span style="font-family:sans-serif;font-size:12.8px"><br></span></div><div dir="auto"><span style="font-family:sans-serif;font-size:12.8px">And if I have 4 routers , how play around tight netmask </span></div><br><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Feb 28, 2019, 8:03 PM Juliusz Chroboczek <<a href="mailto:jch@irif.fr">jch@irif.fr</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">> For BATMAN, I’m using LibreMesh.org and for BABEL, I’m trying to find a<br>
> solution using OpenWRT and babeld but it is not a success… Does anybody know<br>
> where I can find a simple solution using Babel protocol to implement on my<br>
> routers with OpenWRT (or something similar)? <br>
<br>
It is my opinion that third-party firmwares are a bad idea -- if something<br>
is worth sharing with the community, it should be included in OpenWRT<br>
itself.  Babeld works just fine with stock OpenWRT.<br>
<br>
On your OpenWRT box, create a statically configured interface in ad-hoc<br>
mode.  In /etc/config/wireless:<br>
<br>
  config wifi-iface 'wlan0'<br>
      option device 'radio0'<br>
      option mode 'adhoc'<br>
      option ssid 'babel'<br>
      option channel 11<br>
      option encryption 'none'<br>
<br>
In /etc/config/network: remove the interface from the 'lan' bridge (in<br>
case it's included), then do:<br>
<br>
  config interface 'wlan0'<br>
      option ifname 'wlan0'<br>
      option proto 'static'<br>
      option ipaddr '192.168.2.1'<br>
      option netmask '255.255.255.255'<br>
<br>
You may add an IPv6 address if you wish.<br>
<br>
In /etc/config/firewall, add the new interface to the 'lan' zone (since<br>
you're no longer bridging it with the lan interface).<br>
<br>
Then do<br>
<br>
   opkg update<br>
   opkg install babeld<br>
<br>
and add the following to your /etc/config/babeld:<br>
<br>
   config interface<br>
       option ifname wlan0<br>
<br>
   config filter<br>
       option type redistribute<br>
       option ip '<a href="http://0.0.0.0/0" rel="noreferrer noreferrer" target="_blank">0.0.0.0/0</a>'<br>
       option eq 0<br>
       option action 'metric 128'<br>
<br>
Feel free to write to the list again if you need any further help.<br>
<br>
-- Juliusz<br>
<br>
<br>
<br>
_______________________________________________<br>
Babel-users mailing list<br>
<a href="mailto:Babel-users@alioth-lists.debian.net" target="_blank" rel="noreferrer">Babel-users@alioth-lists.debian.net</a><br>
<a href="https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/babel-users" rel="noreferrer noreferrer" target="_blank">https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/babel-users</a></blockquote></div></div></div>