batman-adv.rst 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. .. SPDX-License-Identifier: GPL-2.0
  2. ==========
  3. batman-adv
  4. ==========
  5. Batman advanced is a new approach to wireless networking which does no longer
  6. operate on the IP basis. Unlike the batman daemon, which exchanges information
  7. using UDP packets and sets routing tables, batman-advanced operates on ISO/OSI
  8. Layer 2 only and uses and routes (or better: bridges) Ethernet Frames. It
  9. emulates a virtual network switch of all nodes participating. Therefore all
  10. nodes appear to be link local, thus all higher operating protocols won't be
  11. affected by any changes within the network. You can run almost any protocol
  12. above batman advanced, prominent examples are: IPv4, IPv6, DHCP, IPX.
  13. Batman advanced was implemented as a Linux kernel driver to reduce the overhead
  14. to a minimum. It does not depend on any (other) network driver, and can be used
  15. on wifi as well as ethernet lan, vpn, etc ... (anything with ethernet-style
  16. layer 2).
  17. Configuration
  18. =============
  19. Load the batman-adv module into your kernel::
  20. $ insmod batman-adv.ko
  21. The module is now waiting for activation. You must add some interfaces on which
  22. batman can operate. After loading the module batman advanced will scan your
  23. systems interfaces to search for compatible interfaces. Once found, it will
  24. create subfolders in the ``/sys`` directories of each supported interface,
  25. e.g.::
  26. $ ls /sys/class/net/eth0/batman_adv/
  27. elp_interval iface_status mesh_iface throughput_override
  28. If an interface does not have the ``batman_adv`` subfolder, it probably is not
  29. supported. Not supported interfaces are: loopback, non-ethernet and batman's
  30. own interfaces.
  31. Note: After the module was loaded it will continuously watch for new
  32. interfaces to verify the compatibility. There is no need to reload the module
  33. if you plug your USB wifi adapter into your machine after batman advanced was
  34. initially loaded.
  35. The batman-adv soft-interface can be created using the iproute2 tool ``ip``::
  36. $ ip link add name bat0 type batadv
  37. To activate a given interface simply attach it to the ``bat0`` interface::
  38. $ ip link set dev eth0 master bat0
  39. Repeat this step for all interfaces you wish to add. Now batman starts
  40. using/broadcasting on this/these interface(s).
  41. By reading the "iface_status" file you can check its status::
  42. $ cat /sys/class/net/eth0/batman_adv/iface_status
  43. active
  44. To deactivate an interface you have to detach it from the "bat0" interface::
  45. $ ip link set dev eth0 nomaster
  46. All mesh wide settings can be found in batman's own interface folder::
  47. $ ls /sys/class/net/bat0/mesh/
  48. aggregated_ogms fragmentation isolation_mark routing_algo
  49. ap_isolation gw_bandwidth log_level vlan0
  50. bonding gw_mode multicast_mode
  51. bridge_loop_avoidance gw_sel_class network_coding
  52. distributed_arp_table hop_penalty orig_interval
  53. There is a special folder for debugging information::
  54. $ ls /sys/kernel/debug/batman_adv/bat0/
  55. bla_backbone_table log neighbors transtable_local
  56. bla_claim_table mcast_flags originators
  57. dat_cache nc socket
  58. gateways nc_nodes transtable_global
  59. Some of the files contain all sort of status information regarding the mesh
  60. network. For example, you can view the table of originators (mesh
  61. participants) with::
  62. $ cat /sys/kernel/debug/batman_adv/bat0/originators
  63. Other files allow to change batman's behaviour to better fit your requirements.
  64. For instance, you can check the current originator interval (value in
  65. milliseconds which determines how often batman sends its broadcast packets)::
  66. $ cat /sys/class/net/bat0/mesh/orig_interval
  67. 1000
  68. and also change its value::
  69. $ echo 3000 > /sys/class/net/bat0/mesh/orig_interval
  70. In very mobile scenarios, you might want to adjust the originator interval to a
  71. lower value. This will make the mesh more responsive to topology changes, but
  72. will also increase the overhead.
  73. Usage
  74. =====
  75. To make use of your newly created mesh, batman advanced provides a new
  76. interface "bat0" which you should use from this point on. All interfaces added
  77. to batman advanced are not relevant any longer because batman handles them for
  78. you. Basically, one "hands over" the data by using the batman interface and
  79. batman will make sure it reaches its destination.
  80. The "bat0" interface can be used like any other regular interface. It needs an
  81. IP address which can be either statically configured or dynamically (by using
  82. DHCP or similar services)::
  83. NodeA: ip link set up dev bat0
  84. NodeA: ip addr add 192.168.0.1/24 dev bat0
  85. NodeB: ip link set up dev bat0
  86. NodeB: ip addr add 192.168.0.2/24 dev bat0
  87. NodeB: ping 192.168.0.1
  88. Note: In order to avoid problems remove all IP addresses previously assigned to
  89. interfaces now used by batman advanced, e.g.::
  90. $ ip addr flush dev eth0
  91. Logging/Debugging
  92. =================
  93. All error messages, warnings and information messages are sent to the kernel
  94. log. Depending on your operating system distribution this can be read in one of
  95. a number of ways. Try using the commands: ``dmesg``, ``logread``, or looking in
  96. the files ``/var/log/kern.log`` or ``/var/log/syslog``. All batman-adv messages
  97. are prefixed with "batman-adv:" So to see just these messages try::
  98. $ dmesg | grep batman-adv
  99. When investigating problems with your mesh network, it is sometimes necessary to
  100. see more detail debug messages. This must be enabled when compiling the
  101. batman-adv module. When building batman-adv as part of kernel, use "make
  102. menuconfig" and enable the option ``B.A.T.M.A.N. debugging``
  103. (``CONFIG_BATMAN_ADV_DEBUG=y``).
  104. Those additional debug messages can be accessed using a special file in
  105. debugfs::
  106. $ cat /sys/kernel/debug/batman_adv/bat0/log
  107. The additional debug output is by default disabled. It can be enabled during
  108. run time. Following log_levels are defined:
  109. .. flat-table::
  110. * - 0
  111. - All debug output disabled
  112. * - 1
  113. - Enable messages related to routing / flooding / broadcasting
  114. * - 2
  115. - Enable messages related to route added / changed / deleted
  116. * - 4
  117. - Enable messages related to translation table operations
  118. * - 8
  119. - Enable messages related to bridge loop avoidance
  120. * - 16
  121. - Enable messages related to DAT, ARP snooping and parsing
  122. * - 32
  123. - Enable messages related to network coding
  124. * - 64
  125. - Enable messages related to multicast
  126. * - 128
  127. - Enable messages related to throughput meter
  128. * - 255
  129. - Enable all messages
  130. The debug output can be changed at runtime using the file
  131. ``/sys/class/net/bat0/mesh/log_level``. e.g.::
  132. $ echo 6 > /sys/class/net/bat0/mesh/log_level
  133. will enable debug messages for when routes change.
  134. Counters for different types of packets entering and leaving the batman-adv
  135. module are available through ethtool::
  136. $ ethtool --statistics bat0
  137. batctl
  138. ======
  139. As batman advanced operates on layer 2, all hosts participating in the virtual
  140. switch are completely transparent for all protocols above layer 2. Therefore
  141. the common diagnosis tools do not work as expected. To overcome these problems,
  142. batctl was created. At the moment the batctl contains ping, traceroute, tcpdump
  143. and interfaces to the kernel module settings.
  144. For more information, please see the manpage (``man batctl``).
  145. batctl is available on https://www.open-mesh.org/
  146. Contact
  147. =======
  148. Please send us comments, experiences, questions, anything :)
  149. IRC:
  150. #batman on irc.freenode.org
  151. Mailing-list:
  152. b.a.t.m.a.n@open-mesh.org (optional subscription at
  153. https://lists.open-mesh.org/mm/listinfo/b.a.t.m.a.n)
  154. You can also contact the Authors:
  155. * Marek Lindner <mareklindner@neomailbox.ch>
  156. * Simon Wunderlich <sw@simonwunderlich.de>