123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- {
- -- 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 community
- site_name = 'Freifunk Hochstift - Brakel',
- -- short name of this community
- site_code = 'ffho_bkk',
- -- v4 and v6 prefixes in which nodes+clients might get an IP
- prefix4 = 'ToDo',
- prefix6 = 'ToDo',
- -- extra ipv6 prefixes used in this mesh area
- additional_prefix6 = { 'ToDo', },
- -- timezone
- timezone = 'CET-1CEST,M3.5.0,M10.5.0/3', -- Europe/Berlin
- -- network-internal ntp service
- ntp_servers = {'ntp.ffho.net'},
- -- OpenWRT Package Repository (IPv6 capable)
- opkg_repo = 'http://bo.mirror.garr.it/pub/1/openwrt/barrier_breaker/14.07/%S/packages/',
- -- regulatory domain of your wifi
- regdom = 'DE',
- -- wifi settings (2.4 GHz and 5 GHz)
- -- the most important thing to change is the SSID
- -- of the client network (hochstift.freifunk.net/yourcity) and
- -- both(!) mesh_?ssid ad-hoc mesh network ids.
- wifi24 = {
- ssid = 'hochstift.freifunk.net/brakel',
- channel = 1,
- htmode = 'HT20',
- mesh_ssid = 'ffho-mesh-bkk',
- mesh_bssid = '42:72:61:6b:65:6c',
- mesh_mcast_rate = 12000,
- },
- wifi5 = {
- ssid = 'hochstift.freifunk.net/brakel',
- channel = 44,
- htmode = 'HT40+',
- mesh_ssid = 'ffho-mesh-bkk',
- mesh_bssid = '42:72:61:6b:65:6c',
- mesh_mcast_rate = 12000,
- },
- -- IP address of each router
- -- At this IP a client can always connect to its
- -- currently connected node. Both v4 and v6 addr.
- -- must lie in the above prefix4 and prefix6.
- next_node = {
- ip4 = 'ToDo',
- ip6 = 'ToDo',
- -- mac address, must be unique in the client network
- -- (usually, you don't need to change this)
- mac = '16:41:95:40:f7:dc',
- },
- -- fastd (vpn) settings
- fastd_mesh_vpn = {
- -- cipher(s) to use
- methods = {'salsa2012+gmac'},
- -- the maximum transfer unit
- -- use 1426 for IPv4 gateways
- mtu = 1406,
- groups = {
- backbone = {
- -- specifies how many servers are contacted
- -- by a client simultanously
- limit = 1,
-
- -- list all available vpn servers
- peers = {
- gw01 = {
- -- public fastd key of the vpn server
- key = 'ToDo',
- -- remotes is an array of ways on how to reach the VPN server
- -- Use public addresses here, these addresses are used when the mesh might not be connected yet.
- -- format: '[|ipv4|ipv6] "hostname-or-ip-address" port 10000'
- remotes = {
- 'ipv6 "v6.gw01.bkk.ffho.net" port 10000',
- 'ipv4 "v4.gw01.bkk.ffho.net" port 10000',
- -- 'ipv6 "ToDo" port 10000',
- -- 'ipv4 "ToDo" port 10000',
- },
- },
- gw02 = {
- key = 'ToDo',
- remotes = {
- 'ipv6 "v6.gw02.bkk.ffho.net" port 10000',
- 'ipv4 "v4.gw02.bkk.ffho.net" port 10000',
- -- 'ipv6 "ToDo" port 10000',
- -- 'ipv4 "ToDo" port 10000',
- },
- },
- },
- },
- },
- },
- -- configure the autoupdater
- autoupdater = {
- enabled = 1,
- -- default branch for a firmware
- -- In config-mode, the user can select a different branch from below
- branch = 'stable',
- -- available branches for the autoupdater
- branches = {
- stable = {
- -- visible name of this branch (why not use the internal identifier here, too)
- name = 'stable',
- -- where to get the manifest file (without the trailing /manifest)
- -- It's wise to use an internal address here,
- -- but specifying a publicly available update site does not hurt.
- mirrors = {'http://[fdca:ffee:ff12:a254::80]/ToDo/stable', 'http://firmware.ffho.net/ToDo/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 = {
- '16b0e942929d6592d4a01b66b334427ba4db03b388a876432958d9010bd8d8b5', -- HeJ
- 'b0197042824a752c2dba717a4b2ded88852111bbe12e6b5f57fdfa3abb9312c0', -- thardes2
- 'ba2e6ff4de41ade9959702195d4c26c764e7aab85c627363681c29dbc4a8a2c5', -- oscar-
- 'fb9d6beba63dcb6175d0248c1e743b5fe4359474eb264d27f389d7a962e24477', -- northalpha
- 'f70f9ddeb307fff8fca31a76f4fbd0ac676dab8ad143625f0a4160d434d72876', -- Barbarossa
- },
- },
- testing = {
- name = 'testing',
- mirrors = {'http://[fdca:ffee:ff12:a254::80]/ToDo/testing','http://firmware.ffho.net/ToDo/testing'},
- good_signatures = 2,
- pubkeys = {
- '16b0e942929d6592d4a01b66b334427ba4db03b388a876432958d9010bd8d8b5', -- HeJ
- 'b0197042824a752c2dba717a4b2ded88852111bbe12e6b5f57fdfa3abb9312c0', -- thardes2
- 'ba2e6ff4de41ade9959702195d4c26c764e7aab85c627363681c29dbc4a8a2c5', -- oscar-
- 'fb9d6beba63dcb6175d0248c1e743b5fe4359474eb264d27f389d7a962e24477', -- northalpha
- 'f70f9ddeb307fff8fca31a76f4fbd0ac676dab8ad143625f0a4160d434d72876', -- Barbarossa
- },
- },
- experimental = {
- name = 'experimental',
- mirrors = {'http://[fdca:ffee:ff12:a254::80]/ToDo/experimental','http://firmware.ffho.net/ToDo/experimental'},
- good_signatures = 1,
- pubkeys = {
- '16b0e942929d6592d4a01b66b334427ba4db03b388a876432958d9010bd8d8b5', -- HeJ
- 'b0197042824a752c2dba717a4b2ded88852111bbe12e6b5f57fdfa3abb9312c0', -- thardes2
- 'ba2e6ff4de41ade9959702195d4c26c764e7aab85c627363681c29dbc4a8a2c5', -- oscar-
- 'fb9d6beba63dcb6175d0248c1e743b5fe4359474eb264d27f389d7a962e24477', -- northalpha
- 'f70f9ddeb307fff8fca31a76f4fbd0ac676dab8ad143625f0a4160d434d72876', -- Barbarossa
- },
- },
- },
- },
- -- default traffic shaping (bandwidth limit) settings
- simple_tc = {
- mesh_vpn = {
- ifname = 'mesh-vpn',
- enabled = false,
- limit_egress = 200,
- limit_ingress = 3000,
- },
- },
- -- configure ffpb-debug
- debugserver = {
- host = { 'debugreport.ffho.net', 'fdca:ffee:ff12:a254::deb9' },
- port = 1337,
- liveport = 1338,
- },
- -- enable BATMAN on WAN interface by default (requires gluon-batman-on-wan package)
- batman_on_wan = 0,
- }
|