2014-05-24 19:49:55 +00:00
|
|
|
Site
|
|
|
|
====
|
|
|
|
|
|
|
|
The ``site`` consists of the files ``site.conf`` and ``site.mk``.
|
|
|
|
In the first community based values are defined, which both are processed
|
|
|
|
during the build process and runtime.
|
|
|
|
The last is directly included in the make process of Gluon.
|
|
|
|
|
|
|
|
Configuration
|
|
|
|
-------------
|
|
|
|
|
|
|
|
The ``site.conf`` is a lua dictionary with the following defined keys.
|
|
|
|
|
|
|
|
hostname_prefix
|
|
|
|
A string which shall prefix the default hostname of a device.
|
|
|
|
|
|
|
|
site_name
|
|
|
|
The name of your community.
|
|
|
|
|
|
|
|
site_code
|
|
|
|
The code of your community. It is good practice to use the TLD of
|
|
|
|
your community here.
|
|
|
|
|
|
|
|
prefix4
|
|
|
|
The IPv4 Subnet of your community mesh network in CIDR notation, e.g.
|
|
|
|
::
|
2014-08-02 17:28:06 +00:00
|
|
|
|
2014-05-24 19:49:55 +00:00
|
|
|
prefix4 = '10.111.111.0/18'
|
|
|
|
|
|
|
|
prefix6
|
|
|
|
The IPv6 subnet of your community mesh network, e.g.
|
|
|
|
::
|
2014-08-02 17:28:06 +00:00
|
|
|
|
2014-05-24 19:49:55 +00:00
|
|
|
prefix6 = 'fdca::ffee:babe:1::/64'
|
|
|
|
|
|
|
|
timezone
|
|
|
|
The timezone of your community live in, e.g.
|
|
|
|
::
|
2014-08-02 17:28:06 +00:00
|
|
|
|
2014-05-24 19:49:55 +00:00
|
|
|
-- Europe/Berlin
|
|
|
|
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3'
|
|
|
|
|
|
|
|
ntp_server
|
|
|
|
List of NTP servers available in your community or used by your community, e.g.:
|
|
|
|
::
|
2014-08-02 17:28:06 +00:00
|
|
|
|
2014-05-24 19:49:55 +00:00
|
|
|
ntp_servers = {'1.ntp.services.ffeh','2.tnp.services.ffeh'}
|
|
|
|
|
|
|
|
opkg_repo : optional
|
|
|
|
Overwrite the default ``opkg`` repository server, e.g.:
|
|
|
|
::
|
2014-08-02 17:28:06 +00:00
|
|
|
|
2014-05-24 19:49:55 +00:00
|
|
|
opkg_repo = 'http://opkg.services.ffeh/attitude_adjustment/12.09/%S/packages'
|
2014-08-02 17:28:06 +00:00
|
|
|
|
2014-05-24 19:49:55 +00:00
|
|
|
The `%S` is a variable, which is replaced with the platform of an device
|
|
|
|
during the build process.
|
|
|
|
|
|
|
|
regdom
|
2014-07-16 14:16:57 +00:00
|
|
|
The wireless regulatory domain responsible for your area, e.g.:
|
2014-05-24 19:49:55 +00:00
|
|
|
::
|
2014-08-02 17:28:06 +00:00
|
|
|
|
2014-05-24 19:49:55 +00:00
|
|
|
regdom = 'DE'
|
|
|
|
|
|
|
|
wifi24
|
|
|
|
WLAN Configuration of your community in the 2.4Ghz radio. Consisting
|
|
|
|
of ``ssid`` of your client network, the ``channel`` your community is using,
|
|
|
|
``htmode``, the adhoc ssid ``mesh_ssid`` used between devices, the adhoc
|
|
|
|
bssid ``mesh_bssid`` and the adhoc multicast rate ``mesh_mcast_rate``.
|
|
|
|
Combined in an dictionary, e.g.:
|
|
|
|
::
|
2014-08-02 17:28:06 +00:00
|
|
|
|
2014-05-24 19:49:55 +00:00
|
|
|
wifi24 = {
|
|
|
|
ssid = 'http://kiel.freifunk.net/',
|
|
|
|
channel = 11,
|
|
|
|
htmode = 'HT40-',
|
|
|
|
mesh_ssid = 'ff:ff:ff:ee:ba:be',
|
|
|
|
mesh_bssid = 'ff:ff:ff:ee:ba:be',
|
|
|
|
mesh_mcast_rate = 12000,
|
|
|
|
},
|
|
|
|
|
|
|
|
wifi5
|
|
|
|
Same as `wifi24` but for the 5Ghz radio.
|
|
|
|
|
|
|
|
next_node : package
|
|
|
|
Configuration of the local node feature of Gluon
|
|
|
|
::
|
2014-08-02 17:28:06 +00:00
|
|
|
|
2014-05-24 19:49:55 +00:00
|
|
|
next_node = {
|
|
|
|
ip4 = '10.23.42.1',
|
|
|
|
ip6 = 'fdca:ffee:babe:1::1',
|
|
|
|
mac = 'ca:ff:ee:ba:be'
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fastd_mesh_vpn
|
|
|
|
Remote server setup for vpn.
|
|
|
|
::
|
2014-08-02 17:28:06 +00:00
|
|
|
|
2014-05-24 19:49:55 +00:00
|
|
|
fastd_mesh_vpn = {
|
|
|
|
methods = {'salsa2012+gmac'},
|
|
|
|
mtu = 1426,
|
|
|
|
backbone = {
|
|
|
|
limit = 2,
|
|
|
|
peers = {
|
|
|
|
ffki_rz = {
|
|
|
|
key = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
|
|
|
|
remotes = {'ipv4 "vpn1.entenhausen.freifunk.net" port 10000'},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-16 12:59:26 +00:00
|
|
|
mesh_on_wan : optional
|
|
|
|
Enables the mesh on the WAN port (``true`` or ``false``).
|
|
|
|
|
2014-05-24 19:49:55 +00:00
|
|
|
autoupdater : package
|
|
|
|
Configuration for the autoupdater feature of Gluon.
|
|
|
|
::
|
2014-08-02 17:28:06 +00:00
|
|
|
|
2014-05-24 19:49:55 +00:00
|
|
|
autoupdater = {
|
|
|
|
enabled = 1,
|
|
|
|
branch = 'experimental',
|
|
|
|
branches = {
|
|
|
|
stable = {
|
|
|
|
name = 'stable',
|
|
|
|
mirrors = {
|
|
|
|
'http://{fdca:ffee:babe:1::fec1}/firmware/stable/sysupgrade/',
|
|
|
|
'http://{fdca:ffee:babe:1::fec2}/firmware/stable/sysupgrade/',
|
|
|
|
},
|
|
|
|
probability = 0.08,
|
|
|
|
good_signatures = 2,
|
|
|
|
pubkeys = {
|
|
|
|
'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX', -- someguy
|
|
|
|
'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX', -- someother
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
simple_tc : package
|
|
|
|
Uplink traffic control
|
|
|
|
::
|
2014-08-02 17:28:06 +00:00
|
|
|
|
2014-05-24 19:49:55 +00:00
|
|
|
simple_tc = {
|
|
|
|
mesh_vpn = {
|
|
|
|
ifname = 'mesh-vpn',
|
2014-07-17 12:35:16 +00:00
|
|
|
enabled = false,
|
2014-05-24 19:49:55 +00:00
|
|
|
limit_egress = 200,
|
|
|
|
limit_ingress = 3000,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
config_mode : package
|
|
|
|
Configuration Mode text blocks
|
|
|
|
|
|
|
|
legacy : package
|
|
|
|
Configuration for the legacy upgrade path.
|
|
|
|
This is only required in communities upgrading from Lübeck's LFF-0.3.x.
|
|
|
|
::
|
2014-08-02 17:28:06 +00:00
|
|
|
|
2014-05-24 19:49:55 +00:00
|
|
|
legacy = {
|
|
|
|
version_files = {'/etc/.freifunk_version_keep', '/etc/.eff_version_keep'},
|
|
|
|
old_files = {'/etc/config/config_mode', '/etc/config/ffeh', '/etc/config/freifunk'},
|
|
|
|
config_mode_configs = {'config_mode', 'ffeh', 'freifunk'},
|
|
|
|
fastd_configs = {'ffeh_mesh_vpn', 'mesh_vpn'},
|
|
|
|
mesh_ifname = 'freifunk',
|
|
|
|
tc_configs = {'ffki', 'freifunk'},
|
|
|
|
wifi_names = {'wifi_freifunk', 'wifi_freifunk5', 'wifi_mesh', 'wifi_mesh5'},
|
|
|
|
}
|
|
|
|
|
|
|
|
Packages
|
|
|
|
--------
|
|
|
|
|
|
|
|
The ``site.mk`` is a Makefile which should define constants
|
|
|
|
involved in the build process of Gluon.
|
|
|
|
|
|
|
|
GLUON_SITE_PACKAGES
|
|
|
|
Defines a list of packages which should installed additional
|
|
|
|
to the ``gluon_core`` package.
|
|
|
|
|
|
|
|
GLUON_RELEASE
|
|
|
|
The current release version Gluon should use.
|
|
|
|
|
2014-07-20 20:36:46 +00:00
|
|
|
GLUON_PRIORITY
|
|
|
|
The default priority for the generated manifests (see the autoupdater documentation
|
|
|
|
for more information).
|
|
|
|
|
2014-05-24 19:49:55 +00:00
|
|
|
Examples
|
|
|
|
--------
|
|
|
|
|
2014-08-05 18:47:00 +00:00
|
|
|
site.mk
|
|
|
|
^^^^^^^
|
|
|
|
|
|
|
|
.. literalinclude:: ../site-example/site.mk
|
|
|
|
:language: makefile
|
|
|
|
|
|
|
|
site.conf
|
|
|
|
^^^^^^^^^
|
|
|
|
|
|
|
|
.. literalinclude:: ../site-example/site.conf
|
|
|
|
:language: lua
|
|
|
|
|
|
|
|
modules
|
|
|
|
^^^^^^^
|
|
|
|
|
|
|
|
.. literalinclude:: ../site-example/modules
|
|
|
|
:language: makefile
|
|
|
|
|