site.conf 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. -- This is an example site configuration for Gluon v2016.1
  2. --
  3. -- Take a look at the documentation located at
  4. -- http://gluon.readthedocs.org/ for details.
  5. --
  6. -- This configuration will not work as it. You're required to make
  7. -- community specific changes to it!
  8. {
  9. -- Used for generated hostnames, e.g. freifunk-abcdef123456. (optional)
  10. -- hostname_prefix = 'freifunk-',
  11. -- Name of the community.
  12. site_name = 'Freifunk Entenhausen',
  13. -- Shorthand of the community.
  14. site_code = 'ffxx',
  15. -- Prefixes used within the mesh. Both are required.
  16. prefix4 = '10.xxx.0.0/20',
  17. prefix6 = 'fdxx:xxxx:xxxx::/64',
  18. -- Timezone of your community.
  19. -- See http://wiki.openwrt.org/doc/uci/system#time_zones
  20. timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
  21. -- List of NTP servers in your community.
  22. -- Must be reachable using IPv6!
  23. ntp_servers = {'1.ntp.services.ffxx'},
  24. -- Wireless regulatory domain of your community.
  25. regdom = 'DE',
  26. -- Wireless configuration for 2.4 GHz interfaces.
  27. wifi24 = {
  28. -- Wireless channel.
  29. channel = 1,
  30. -- ESSID used for client network.
  31. ap = {
  32. ssid = 'entenhausen.freifunk.net',
  33. -- disabled = true, (optional)
  34. },
  35. mesh = {
  36. -- Adjust these values!
  37. id = 'ffxx-mesh',
  38. mcast_rate = 12000,
  39. -- disabled = true, (optional)
  40. },
  41. },
  42. -- Wireless configuration for 5 GHz interfaces.
  43. -- This should be equal to the 2.4 GHz variant, except
  44. -- for channel.
  45. wifi5 = {
  46. channel = 44,
  47. ap = {
  48. ssid = 'entenhausen.freifunk.net',
  49. },
  50. mesh = {
  51. id = 'ffxx-mesh',
  52. mcast_rate = 12000,
  53. },
  54. },
  55. -- The next node feature allows clients to always reach the node it is
  56. -- connected to using a known IP address.
  57. next_node = {
  58. -- anycast IPs of all nodes
  59. ip4 = '10.xxx.0.xxx',
  60. ip6 = 'fdxx:xxxx:xxxx::xxxx',
  61. -- anycast MAC of all nodes
  62. mac = 'xe:xx:xx:xx:xx:xx',
  63. },
  64. -- Options specific to routing protocols (optional)
  65. -- mesh = {
  66. -- Options specific to the batman-adv routing protocol (optional)
  67. -- batman_adv = {
  68. -- Gateway selection class (optional)
  69. -- The default class 20 is based on the link quality (TQ) only,
  70. -- class 1 is calculated from both the TQ and the announced bandwidth
  71. -- gw_sel_class = 1,
  72. -- },
  73. -- },
  74. -- Refer to http://fastd.readthedocs.org/en/latest/ to better understand
  75. -- what these options do.
  76. fastd_mesh_vpn = {
  77. -- List of crypto-methods to use.
  78. methods = {'salsa2012+umac'},
  79. -- enabled = true,
  80. -- configurable = true,
  81. mtu = 1280,
  82. groups = {
  83. backbone = {
  84. -- Limit number of connected peers to reduce bandwidth.
  85. limit = 1,
  86. -- List of peers.
  87. peers = {
  88. peer1 = {
  89. key = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
  90. -- This is a list, so you might add multiple entries.
  91. remotes = {'ipv4 "xxx.somehost.invalid" port xxxxxx'},
  92. },
  93. peer2 = {
  94. key = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
  95. -- You can also omit the ipv4 to allow both connection via ipv4 and ipv6
  96. remotes = {'"xxx.somehost2.invalid" port xxxxx'},
  97. },
  98. },
  99. -- Optional: nested peer groups
  100. -- groups = {
  101. -- backbone_sub = {
  102. -- ...
  103. -- },
  104. -- ...
  105. -- },
  106. },
  107. -- Optional: additional peer groups, possibly with other limits
  108. -- backbone2 = {
  109. -- ...
  110. -- },
  111. },
  112. bandwidth_limit = {
  113. -- The bandwidth limit can be enabled by default here.
  114. enabled = false,
  115. -- Default upload limit (kbit/s).
  116. egress = 200,
  117. -- Default download limit (kbit/s).
  118. ingress = 3000,
  119. },
  120. },
  121. autoupdater = {
  122. -- Default branch. Don't forget to set GLUON_BRANCH when building!
  123. branch = 'stable',
  124. -- List of branches. You may define multiple branches.
  125. branches = {
  126. stable = {
  127. name = 'stable',
  128. -- List of mirrors to fetch images from. IPv6 required!
  129. mirrors = {'http://1.updates.services.ffhl/stable/sysupgrade'},
  130. -- Number of good signatures required.
  131. -- Have multiple maintainers sign your build and only
  132. -- accept it when a sufficient number of them have
  133. -- signed it.
  134. good_signatures = 2,
  135. -- List of public keys of maintainers.
  136. pubkeys = {
  137. 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', -- Alice
  138. 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', -- Bob
  139. 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', -- Mary
  140. },
  141. },
  142. },
  143. },
  144. -- Node roles
  145. -- roles = {
  146. -- default = 'node',
  147. -- list = {
  148. -- 'node',
  149. -- 'test',
  150. -- 'backbone',
  151. -- 'service',
  152. -- },
  153. -- },
  154. -- Skip setup mode (config mode) on first boot
  155. -- setup_mode = {
  156. -- skip = true,
  157. -- },
  158. }