2016-02-08 09:49:06 +00:00
|
|
|
-- This is an example site configuration for Gluon v2016.1+
|
2014-10-13 12:02:28 +00:00
|
|
|
--
|
|
|
|
-- Take a look at the documentation located at
|
|
|
|
-- http://gluon.readthedocs.org/ for details.
|
|
|
|
--
|
|
|
|
-- This configuration will not work as it. You're required to make
|
|
|
|
-- community specific changes to it!
|
2014-08-05 18:47:00 +00:00
|
|
|
{
|
2015-03-21 12:53:05 +00:00
|
|
|
-- Used for generated hostnames, e.g. freifunk-abcdef123456. (optional)
|
|
|
|
-- hostname_prefix = 'freifunk-',
|
2014-10-13 12:02:28 +00:00
|
|
|
|
|
|
|
-- Name of the community.
|
2015-01-16 14:23:48 +00:00
|
|
|
site_name = 'Freifunk Entenhausen',
|
2014-10-13 12:02:28 +00:00
|
|
|
|
|
|
|
-- Shorthand of the community.
|
2015-01-16 14:23:48 +00:00
|
|
|
site_code = 'ffxx',
|
2014-10-13 12:02:28 +00:00
|
|
|
|
|
|
|
-- Prefixes used within the mesh. Both are required.
|
2015-01-16 14:23:48 +00:00
|
|
|
prefix4 = '10.xxx.0.0/20',
|
|
|
|
prefix6 = 'fdxx:xxxx:xxxx::/64',
|
2014-10-13 12:02:28 +00:00
|
|
|
|
|
|
|
-- Timezone of your community.
|
2014-12-06 23:37:23 +00:00
|
|
|
-- See http://wiki.openwrt.org/doc/uci/system#time_zones
|
2014-10-13 12:02:28 +00:00
|
|
|
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
|
|
|
|
|
|
|
-- List of NTP servers in your community.
|
|
|
|
-- Must be reachable using IPv6!
|
2015-01-16 14:23:48 +00:00
|
|
|
ntp_servers = {'1.ntp.services.ffxx'},
|
2014-10-13 12:02:28 +00:00
|
|
|
|
|
|
|
-- Wireless regulatory domain of your community.
|
|
|
|
regdom = 'DE',
|
|
|
|
|
2015-01-27 17:32:31 +00:00
|
|
|
-- Wireless configuration for 2.4 GHz interfaces.
|
2014-10-13 12:02:28 +00:00
|
|
|
wifi24 = {
|
|
|
|
-- Wireless channel.
|
|
|
|
channel = 1,
|
|
|
|
|
mesh-batadv-core: introduce 11s mesh, refactor wireless config
This is a site.conf-breaking change in regard to the wireless config.
Make sure to read http://gluon.readthedocs.org/en/latest/user/site.html
and update your site.conf accordingly!
Support for 802.11s mesh interfaces has been added. Gluon now supports
three interface types: ap, ibss and mesh. All of them are now optional
and may be configured independently in site.conf.
A sample site.conf may look like this:
wifi24 = {
channel = 1,
htmode = 'HT40+',
ap = {
ssid = 'luebeck.freifunk.net',
},
ibss = {
ssid = '02:d1:11:37:fc:38',
bssid = '02:d1:11:37:fc:38',
mcast_rate = 12000,
},
mesh = {
id = 'ffhl-mesh',
mcast_rate = 12000,
},
},
2015-07-25 18:41:03 +00:00
|
|
|
-- ESSID used for client network.
|
|
|
|
ap = {
|
|
|
|
ssid = 'entenhausen.freifunk.net',
|
|
|
|
-- disabled = true, (optional)
|
|
|
|
},
|
2015-01-18 07:07:43 +00:00
|
|
|
|
mesh-batadv-core: introduce 11s mesh, refactor wireless config
This is a site.conf-breaking change in regard to the wireless config.
Make sure to read http://gluon.readthedocs.org/en/latest/user/site.html
and update your site.conf accordingly!
Support for 802.11s mesh interfaces has been added. Gluon now supports
three interface types: ap, ibss and mesh. All of them are now optional
and may be configured independently in site.conf.
A sample site.conf may look like this:
wifi24 = {
channel = 1,
htmode = 'HT40+',
ap = {
ssid = 'luebeck.freifunk.net',
},
ibss = {
ssid = '02:d1:11:37:fc:38',
bssid = '02:d1:11:37:fc:38',
mcast_rate = 12000,
},
mesh = {
id = 'ffhl-mesh',
mcast_rate = 12000,
},
},
2015-07-25 18:41:03 +00:00
|
|
|
mesh = {
|
|
|
|
-- Adjust these values!
|
|
|
|
id = 'ffxx-mesh',
|
|
|
|
mcast_rate = 12000,
|
|
|
|
-- disabled = true, (optional)
|
|
|
|
},
|
2014-10-13 12:02:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
-- Wireless configuration for 5 GHz interfaces.
|
|
|
|
-- This should be equal to the 2.4 GHz variant, except
|
2015-10-27 00:56:10 +00:00
|
|
|
-- for channel.
|
2014-10-13 12:02:28 +00:00
|
|
|
wifi5 = {
|
|
|
|
channel = 44,
|
mesh-batadv-core: introduce 11s mesh, refactor wireless config
This is a site.conf-breaking change in regard to the wireless config.
Make sure to read http://gluon.readthedocs.org/en/latest/user/site.html
and update your site.conf accordingly!
Support for 802.11s mesh interfaces has been added. Gluon now supports
three interface types: ap, ibss and mesh. All of them are now optional
and may be configured independently in site.conf.
A sample site.conf may look like this:
wifi24 = {
channel = 1,
htmode = 'HT40+',
ap = {
ssid = 'luebeck.freifunk.net',
},
ibss = {
ssid = '02:d1:11:37:fc:38',
bssid = '02:d1:11:37:fc:38',
mcast_rate = 12000,
},
mesh = {
id = 'ffhl-mesh',
mcast_rate = 12000,
},
},
2015-07-25 18:41:03 +00:00
|
|
|
ap = {
|
|
|
|
ssid = 'entenhausen.freifunk.net',
|
|
|
|
},
|
|
|
|
mesh = {
|
|
|
|
id = 'ffxx-mesh',
|
|
|
|
mcast_rate = 12000,
|
|
|
|
},
|
2014-10-13 12:02:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
-- The next node feature allows clients to always reach the node it is
|
|
|
|
-- connected to using a known IP address.
|
|
|
|
next_node = {
|
|
|
|
-- anycast IPs of all nodes
|
2015-01-16 14:23:48 +00:00
|
|
|
ip4 = '10.xxx.0.xxx',
|
|
|
|
ip6 = 'fdxx:xxxx:xxxx::xxxx',
|
2014-10-13 12:02:28 +00:00
|
|
|
|
|
|
|
-- anycast MAC of all nodes
|
2015-01-16 14:23:48 +00:00
|
|
|
mac = 'xe:xx:xx:xx:xx:xx',
|
2014-10-13 12:02:28 +00:00
|
|
|
},
|
|
|
|
|
2015-10-12 18:56:26 +00:00
|
|
|
-- Options specific to routing protocols (optional)
|
|
|
|
-- mesh = {
|
|
|
|
-- Options specific to the batman-adv routing protocol (optional)
|
|
|
|
-- batman_adv = {
|
|
|
|
-- Gateway selection class (optional)
|
|
|
|
-- The default class 20 is based on the link quality (TQ) only,
|
|
|
|
-- class 1 is calculated from both the TQ and the announced bandwidth
|
|
|
|
-- gw_sel_class = 1,
|
|
|
|
-- },
|
|
|
|
-- },
|
|
|
|
|
2014-10-13 12:02:28 +00:00
|
|
|
-- Refer to http://fastd.readthedocs.org/en/latest/ to better understand
|
|
|
|
-- what these options do.
|
|
|
|
fastd_mesh_vpn = {
|
|
|
|
-- List of crypto-methods to use.
|
2015-01-16 14:23:48 +00:00
|
|
|
methods = {'salsa2012+umac'},
|
2015-05-14 00:13:01 +00:00
|
|
|
-- enabled = true,
|
2015-05-03 19:11:12 +00:00
|
|
|
-- configurable = true,
|
|
|
|
|
2015-09-12 15:31:26 +00:00
|
|
|
mtu = 1280,
|
2015-04-30 11:05:15 +00:00
|
|
|
groups = {
|
|
|
|
backbone = {
|
|
|
|
-- Limit number of connected peers to reduce bandwidth.
|
2015-09-12 15:32:31 +00:00
|
|
|
limit = 1,
|
2015-04-30 11:05:15 +00:00
|
|
|
|
|
|
|
-- List of peers.
|
|
|
|
peers = {
|
|
|
|
peer1 = {
|
|
|
|
key = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
|
|
|
|
|
|
|
|
-- This is a list, so you might add multiple entries.
|
|
|
|
remotes = {'ipv4 "xxx.somehost.invalid" port xxxxxx'},
|
|
|
|
},
|
|
|
|
peer2 = {
|
|
|
|
key = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
|
|
|
|
-- You can also omit the ipv4 to allow both connection via ipv4 and ipv6
|
|
|
|
remotes = {'"xxx.somehost2.invalid" port xxxxx'},
|
|
|
|
},
|
2014-10-13 12:02:28 +00:00
|
|
|
},
|
2015-04-30 11:05:15 +00:00
|
|
|
|
|
|
|
-- Optional: nested peer groups
|
|
|
|
-- groups = {
|
|
|
|
-- backbone_sub = {
|
|
|
|
-- ...
|
|
|
|
-- },
|
|
|
|
-- ...
|
|
|
|
-- },
|
2014-10-13 12:02:28 +00:00
|
|
|
},
|
2015-04-30 11:05:15 +00:00
|
|
|
-- Optional: additional peer groups, possibly with other limits
|
|
|
|
-- backbone2 = {
|
|
|
|
-- ...
|
|
|
|
-- },
|
2014-10-13 12:02:28 +00:00
|
|
|
},
|
2015-10-14 19:21:48 +00:00
|
|
|
|
|
|
|
bandwidth_limit = {
|
|
|
|
-- The bandwidth limit can be enabled by default here.
|
|
|
|
enabled = false,
|
|
|
|
|
|
|
|
-- Default upload limit (kbit/s).
|
|
|
|
egress = 200,
|
|
|
|
|
|
|
|
-- Default download limit (kbit/s).
|
|
|
|
ingress = 3000,
|
|
|
|
},
|
2014-10-13 12:02:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
autoupdater = {
|
|
|
|
-- Default branch. Don't forget to set GLUON_BRANCH when building!
|
|
|
|
branch = 'stable',
|
|
|
|
|
|
|
|
-- List of branches. You may define multiple branches.
|
|
|
|
branches = {
|
|
|
|
stable = {
|
|
|
|
name = 'stable',
|
|
|
|
|
|
|
|
-- List of mirrors to fetch images from. IPv6 required!
|
|
|
|
mirrors = {'http://1.updates.services.ffhl/stable/sysupgrade'},
|
|
|
|
|
|
|
|
-- Number of good signatures required.
|
|
|
|
-- Have multiple maintainers sign your build and only
|
|
|
|
-- accept it when a sufficient number of them have
|
|
|
|
-- signed it.
|
|
|
|
good_signatures = 2,
|
|
|
|
|
|
|
|
-- List of public keys of maintainers.
|
|
|
|
pubkeys = {
|
2015-01-16 14:23:48 +00:00
|
|
|
'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', -- Alice
|
|
|
|
'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', -- Bob
|
|
|
|
'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', -- Mary
|
2014-10-13 12:02:28 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2015-01-25 14:51:00 +00:00
|
|
|
-- Node roles
|
2015-04-30 21:48:07 +00:00
|
|
|
-- roles = {
|
2015-01-25 14:51:00 +00:00
|
|
|
-- default = 'node',
|
|
|
|
-- list = {
|
2015-04-30 21:48:07 +00:00
|
|
|
-- 'node',
|
|
|
|
-- 'test',
|
|
|
|
-- 'backbone',
|
|
|
|
-- 'service',
|
2015-01-25 14:51:00 +00:00
|
|
|
-- },
|
|
|
|
-- },
|
|
|
|
|
2015-01-24 09:18:30 +00:00
|
|
|
-- Skip setup mode (config mode) on first boot
|
|
|
|
-- setup_mode = {
|
|
|
|
-- skip = true,
|
|
|
|
-- },
|
2016-04-27 10:37:30 +00:00
|
|
|
|
|
|
|
-- Show/hide the altitude field
|
|
|
|
-- config_mode = {
|
|
|
|
-- geo_location = {
|
|
|
|
-- show_altitude = false,
|
|
|
|
-- },
|
|
|
|
-- },
|
2014-08-05 18:47:00 +00:00
|
|
|
}
|