Repository : ssh://git@open-mesh.org/doc
On branches: backup-redmine/2019-09-14,master
commit e8d1b72cbde42fee612b6df7c7856ae371c62e7f Author: Sven Eckelmann sven@narfation.org Date: Thu Jun 13 21:21:25 2019 +0000
doc: batman-adv/Tweaking
e8d1b72cbde42fee612b6df7c7856ae371c62e7f batman-adv/Tweaking.textile | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+)
diff --git a/batman-adv/Tweaking.textile b/batman-adv/Tweaking.textile index d128883..06d8a81 100644 --- a/batman-adv/Tweaking.textile +++ b/batman-adv/Tweaking.textile @@ -296,3 +296,40 @@ Standard WiFi AccessPoints support a feature known as 'AP isolation' which preve batctl -m bat0 vid 1 ap_isolation disabled </pre> + + +h2. Hard/slave interface handling + +The B.A.T.M.A.N. V routing algorithm also uses settings for the enslaved interfaces. For example, after adding eth0 and wlan as interface to bat0, the commands can be accessed via the hardif name: + +<pre> +# eth0 +batctl -m bat0 hardif eth0 elp_interval +disabled + +# eth1 +batctl -m bat0 hardif eth1 elp_interval +disabled +</pre> + +h3. elp_interval + +Available since: batman-adv 2019.3 + +Defines the interval in milliseconds in which batman-adv emits probing packets for neighbor sensing (ELP) in B.A.T.M.A.N. V. + +<pre> +batctl -m bat0 hardif eth0 elp_interval +disabled +</pre> + +h3. throughput_override + +Available since: batman-adv 2019.3 + +Defines the throughput value to be used by B.A.T.M.A.N. V when estimating the link throughput using this interface. If the value is set to 0 then batman-adv will try to estimate the throughput by itself. + +<pre> +batctl -m bat0 hardif eth0 throughput_override +0 +</pre> \ No newline at end of file