site.rst 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. Site
  2. ====
  3. The ``site`` consists of the files ``site.conf`` and ``site.mk``.
  4. In the first community based values are defined, which both are processed
  5. during the build process and runtime.
  6. The last is directly included in the make process of Gluon.
  7. Configuration
  8. -------------
  9. The ``site.conf`` is a lua dictionary with the following defined keys.
  10. hostname_prefix
  11. A string which shall prefix the default hostname of a device.
  12. site_name
  13. The name of your community.
  14. site_code
  15. The code of your community. It is good practice to use the TLD of
  16. your community here.
  17. prefix4
  18. The IPv4 Subnet of your community mesh network in CIDR notation, e.g.
  19. ::
  20. prefix4 = '10.111.111.0/18'
  21. prefix6
  22. The IPv6 subnet of your community mesh network, e.g.
  23. ::
  24. prefix6 = 'fdca::ffee:babe:1::/64'
  25. timezone
  26. The timezone of your community live in, e.g.
  27. ::
  28. -- Europe/Berlin
  29. timezone = 'CET-1CEST,M3.5.0,M10.5.0/3'
  30. ntp_server
  31. List of NTP servers available in your community or used by your community, e.g.:
  32. ::
  33. ntp_servers = {'1.ntp.services.ffeh','2.tnp.services.ffeh'}
  34. opkg_repo : optional
  35. Overwrite the default ``opkg`` repository server, e.g.:
  36. ::
  37. opkg_repo = 'http://opkg.services.ffeh/attitude_adjustment/12.09/%S/packages'
  38. The `%S` is a variable, which is replaced with the platform of an device
  39. during the build process.
  40. regdom
  41. The wireless regulatory domain responsible for your area, e.g.:
  42. ::
  43. regdom = 'DE'
  44. wifi24
  45. WLAN Configuration of your community in the 2.4Ghz radio. Consisting
  46. of ``ssid`` of your client network, the ``channel`` your community is using,
  47. ``htmode``, the adhoc ssid ``mesh_ssid`` used between devices, the adhoc
  48. bssid ``mesh_bssid`` and the adhoc multicast rate ``mesh_mcast_rate``.
  49. Optionally ``mesh_vlan`` can be used to setup VLAN on top of the 802.11
  50. ad-hoc interface.
  51. Combined in an dictionary, e.g.:
  52. ::
  53. wifi24 = {
  54. ssid = 'http://kiel.freifunk.net/',
  55. channel = 11,
  56. htmode = 'HT40-',
  57. mesh_ssid = 'ff:ff:ff:ee:ba:be',
  58. mesh_bssid = 'ff:ff:ff:ee:ba:be',
  59. mesh_mcast_rate = 12000,
  60. },
  61. wifi5
  62. Same as `wifi24` but for the 5Ghz radio.
  63. next_node : package
  64. Configuration of the local node feature of Gluon
  65. ::
  66. next_node = {
  67. ip4 = '10.23.42.1',
  68. ip6 = 'fdca:ffee:babe:1::1',
  69. mac = 'ca:ff:ee:ba:be'
  70. }
  71. fastd_mesh_vpn
  72. Remote server setup for vpn.
  73. ::
  74. fastd_mesh_vpn = {
  75. methods = {'salsa2012+gmac'},
  76. mtu = 1426,
  77. backbone = {
  78. limit = 2,
  79. peers = {
  80. ffki_rz = {
  81. key = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
  82. remotes = {'ipv4 "vpn1.entenhausen.freifunk.net" port 10000'},
  83. },
  84. }
  85. }
  86. }
  87. mesh_on_wan : optional
  88. Enables the mesh on the WAN port (``true`` or ``false``).
  89. autoupdater : package
  90. Configuration for the autoupdater feature of Gluon.
  91. ::
  92. autoupdater = {
  93. branch = 'experimental',
  94. branches = {
  95. stable = {
  96. name = 'stable',
  97. mirrors = {
  98. 'http://[fdca:ffee:babe:1::fec1]/firmware/stable/sysupgrade/',
  99. 'http://[fdca:ffee:babe:1::fec2]/firmware/stable/sysupgrade/',
  100. },
  101. probability = 0.08,
  102. good_signatures = 2,
  103. pubkeys = {
  104. 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX', -- someguy
  105. 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX', -- someother
  106. }
  107. }
  108. }
  109. }
  110. roles : optional
  111. Optional role definitions. With this nodes will announce their role inside the mesh.
  112. In the backend this adds the facility to distinguish between normal, backbone and
  113. service nodes or even gateways (if they advertise the role, also). It is up to
  114. the community which roles to define. See the section below as an example.
  115. ``default`` takes the default role which is set initially. This value should be
  116. part of ``list``. If you want node owners to change the role via config mode add
  117. the package ``gluon-luci-node-role`` to ``site.mk``.
  118. ::
  119. roles = {
  120. default = 'node',
  121. list = {
  122. node = 'Normal Node',
  123. test = 'Test Node',
  124. backbone = 'Backbone Node',
  125. service = 'Service Node',
  126. },
  127. },
  128. simple_tc : package
  129. Uplink traffic control
  130. ::
  131. simple_tc = {
  132. mesh_vpn = {
  133. ifname = 'mesh-vpn',
  134. enabled = false,
  135. limit_egress = 200,
  136. limit_ingress = 3000,
  137. },
  138. },
  139. setup_mode : package
  140. Allows skipping setup mode (config mode) at first boot when attribute
  141. ``skip`` is set to ``true``. This is optional and may be left out.
  142. ::
  143. setup_mode {
  144. skip = true,
  145. },
  146. config_mode : package
  147. Configuration Mode text blocks
  148. legacy : package
  149. Configuration for the legacy upgrade path.
  150. This is only required in communities upgrading from Lübeck's LFF-0.3.x.
  151. ::
  152. legacy = {
  153. version_files = {'/etc/.freifunk_version_keep', '/etc/.eff_version_keep'},
  154. old_files = {'/etc/config/config_mode', '/etc/config/ffeh', '/etc/config/freifunk'},
  155. config_mode_configs = {'config_mode', 'ffeh', 'freifunk'},
  156. fastd_configs = {'ffeh_mesh_vpn', 'mesh_vpn'},
  157. mesh_ifname = 'freifunk',
  158. tc_configs = {'ffki', 'freifunk'},
  159. wifi_names = {'wifi_freifunk', 'wifi_freifunk5', 'wifi_mesh', 'wifi_mesh5'},
  160. }
  161. Packages
  162. --------
  163. The ``site.mk`` is a Makefile which should define constants
  164. involved in the build process of Gluon.
  165. GLUON_SITE_PACKAGES
  166. Defines a list of packages which should installed additional
  167. to the ``gluon_core`` package.
  168. GLUON_RELEASE
  169. The current release version Gluon should use.
  170. GLUON_PRIORITY
  171. The default priority for the generated manifests (see the autoupdater documentation
  172. for more information).
  173. Examples
  174. --------
  175. site.mk
  176. ^^^^^^^
  177. .. literalinclude:: ../site-example/site.mk
  178. :language: makefile
  179. site.conf
  180. ^^^^^^^^^
  181. .. literalinclude:: ../site-example/site.conf
  182. :language: lua
  183. modules
  184. ^^^^^^^
  185. .. literalinclude:: ../site-example/modules
  186. :language: makefile
  187. site-repos in the wild
  188. ^^^^^^^^^^^^^^^^^^^^^^
  189. This is a non-exhaustive list of site-repos from various communities:
  190. * `site-ffbs <https://github.com/ffbs/site-ffbs>`_ (Braunschweig)
  191. * `site-ffhb <https://github.com/FreifunkBremen/gluon-site-ffhb>`_ (Bremen)
  192. * `site-ffda <https://github.com/freifunk-darmstadt/site-ffda>`_ (Darmstadt)
  193. * `site-ffgoe <https://github.com/freifunk-goettingen/site-ffgoe>`_ (Göttingen)
  194. * `site-ffhh <https://github.com/freifunkhamburg/site-ffhh>`_ (Hamburg)
  195. * `site-ffhgw <https://github.com/lorenzo-greifswald/site-ffhgw>`_ (Greifswald)
  196. * `site-ffhl <https://github.com/freifunk-gluon/site-ffhl>`_ (Lübeck)
  197. * `site-ffmd <https://github.com/FreifunkMD/site-ffmd>`_ (Magdeburg)
  198. * `site-ffmwu <https://github.com/freifunk-mwu/site-ffmwu>`_ (Mainz, Wiesbaden & Umgebung)
  199. * `site-ffmyk <https://github.com/FreifunkMYK/site-ffmyk>`_ (Mayen-Koblenz)
  200. * `site-ffm <https://github.com/freifunkMUC/site-ffm>`_ (München)
  201. * `site-ffms <https://github.com/FreiFunkMuenster/site-ffms>`_ (Münster)
  202. * `site-ffnw <https://git.freifunk-ol.de/root/siteconf.git>`_ (Nordwest)
  203. * `site-ffpb <https://git.c3pb.de/freifunk-pb/site-ffpb>`_ (Paderborn)
  204. * `site-ffka <https://github.com/ffka/site-ffka>`_ (Karlsruhe)
  205. * `site-ffrl <https://github.com/ffrl/sites-ffrl>`_ (Rheinland)
  206. * `site-ffrg <https://github.com/ffruhr/site-ffruhr>`_ (Ruhrgebiet)
  207. * `site-ffs <https://github.com/freifunk-stuttgart/site-ffs>`_ (Stuttgart)
  208. * `site-fftr <https://github.com/freifunktrier/site-fftr>`_ (Trier)