123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- {
- -- A new node's name will be autogenerated from
- -- it's primary MAC address and this prefix.
- -- e.g. freifunk-0123456789ab
- hostname_prefix = 'freifunk-',
- -- name of this site
- site_name = 'Freifunk Hochstift',
- -- short name of this site
- site_code = 'ffho',
- -- short name of default domain
- default_domain = 'default',
- -- timezone
- timezone = 'CET-1CEST,M3.5.0,M10.5.0/3', -- Europe/Berlin
- -- network-internal ntp service
- ntp_servers = {'ntp.srv.in.ffho.net'},
- -- OPKG package repositorys (IPv6 capable)
- opkg = {
- lede = 'http://firmware.srv.in.ffho.net/lede/packages-%v/%A',
- extra = {
- gluon = 'http://firmware.srv.in.ffho.net/%GR/modules/%S',
- },
- },
- -- regulatory domain of your wifi
- regdom = 'DE',
- -- wifi settings (2.4 GHz and 5 GHz)
- wifi24 = {
- channel = 1,
- supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
- basic_rate = {6000, 9000, 18000, 36000, 54000},
- mesh = {
- mcast_rate = 12000,
- },
- },
- wifi5 = {
- channel = 44,
- mesh = {
- mcast_rate = 12000,
- },
- },
- next_node = {
- name = 'node.ffho.net',
- },
- mesh_vpn = {
- -- the maximum transfer unit
- mtu = 1406,
- -- fastd (vpn) settings
- fastd = {
- -- cipher(s) to use
- methods = {'salsa2012+umac'},
- groups = {
- backbone = {
- -- specifies how many servers are contacted
- -- by a client simultanously
- limit = 1,
- },
- },
- },
- -- default traffic shaping (bandwidth limit) settings
- bandwidth_limit = {
- enabled = false,
- egress = 500,
- ingress = 4000,
- },
- },
- -- configure the autoupdater
- autoupdater = {
- -- default branch for a firmware without enabled autoupdater
- branch = 'stable',
- -- available branches for the autoupdater
- branches = {
- stable = {
- -- visible name of this branch (why not use the internal identifier here, too)
- name = 'stable',
- -- Number of valid manifest signatures necessary to accept the manifest as "good".
- good_signatures = 3,
- -- list of public keys which are considered "good" for manifest signatures
- pubkeys = {
- 'ba2e6ff4de41ade9959702195d4c26c764e7aab85c627363681c29dbc4a8a2c5', -- oscar-
- 'fb9d6beba63dcb6175d0248c1e743b5fe4359474eb264d27f389d7a962e24477', -- northalpha
- 'f70f9ddeb307fff8fca31a76f4fbd0ac676dab8ad143625f0a4160d434d72876', -- Barbarossa
- '9841dde0b9f6485d5fcdc858fb15c1db1c3bc77fb81aef3f0d4b835f76a3d73b', -- kb-light
- '39ef16b1853e54249dae2d06948329a93e3e13f354aaab792552aacd1d0b45ba', -- phimeas
- },
- },
- testing = {
- name = 'testing',
- good_signatures = 2,
- pubkeys = {
- 'ba2e6ff4de41ade9959702195d4c26c764e7aab85c627363681c29dbc4a8a2c5', -- oscar-
- 'fb9d6beba63dcb6175d0248c1e743b5fe4359474eb264d27f389d7a962e24477', -- northalpha
- 'f70f9ddeb307fff8fca31a76f4fbd0ac676dab8ad143625f0a4160d434d72876', -- Barbarossa
- '9841dde0b9f6485d5fcdc858fb15c1db1c3bc77fb81aef3f0d4b835f76a3d73b', -- kb-light
- '39ef16b1853e54249dae2d06948329a93e3e13f354aaab792552aacd1d0b45ba', -- phimeas
- },
- },
- experimental = {
- name = 'experimental',
- good_signatures = 1,
- pubkeys = {
- 'ba2e6ff4de41ade9959702195d4c26c764e7aab85c627363681c29dbc4a8a2c5', -- oscar-
- 'fb9d6beba63dcb6175d0248c1e743b5fe4359474eb264d27f389d7a962e24477', -- northalpha
- 'f70f9ddeb307fff8fca31a76f4fbd0ac676dab8ad143625f0a4160d434d72876', -- Barbarossa
- '9841dde0b9f6485d5fcdc858fb15c1db1c3bc77fb81aef3f0d4b835f76a3d73b', -- kb-light
- '39ef16b1853e54249dae2d06948329a93e3e13f354aaab792552aacd1d0b45ba', -- phimeas
- },
- },
- },
- },
- config_mode = {
- -- Show/hide the altitude field
- geo_location = {
- show_altitude = false,
- },
- -- define if the contact field is obligatory (optional)
- owner = {
- obligatory = false,
- },
- },
- -- configure DNS caching
- dns = {
- cacheentries = 1000,
- servers = { '2a03:2260:2342:f251::53' },
- },
- domain_migration = {
- match = '^ffho_(.*)$',
- },
- }
|