batman-adv.txt 7.0 KB

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