v2015.2.rst 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. Gluon 2015.2 (in development)
  2. =============================
  3. Added hardware support
  4. ~~~~~~~~~~~~~~~~~~~~~~
  5. ar71xx-generic
  6. ^^^^^^^^^^^^^^
  7. * Buffalo
  8. - WZR-HP-G300N
  9. * TP-Link
  10. - CPE210/220/510/520 v1.1
  11. - TL-WA901N/ND v1
  12. - TL-WR710N v2
  13. - TL-WR801N/ND v1, v2
  14. - TL-WR841N/ND v10
  15. - TL-WR940N v1, v2, v3
  16. - TL-WR941ND v6
  17. - TL-WR1043N/ND v3
  18. * Western Digital
  19. - My Net N600
  20. - My Net N750
  21. x86-xen_domu
  22. ^^^^^^^^^^^^
  23. New target containing the necessary drivers for use in Xen.
  24. x86-64
  25. ^^^^^^
  26. 64bit version of `x86-generic`. The generic image can also be used in KVM with VirtIO.
  27. New features
  28. ~~~~~~~~~~~~
  29. Bugfixes
  30. ~~~~~~~~
  31. Site changes
  32. ~~~~~~~~~~~~
  33. * ``site.conf``
  34. - New WLAN configuration
  35. ``wifi24`` and ``wifi5`` need to be updated to a new more flexible format.
  36. A configuration using the old format
  37. ::
  38. {
  39. channel = 1,
  40. htmode = 'HT20'
  41. ssid = 'entenhausen.freifunk.net',
  42. mesh_ssid = 'xe:xx:xx:xx:xx:xx',
  43. mesh_bssid = 'xe:xx:xx:xx:xx:xx',
  44. mesh_mcast_rate = 12000,
  45. }
  46. would look like this in the new format::
  47. {
  48. channel = 1,
  49. ap = {
  50. ssid = 'entenhausen.freifunk.net',
  51. },
  52. ibss = {
  53. ssid = 'xe:xx:xx:xx:xx:xx',
  54. bssid = 'xe:xx:xx:xx:xx:xx',
  55. mcast_rate = 12000,
  56. },
  57. }
  58. The ``htmode`` option has been dropped, the channel width is now always set to 20MHz
  59. (see https://github.com/freifunk-gluon/gluon/issues/487 for a discussion of this change).
  60. In addition to the old IBSS (Adhoc) based meshing, 802.11s-based meshing can be configured
  61. using the ``mesh`` section. Example::
  62. {
  63. channel = 1,
  64. ap = {
  65. ssid = 'entenhausen.freifunk.net',
  66. },
  67. mesh = {
  68. id = 'mesh.entenhausen.freifunk.net', -- can by any string, human-readable or random
  69. mcast_rate = 12000,
  70. },
  71. }
  72. While using ``ibss`` and ``mesh`` at the same time is possible, is causes high load in
  73. very active meshes, so it is advisable to avoid such configurations.
  74. - Bandwidth limitation defaults
  75. The old section ``simple_tc.mesh_vpn`` has been moved to ``fastd_mesh_vpn.bandwidth_limit`` and the ``ifname``
  76. field isn't used anymore. What looked like this
  77. before
  78. ::
  79. simple_tc = {
  80. mesh_vpn = {
  81. ifname = 'mesh-vpn',
  82. enabled = false,
  83. limit_ingress = 3000,
  84. limit_egress = 200,
  85. }
  86. }
  87. needs to be changed to
  88. ::
  89. fastd_mesh_vpn = {
  90. -- ...
  91. bandwidth_limit = {
  92. enabled = false,
  93. ingress = 3000,
  94. egress = 200,
  95. },
  96. }
  97. - opkg repository configuration
  98. The opkg configuration has been changed to be more flexible and allow specifying custom repositories.
  99. Example::
  100. opkg = {
  101. openwrt = 'http://opkg.services.ffeh/openwrt/%n/%v/%S/packages',
  102. extra = {
  103. modules = 'http://opkg.services.ffeh/modules/gluon-%GS-%GR/%S',
  104. },
  105. }
  106. The keys of the ``extra`` table (like ``modules`` in this example) can be chosen arbitrarily.
  107. Instead of explicitly specifying the whole URL, using patterns is recommended. The following
  108. patterns are understood:
  109. - ``%n`` is replaced by the OpenWrt version codename (e.g. "chaos_calmer")
  110. - ``%v`` is replaced by the OpenWrt version number (e.g. "15.05")
  111. - ``%S`` is replaced by the target architecture (e.g. "ar71xx/generic")
  112. - ``%GS`` is replaced by the Gluon site code (as specified in ``site.conf``)
  113. - ``%GV`` is replaced by the Gluon version
  114. - ``%GR`` is replaced by the Gluon release (as specified in ``site.mk``)
  115. * ``i18n/``
  116. - The translations of ``gluon-config-mode:pubkey`` now have to show the fastd
  117. public key itself if desired, making the formatting of the key and whether it is shown at
  118. all configurable. To retain the old format, add ``<p>`` to the beginning of
  119. your translations and append::
  120. "</p>"
  121. "<div class=\"the-key\">"
  122. " # <%= hostname %>"
  123. " <br/>"
  124. "<%= pubkey %>"
  125. "</div>"
  126. Internals
  127. ~~~~~~~~~
  128. Known Issues
  129. ~~~~~~~~~~~~