forked from remote/site-ffmuc
Compare commits
59 Commits
babel-test
...
ba03e0910f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ba03e0910f | ||
|
|
152c34eb69 | ||
|
|
279043a751 | ||
|
|
882316d88b | ||
|
|
2c5eb2f2b2 | ||
|
|
76e8a5bffd | ||
|
|
efbf94b1fc | ||
|
|
b9eb8cdc39 | ||
|
|
1c3bdd42c0 | ||
|
|
bd78b8cc47 | ||
|
|
a87993e6c2 | ||
|
|
f274d51ea4 | ||
|
|
6122b567c9 | ||
|
|
ac8e305d02 | ||
|
|
9efcd65a99 | ||
|
|
207d9b9ff9 | ||
|
|
386547f105 | ||
|
|
33910e5208 | ||
|
|
ba8ff00a73 | ||
|
|
96e86615ab | ||
|
|
99b1cf2fee | ||
|
|
c0890ea7e4 | ||
|
|
46fece9d42 | ||
|
|
85b3795536 | ||
|
|
084b8fcee8 | ||
|
|
8cb77510e5 | ||
|
|
cc770037e7 | ||
|
|
79c79d4a13 | ||
|
|
f26af0c3a6 | ||
|
|
02f7015223 | ||
|
|
bba5ba60ec | ||
|
|
a5c6f0a493 | ||
|
|
28344da8f5 | ||
|
|
9522996463 | ||
|
|
a14cb14ee7 | ||
|
|
7c5b69e932 | ||
|
|
c4d2f66fde | ||
|
|
099429146c | ||
|
|
25b3852ade | ||
|
|
87ac349816 | ||
|
|
1ba9685e1b | ||
|
|
95534a512a | ||
|
|
1873356fc4 | ||
|
|
fec3303aa3 | ||
|
|
3bc26fdbc0 | ||
|
|
5720697e92 | ||
|
|
3f43a3f0b8 | ||
|
|
3bb28a7ffa | ||
|
|
7f8329816d | ||
|
|
0cb16f9649 | ||
|
|
b6d5d86ffc | ||
|
|
ea3ee0a84c | ||
|
|
d1dfe9b8b7 | ||
|
|
adb170bf31 | ||
|
|
5b6f780d2c | ||
|
|
6b75ac27ac | ||
|
|
98b6602c57 | ||
|
|
3fb12769ca | ||
|
|
010e61b9ea |
29
CHANGELOG.md
29
CHANGELOG.md
@@ -1,6 +1,27 @@
|
||||
# Freifunk München Firmware Changelog
|
||||
|
||||
## v2016.1 (not released yet)
|
||||
## v2017.1
|
||||
|
||||
- Updated to Gluon v2016.2.7
|
||||
- Changes:
|
||||
- https://gluon.readthedocs.io/en/v2016.2.7/releases/v2016.2.7.html
|
||||
|
||||
## v2017.0
|
||||
|
||||
- Updated to Gluon v2016.2.6 (upstream)
|
||||
- Changes:
|
||||
- https://gluon.readthedocs.io/en/v2016.2.7/releases/v2016.1.6.html
|
||||
- https://gluon.readthedocs.io/en/v2016.2.7/releases/v2016.2.html
|
||||
- https://gluon.readthedocs.io/en/v2016.2.7/releases/v2016.2.1.html
|
||||
- https://gluon.readthedocs.io/en/v2016.2.7/releases/v2016.2.2.html
|
||||
- https://gluon.readthedocs.io/en/v2016.2.7/releases/v2016.2.3.html
|
||||
- https://gluon.readthedocs.io/en/v2016.2.7/releases/v2016.2.4.html
|
||||
- https://gluon.readthedocs.io/en/v2016.2.7/releases/v2016.2.5.html
|
||||
- https://gluon.readthedocs.io/en/v2016.2.7/releases/v2016.2.6.html
|
||||
- site.mk
|
||||
- added GLUON_REGION = eu setting
|
||||
|
||||
## v2016.0
|
||||
- Updated to Gluon v2016.1.5 (ffmuc fork)
|
||||
- Changes:
|
||||
- https://gluon.readthedocs.org/en/v2016.1/releases/v2016.1.html
|
||||
@@ -13,9 +34,9 @@
|
||||
- preserve wifi channels feature (76a77902e3624167e81ca6e200519468bb66d5f7)
|
||||
- new package tecff-ath9k-broken-wifi-workaround (freifunkmuc/gluon-packages)
|
||||
- added fix for autoupdater (8f5a7c90019085dd8f02f96ab0e7a905f82e1be0)
|
||||
- site.conf
|
||||
- disabled IPv4-only fastd
|
||||
- Changed MTU size to 1280
|
||||
- site.conf
|
||||
- changed MTU size to 1280
|
||||
- due to the decreased MTU fastd can now support IPv6
|
||||
- site.mk
|
||||
- added USB support for various devices
|
||||
|
||||
|
||||
41
Jenkinsfile
vendored
41
Jenkinsfile
vendored
@@ -1,4 +1,37 @@
|
||||
def _pipelineNotify(String buildStatus = 'STARTED') {
|
||||
// build status of null means successful
|
||||
buildStatus = buildStatus ?: 'SUCCESSFUL'
|
||||
|
||||
// Default values
|
||||
def colorName = 'RED'
|
||||
def colorCode = '#FF0000'
|
||||
def subject = "${buildStatus}: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]'"
|
||||
def summary = "${subject} (${env.BUILD_URL})"
|
||||
|
||||
// Override default values based on build status
|
||||
if (buildStatus == 'STARTED') {
|
||||
color = 'YELLOW'
|
||||
colorCode = '#FFFF00'
|
||||
} else if (buildStatus == 'SUCCESSFUL') {
|
||||
color = 'GREEN'
|
||||
colorCode = '#00FF00'
|
||||
} else {
|
||||
color = 'RED'
|
||||
colorCode = '#FF0000'
|
||||
}
|
||||
|
||||
try {
|
||||
mattermostSend (color: colorCode, message: summary)
|
||||
}
|
||||
catch (e) {
|
||||
echo 'Unable to sent Mattermost notification'
|
||||
}
|
||||
}
|
||||
|
||||
node {
|
||||
try {
|
||||
_pipelineNotify()
|
||||
|
||||
stage 'Checkout'
|
||||
checkout scm
|
||||
|
||||
@@ -7,4 +40,12 @@ node {
|
||||
|
||||
stage 'Archive'
|
||||
archive 'output/**/*'
|
||||
}
|
||||
catch (e) {
|
||||
currentBuild.result = "FAILED"
|
||||
throw e
|
||||
}
|
||||
finally {
|
||||
_pipelineNotify(currentBuild.result)
|
||||
}
|
||||
}
|
||||
|
||||
9
Makefile
9
Makefile
@@ -1,16 +1,19 @@
|
||||
GLUON_BUILD_DIR := gluon-build
|
||||
GLUON_GIT_URL := https://github.com/freifunkmuc/gluon.git
|
||||
GLUON_GIT_REF := dddade25de0c20207385c339d66d3ac7b8092136
|
||||
GLUON_GIT_URL := https://github.com/freifunk-gluon/gluon.git
|
||||
GLUON_GIT_REF := v2017.1.2
|
||||
|
||||
SECRET_KEY_FILE ?= ${HOME}/.gluon-secret-key
|
||||
|
||||
GLUON_TARGETS ?= \
|
||||
ar71xx-generic \
|
||||
ar71xx-tiny \
|
||||
ar71xx-nand \
|
||||
mpc85xx-generic \
|
||||
x86-64 \
|
||||
x86-generic \
|
||||
x86-kvm_guest
|
||||
x86-geode \
|
||||
brcm2708-bcm2708 \
|
||||
brcm2708-bcm2709
|
||||
|
||||
GLUON_RELEASE := $(shell git describe --tags 2>/dev/null)
|
||||
ifneq (,$(shell git describe --exact-match --tags 2>/dev/null))
|
||||
|
||||
10
README.md
10
README.md
@@ -2,11 +2,13 @@
|
||||
|
||||
Check out this repository and execute `make`, i.e. like this:
|
||||
|
||||
git clone https://github.com/freifunkMUC/site-ffm.git site-ffm
|
||||
cd site-ffm
|
||||
make
|
||||
```bash
|
||||
git clone https://github.com/freifunkMUC/site-ffm.git site-ffm
|
||||
cd site-ffm
|
||||
make
|
||||
```
|
||||
|
||||
## Further Resources
|
||||
|
||||
Look at the [site configuration related Gluon documentation](http://gluon.readthedocs.org/en/v2016.1/user/site.html)
|
||||
Look at the [site configuration related Gluon documentation](https://gluon.readthedocs.io/en/v2017.1.x/user/site.html)
|
||||
for information on site configuration options and examples from other communities.
|
||||
|
||||
153
extra/ffbay_dah.conf
Normal file
153
extra/ffbay_dah.conf
Normal file
@@ -0,0 +1,153 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Landkreis Dachau (DAH)',
|
||||
site_code = 'ffbay_dah',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.248.0/21',
|
||||
prefix6 = 'fdef:ffc0:4fff:1e::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-umland-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc.umland',
|
||||
bssid = '02:0E:8E:1E:61:19',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc.umland',
|
||||
bssid = '02:0E:8E:1E:61:19',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.248.1',
|
||||
ip6 = 'fdef:ffc0:4fff:1e::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gwu01 = {
|
||||
key = '70299e3a589522a89306732fdfe43f35d9af083e4db322d87be52cf45c89771b',
|
||||
remotes = {
|
||||
'"gwu01.ffmuc.net" port 10049',
|
||||
'"gwu01.freifunk-muenchen.de" port 10049',
|
||||
},
|
||||
},
|
||||
gwu02 = {
|
||||
key = '32765d3337be727de5840930a221962a59cf5529ae6c1d3753e58ad460e510a5',
|
||||
remotes = {
|
||||
'"gwu02.ffmuc.net" port 10049',
|
||||
'"gwu02.freifunk-muenchen.de" port 10049',
|
||||
},
|
||||
},
|
||||
gwu03 = {
|
||||
key = '61fe3197ed7e934284adc2571523104d8e5391db2427dca9528f0d34bb60a522',
|
||||
remotes = {
|
||||
'"gwu03.ffmuc.net" port 10049',
|
||||
'"gwu03.freifunk-muenchen.de" port 10049',
|
||||
},
|
||||
},
|
||||
gwu04 = {
|
||||
key = '443898162e1e9ec09da0904d72d8145026f4452a4b1e880a07dc6699418c69d1',
|
||||
remotes = {
|
||||
'"gwu04.ffmuc.net" port 10049',
|
||||
'"gwu04.freifunk-muenchen.de" port 10049',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
153
extra/ffbay_ebe.conf
Normal file
153
extra/ffbay_ebe.conf
Normal file
@@ -0,0 +1,153 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Landkreis Ebersberg (EBE)',
|
||||
site_code = 'ffbay_ebe',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.240.0/21',
|
||||
prefix6 = 'fdef:ffc0:4fff:21::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-umland-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc.umland',
|
||||
bssid = '02:0E:8E:1E:61:19',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc.umland',
|
||||
bssid = '02:0E:8E:1E:61:19',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.240.1',
|
||||
ip6 = 'fdef:ffc0:4fff:21::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gwu01 = {
|
||||
key = '70299e3a589522a89306732fdfe43f35d9af083e4db322d87be52cf45c89771b',
|
||||
remotes = {
|
||||
'"gwu01.ffmuc.net" port 10062',
|
||||
'"gwu01.freifunk-muenchen.de" port 10062',
|
||||
},
|
||||
},
|
||||
gwu02 = {
|
||||
key = '32765d3337be727de5840930a221962a59cf5529ae6c1d3753e58ad460e510a5',
|
||||
remotes = {
|
||||
'"gwu02.ffmuc.net" port 10062',
|
||||
'"gwu02.freifunk-muenchen.de" port 10062',
|
||||
},
|
||||
},
|
||||
gwu03 = {
|
||||
key = '61fe3197ed7e934284adc2571523104d8e5391db2427dca9528f0d34bb60a522',
|
||||
remotes = {
|
||||
'"gwu03.ffmuc.net" port 10062',
|
||||
'"gwu03.freifunk-muenchen.de" port 10062',
|
||||
},
|
||||
},
|
||||
gwu04 = {
|
||||
key = '443898162e1e9ec09da0904d72d8145026f4452a4b1e880a07dc6699418c69d1',
|
||||
remotes = {
|
||||
'"gwu04.ffmuc.net" port 10062',
|
||||
'"gwu04.freifunk-muenchen.de" port 10062',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
153
extra/ffbay_ed.conf
Normal file
153
extra/ffbay_ed.conf
Normal file
@@ -0,0 +1,153 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Landkreis Erding (ED)',
|
||||
site_code = 'ffbay_ed',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.16.0/21',
|
||||
prefix6 = 'fdef:ffc0:4fff:20::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-umland-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc.umland',
|
||||
bssid = '02:0E:8E:1E:61:19',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc.umland',
|
||||
bssid = '02:0E:8E:1E:61:19',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.16.1',
|
||||
ip6 = 'fdef:ffc0:4fff:20::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gwu01 = {
|
||||
key = '70299e3a589522a89306732fdfe43f35d9af083e4db322d87be52cf45c89771b',
|
||||
remotes = {
|
||||
'"gwu01.ffmuc.net" port 10061',
|
||||
'"gwu01.freifunk-muenchen.de" port 10061',
|
||||
},
|
||||
},
|
||||
gwu02 = {
|
||||
key = '32765d3337be727de5840930a221962a59cf5529ae6c1d3753e58ad460e510a5',
|
||||
remotes = {
|
||||
'"gwu02.ffmuc.net" port 10061',
|
||||
'"gwu02.freifunk-muenchen.de" port 10061',
|
||||
},
|
||||
},
|
||||
gwu03 = {
|
||||
key = '61fe3197ed7e934284adc2571523104d8e5391db2427dca9528f0d34bb60a522',
|
||||
remotes = {
|
||||
'"gwu03.ffmuc.net" port 10061',
|
||||
'"gwu03.freifunk-muenchen.de" port 10061',
|
||||
},
|
||||
},
|
||||
gwu04 = {
|
||||
key = '443898162e1e9ec09da0904d72d8145026f4452a4b1e880a07dc6699418c69d1',
|
||||
remotes = {
|
||||
'"gwu04.ffmuc.net" port 10061',
|
||||
'"gwu04.freifunk-muenchen.de" port 10061',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
153
extra/ffbay_ffb.conf
Normal file
153
extra/ffbay_ffb.conf
Normal file
@@ -0,0 +1,153 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Landkreis Fürstenfeldbruck (FFB)',
|
||||
site_code = 'ffbay_ffb',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.232.0/21',
|
||||
prefix6 = 'fdef:ffc0:4fff:1d::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-umland-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc.umland',
|
||||
bssid = '02:0E:8E:1E:61:19',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc.umland',
|
||||
bssid = '02:0E:8E:1E:61:19',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.232.1',
|
||||
ip6 = 'fdef:ffc0:4fff:1d::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gwu01 = {
|
||||
key = '70299e3a589522a89306732fdfe43f35d9af083e4db322d87be52cf45c89771b',
|
||||
remotes = {
|
||||
'"gwu01.ffmuc.net" port 10048',
|
||||
'"gwu01.freifunk-muenchen.de" port 10048',
|
||||
},
|
||||
},
|
||||
gwu02 = {
|
||||
key = '32765d3337be727de5840930a221962a59cf5529ae6c1d3753e58ad460e510a5',
|
||||
remotes = {
|
||||
'"gwu02.ffmuc.net" port 10048',
|
||||
'"gwu02.freifunk-muenchen.de" port 10048',
|
||||
},
|
||||
},
|
||||
gwu03 = {
|
||||
key = '61fe3197ed7e934284adc2571523104d8e5391db2427dca9528f0d34bb60a522',
|
||||
remotes = {
|
||||
'"gwu03.ffmuc.net" port 10048',
|
||||
'"gwu03.freifunk-muenchen.de" port 10048',
|
||||
},
|
||||
},
|
||||
gwu04 = {
|
||||
key = '443898162e1e9ec09da0904d72d8145026f4452a4b1e880a07dc6699418c69d1',
|
||||
remotes = {
|
||||
'"gwu04.ffmuc.net" port 10048',
|
||||
'"gwu04.freifunk-muenchen.de" port 10048',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
153
extra/ffbay_fs.conf
Normal file
153
extra/ffbay_fs.conf
Normal file
@@ -0,0 +1,153 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Landkreis Freising (FS)',
|
||||
site_code = 'ffbay_fs',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.224.0/21',
|
||||
prefix6 = 'fdef:ffc0:4fff:1f::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-umland-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc.umland',
|
||||
bssid = '02:0E:8E:1E:61:19',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc.umland',
|
||||
bssid = '02:0E:8E:1E:61:19',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.224.1',
|
||||
ip6 = 'fdef:ffc0:4fff:1f::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gwu01 = {
|
||||
key = '70299e3a589522a89306732fdfe43f35d9af083e4db322d87be52cf45c89771b',
|
||||
remotes = {
|
||||
'"gwu01.ffmuc.net" port 10050',
|
||||
'"gwu01.freifunk-muenchen.de" port 10050',
|
||||
},
|
||||
},
|
||||
gwu02 = {
|
||||
key = '32765d3337be727de5840930a221962a59cf5529ae6c1d3753e58ad460e510a5',
|
||||
remotes = {
|
||||
'"gwu02.ffmuc.net" port 10050',
|
||||
'"gwu02.freifunk-muenchen.de" port 10050',
|
||||
},
|
||||
},
|
||||
gwu03 = {
|
||||
key = '61fe3197ed7e934284adc2571523104d8e5391db2427dca9528f0d34bb60a522',
|
||||
remotes = {
|
||||
'"gwu03.ffmuc.net" port 10050',
|
||||
'"gwu03.freifunk-muenchen.de" port 10050',
|
||||
},
|
||||
},
|
||||
gwu04 = {
|
||||
key = '443898162e1e9ec09da0904d72d8145026f4452a4b1e880a07dc6699418c69d1',
|
||||
remotes = {
|
||||
'"gwu04.ffmuc.net" port 10050',
|
||||
'"gwu04.freifunk-muenchen.de" port 10050',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
153
extra/ffbay_sta.conf
Normal file
153
extra/ffbay_sta.conf
Normal file
@@ -0,0 +1,153 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Landkreis Starnberg (STA)',
|
||||
site_code = 'ffbay_sta',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.0.0/21',
|
||||
prefix6 = 'fdef:ffc0:4fff:1c::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-umland-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc.umland',
|
||||
bssid = '02:0E:8E:1E:61:19',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc.umland',
|
||||
bssid = '02:0E:8E:1E:61:19',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.0.1',
|
||||
ip6 = 'fdef:ffc0:4fff:1c::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gwu01 = {
|
||||
key = '70299e3a589522a89306732fdfe43f35d9af083e4db322d87be52cf45c89771b',
|
||||
remotes = {
|
||||
'"gwu01.ffmuc.net" port 10047',
|
||||
'"gwu01.freifunk-muenchen.de" port 10047',
|
||||
},
|
||||
},
|
||||
gwu02 = {
|
||||
key = '32765d3337be727de5840930a221962a59cf5529ae6c1d3753e58ad460e510a5',
|
||||
remotes = {
|
||||
'"gwu02.ffmuc.net" port 10047',
|
||||
'"gwu02.freifunk-muenchen.de" port 10047',
|
||||
},
|
||||
},
|
||||
gwu03 = {
|
||||
key = '61fe3197ed7e934284adc2571523104d8e5391db2427dca9528f0d34bb60a522',
|
||||
remotes = {
|
||||
'"gwu03.ffmuc.net" port 10047',
|
||||
'"gwu03.freifunk-muenchen.de" port 10047',
|
||||
},
|
||||
},
|
||||
gwu04 = {
|
||||
key = '443898162e1e9ec09da0904d72d8145026f4452a4b1e880a07dc6699418c69d1',
|
||||
remotes = {
|
||||
'"gwu04.ffmuc.net" port 10047',
|
||||
'"gwu04.freifunk-muenchen.de" port 10047',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
153
extra/ffbay_tol.conf
Normal file
153
extra/ffbay_tol.conf
Normal file
@@ -0,0 +1,153 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Landkreis Bad Tölz-Wolfratshausen (TÖL)',
|
||||
site_code = 'ffbay_tol',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.8.0/21',
|
||||
prefix6 = 'fdef:ffc0:4fff:22::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-umland-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc.umland',
|
||||
bssid = '02:0E:8E:1E:61:19',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc.umland',
|
||||
bssid = '02:0E:8E:1E:61:19',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.8.1',
|
||||
ip6 = 'fdef:ffc0:4fff:22::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gwu01 = {
|
||||
key = '70299e3a589522a89306732fdfe43f35d9af083e4db322d87be52cf45c89771b',
|
||||
remotes = {
|
||||
'"gwu01.ffmuc.net" port 10063',
|
||||
'"gwu01.freifunk-muenchen.de" port 10063',
|
||||
},
|
||||
},
|
||||
gwu02 = {
|
||||
key = '32765d3337be727de5840930a221962a59cf5529ae6c1d3753e58ad460e510a5',
|
||||
remotes = {
|
||||
'"gwu02.ffmuc.net" port 10063',
|
||||
'"gwu02.freifunk-muenchen.de" port 10063',
|
||||
},
|
||||
},
|
||||
gwu03 = {
|
||||
key = '61fe3197ed7e934284adc2571523104d8e5391db2427dca9528f0d34bb60a522',
|
||||
remotes = {
|
||||
'"gwu03.ffmuc.net" port 10063',
|
||||
'"gwu03.freifunk-muenchen.de" port 10063',
|
||||
},
|
||||
},
|
||||
gwu04 = {
|
||||
key = '443898162e1e9ec09da0904d72d8145026f4452a4b1e880a07dc6699418c69d1',
|
||||
remotes = {
|
||||
'"gwu04.ffmuc.net" port 10063',
|
||||
'"gwu04.freifunk-muenchen.de" port 10063',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
@@ -1,10 +1,12 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München',
|
||||
site_name = 'Freifunk München [ALT]',
|
||||
site_code = 'ffmuc',
|
||||
|
||||
opkg = {
|
||||
openwrt = 'http://openwrt.draic.info/%n/%v/%S/packages',
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.32.0/19',
|
||||
@@ -19,6 +21,8 @@
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
@@ -61,13 +65,28 @@
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
fastd_mesh_vpn = {
|
||||
methods = {'salsa2012+umac'},
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10001',
|
||||
'"gw01.freifunk-muenchen.de" port 10001',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10001',
|
||||
'"gw02.freifunk-muenchen.de" port 10001',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
@@ -89,40 +108,6 @@
|
||||
'"gw05.freifunk-muenchen.de" port 10001',
|
||||
},
|
||||
},
|
||||
gw06 = {
|
||||
key = 'd6834aa47a14358d804139630812276b3297e767d159c9cfd13fa6fb638000e0',
|
||||
remotes = {
|
||||
'"gw06.ffmuc.net" port 10001',
|
||||
'"gw06.freifunk-muenchen.de" port 10001',
|
||||
},
|
||||
},
|
||||
gw07 = {
|
||||
key = '77b5f5189c360b245e1c934941468cc9cf57f0646465be5765593a95e54449d6',
|
||||
remotes = {
|
||||
'"gw07.ffmuc.net" port 10001',
|
||||
'"gw07.freifunk-muenchen.de" port 10001',
|
||||
},
|
||||
},
|
||||
gw08 = {
|
||||
key = 'e476fb3a72365b550a23b587c0962eed362ed0c237175552b3261d22daaa2055',
|
||||
remotes = {
|
||||
'"gw08.ffmuc.net" port 10001',
|
||||
'"gw08.freifunk-muenchen.de" port 10001',
|
||||
},
|
||||
},
|
||||
gw09 = {
|
||||
key = 'b86f436c9bb13b308dc92c3889fd468c46679d9df0bf4892244372ab415694d0',
|
||||
remotes = {
|
||||
'"gw09.ffmuc.net" port 10001',
|
||||
'"gw09.freifunk-muenchen.de" port 10001',
|
||||
},
|
||||
},
|
||||
gw10 = {
|
||||
key = 'c04358d4818ec108fa4715e4517300cb2d0fa848dfa872770c4b8487d525e8bf',
|
||||
remotes = {
|
||||
'"gw10.ffmuc.net" port 10001',
|
||||
'"gw10.freifunk-muenchen.de" port 10001',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
160
extra/ffmuc01.conf
Normal file
160
extra/ffmuc01.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Altstadt-Lehel',
|
||||
site_code = 'ffmuc01',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.132.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:3::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.132.1',
|
||||
ip6 = 'fdef:ffc0:4fff:3::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10021',
|
||||
'"gw01.freifunk-muenchen.de" port 10021',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10021',
|
||||
'"gw02.freifunk-muenchen.de" port 10021',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10021',
|
||||
'"gw03.freifunk-muenchen.de" port 10021',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10021',
|
||||
'"gw04.freifunk-muenchen.de" port 10021',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10021',
|
||||
'"gw05.freifunk-muenchen.de" port 10021',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc02.conf
Normal file
160
extra/ffmuc02.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Ludwigsvorstadt-Isarvorstadt',
|
||||
site_code = 'ffmuc02',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.164.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:4::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.164.1',
|
||||
ip6 = 'fdef:ffc0:4fff:4::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10022',
|
||||
'"gw01.freifunk-muenchen.de" port 10022',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10022',
|
||||
'"gw02.freifunk-muenchen.de" port 10022',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10022',
|
||||
'"gw03.freifunk-muenchen.de" port 10022',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10022',
|
||||
'"gw04.freifunk-muenchen.de" port 10022',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10022',
|
||||
'"gw05.freifunk-muenchen.de" port 10022',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc03.conf
Normal file
160
extra/ffmuc03.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Maxvorstadt',
|
||||
site_code = 'ffmuc03',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.168.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:5::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.168.1',
|
||||
ip6 = 'fdef:ffc0:4fff:5::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10023',
|
||||
'"gw01.freifunk-muenchen.de" port 10023',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10023',
|
||||
'"gw02.freifunk-muenchen.de" port 10023',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10023',
|
||||
'"gw03.freifunk-muenchen.de" port 10023',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10023',
|
||||
'"gw04.freifunk-muenchen.de" port 10023',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10023',
|
||||
'"gw05.freifunk-muenchen.de" port 10023',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc04.conf
Normal file
160
extra/ffmuc04.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Schwabing-West',
|
||||
site_code = 'ffmuc04',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.200.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:6::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.200.1',
|
||||
ip6 = 'fdef:ffc0:4fff:6::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10024',
|
||||
'"gw01.freifunk-muenchen.de" port 10024',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10024',
|
||||
'"gw02.freifunk-muenchen.de" port 10024',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10024',
|
||||
'"gw03.freifunk-muenchen.de" port 10024',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10024',
|
||||
'"gw04.freifunk-muenchen.de" port 10024',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10024',
|
||||
'"gw05.freifunk-muenchen.de" port 10024',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc05.conf
Normal file
160
extra/ffmuc05.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Au-Haidhausen',
|
||||
site_code = 'ffmuc05',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.136.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:7::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.136.1',
|
||||
ip6 = 'fdef:ffc0:4fff:7::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10025',
|
||||
'"gw01.freifunk-muenchen.de" port 10025',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10025',
|
||||
'"gw02.freifunk-muenchen.de" port 10025',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10025',
|
||||
'"gw03.freifunk-muenchen.de" port 10025',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10025',
|
||||
'"gw04.freifunk-muenchen.de" port 10025',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10025',
|
||||
'"gw05.freifunk-muenchen.de" port 10025',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc06.conf
Normal file
160
extra/ffmuc06.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Sendling',
|
||||
site_code = 'ffmuc06',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.212.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:8::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.212.1',
|
||||
ip6 = 'fdef:ffc0:4fff:8::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10026',
|
||||
'"gw01.freifunk-muenchen.de" port 10026',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10026',
|
||||
'"gw02.freifunk-muenchen.de" port 10026',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10026',
|
||||
'"gw03.freifunk-muenchen.de" port 10026',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10026',
|
||||
'"gw04.freifunk-muenchen.de" port 10026',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10026',
|
||||
'"gw05.freifunk-muenchen.de" port 10026',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc07.conf
Normal file
160
extra/ffmuc07.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Sendling-Westpark',
|
||||
site_code = 'ffmuc07',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.208.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:9::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.208.1',
|
||||
ip6 = 'fdef:ffc0:4fff:9::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10027',
|
||||
'"gw01.freifunk-muenchen.de" port 10027',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10027',
|
||||
'"gw02.freifunk-muenchen.de" port 10027',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10027',
|
||||
'"gw03.freifunk-muenchen.de" port 10027',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10027',
|
||||
'"gw04.freifunk-muenchen.de" port 10027',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10027',
|
||||
'"gw05.freifunk-muenchen.de" port 10027',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc08.conf
Normal file
160
extra/ffmuc08.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Schwanthalerhöhe',
|
||||
site_code = 'ffmuc08',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.204.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:a::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.204.1',
|
||||
ip6 = 'fdef:ffc0:4fff:a::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10028',
|
||||
'"gw01.freifunk-muenchen.de" port 10028',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10028',
|
||||
'"gw02.freifunk-muenchen.de" port 10028',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10028',
|
||||
'"gw03.freifunk-muenchen.de" port 10028',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10028',
|
||||
'"gw04.freifunk-muenchen.de" port 10028',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10028',
|
||||
'"gw05.freifunk-muenchen.de" port 10028',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc09.conf
Normal file
160
extra/ffmuc09.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Neuhausen-Nymphenburg',
|
||||
site_code = 'ffmuc09',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.180.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:b::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.180.1',
|
||||
ip6 = 'fdef:ffc0:4fff:b::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10029',
|
||||
'"gw01.freifunk-muenchen.de" port 10029',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10029',
|
||||
'"gw02.freifunk-muenchen.de" port 10029',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10029',
|
||||
'"gw03.freifunk-muenchen.de" port 10029',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10029',
|
||||
'"gw04.freifunk-muenchen.de" port 10029',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10029',
|
||||
'"gw05.freifunk-muenchen.de" port 10029',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc10.conf
Normal file
160
extra/ffmuc10.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Moosach',
|
||||
site_code = 'ffmuc10',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.176.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:c::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.176.1',
|
||||
ip6 = 'fdef:ffc0:4fff:c::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10030',
|
||||
'"gw01.freifunk-muenchen.de" port 10030',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10030',
|
||||
'"gw02.freifunk-muenchen.de" port 10030',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10030',
|
||||
'"gw03.freifunk-muenchen.de" port 10030',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10030',
|
||||
'"gw04.freifunk-muenchen.de" port 10030',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10030',
|
||||
'"gw05.freifunk-muenchen.de" port 10030',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc11.conf
Normal file
160
extra/ffmuc11.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Milbertshofen-Am-Hart',
|
||||
site_code = 'ffmuc11',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.172.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:d::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.172.1',
|
||||
ip6 = 'fdef:ffc0:4fff:d::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10031',
|
||||
'"gw01.freifunk-muenchen.de" port 10031',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10031',
|
||||
'"gw02.freifunk-muenchen.de" port 10031',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10031',
|
||||
'"gw03.freifunk-muenchen.de" port 10031',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10031',
|
||||
'"gw04.freifunk-muenchen.de" port 10031',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10031',
|
||||
'"gw05.freifunk-muenchen.de" port 10031',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc12.conf
Normal file
160
extra/ffmuc12.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Schwabing-Freimann',
|
||||
site_code = 'ffmuc12',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.196.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:e::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.196.1',
|
||||
ip6 = 'fdef:ffc0:4fff:e::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10032',
|
||||
'"gw01.freifunk-muenchen.de" port 10032',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10032',
|
||||
'"gw02.freifunk-muenchen.de" port 10032',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10032',
|
||||
'"gw03.freifunk-muenchen.de" port 10032',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10032',
|
||||
'"gw04.freifunk-muenchen.de" port 10032',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10032',
|
||||
'"gw05.freifunk-muenchen.de" port 10032',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc13.conf
Normal file
160
extra/ffmuc13.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Bogenhausen',
|
||||
site_code = 'ffmuc13',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.148.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:f::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.148.1',
|
||||
ip6 = 'fdef:ffc0:4fff:f::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10033',
|
||||
'"gw01.freifunk-muenchen.de" port 10033',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10033',
|
||||
'"gw02.freifunk-muenchen.de" port 10033',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10033',
|
||||
'"gw03.freifunk-muenchen.de" port 10033',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10033',
|
||||
'"gw04.freifunk-muenchen.de" port 10033',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10033',
|
||||
'"gw05.freifunk-muenchen.de" port 10033',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc14.conf
Normal file
160
extra/ffmuc14.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Berg am Laim',
|
||||
site_code = 'ffmuc14',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.144.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:10::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.144.1',
|
||||
ip6 = 'fdef:ffc0:4fff:10::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10034',
|
||||
'"gw01.freifunk-muenchen.de" port 10034',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10034',
|
||||
'"gw02.freifunk-muenchen.de" port 10034',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10034',
|
||||
'"gw03.freifunk-muenchen.de" port 10034',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10034',
|
||||
'"gw04.freifunk-muenchen.de" port 10034',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10034',
|
||||
'"gw05.freifunk-muenchen.de" port 10034',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc15.conf
Normal file
160
extra/ffmuc15.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Trudering-Riem',
|
||||
site_code = 'ffmuc15',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.220.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:11::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.220.1',
|
||||
ip6 = 'fdef:ffc0:4fff:11::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10035',
|
||||
'"gw01.freifunk-muenchen.de" port 10035',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10035',
|
||||
'"gw02.freifunk-muenchen.de" port 10035',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10035',
|
||||
'"gw03.freifunk-muenchen.de" port 10035',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10035',
|
||||
'"gw04.freifunk-muenchen.de" port 10035',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10035',
|
||||
'"gw05.freifunk-muenchen.de" port 10035',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc16.conf
Normal file
160
extra/ffmuc16.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Ramersdorf-Perlach',
|
||||
site_code = 'ffmuc16',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.192.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:12::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.192.1',
|
||||
ip6 = 'fdef:ffc0:4fff:12::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10036',
|
||||
'"gw01.freifunk-muenchen.de" port 10036',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10036',
|
||||
'"gw02.freifunk-muenchen.de" port 10036',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10036',
|
||||
'"gw03.freifunk-muenchen.de" port 10036',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10036',
|
||||
'"gw04.freifunk-muenchen.de" port 10036',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10036',
|
||||
'"gw05.freifunk-muenchen.de" port 10036',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc17.conf
Normal file
160
extra/ffmuc17.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Giesing',
|
||||
site_code = 'ffmuc17',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.184.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:13::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.184.1',
|
||||
ip6 = 'fdef:ffc0:4fff:13::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10037',
|
||||
'"gw01.freifunk-muenchen.de" port 10037',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10037',
|
||||
'"gw02.freifunk-muenchen.de" port 10037',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10037',
|
||||
'"gw03.freifunk-muenchen.de" port 10037',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10037',
|
||||
'"gw04.freifunk-muenchen.de" port 10037',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10037',
|
||||
'"gw05.freifunk-muenchen.de" port 10037',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc19.conf
Normal file
160
extra/ffmuc19.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Thalkirchen-Obersendling-Forstenried-Fürstenried-Solln',
|
||||
site_code = 'ffmuc19',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.216.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:14::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.216.1',
|
||||
ip6 = 'fdef:ffc0:4fff:14::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10039',
|
||||
'"gw01.freifunk-muenchen.de" port 10039',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10039',
|
||||
'"gw02.freifunk-muenchen.de" port 10039',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10039',
|
||||
'"gw03.freifunk-muenchen.de" port 10039',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10039',
|
||||
'"gw04.freifunk-muenchen.de" port 10039',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10039',
|
||||
'"gw05.freifunk-muenchen.de" port 10039',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc20.conf
Normal file
160
extra/ffmuc20.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Hadern',
|
||||
site_code = 'ffmuc20',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.156.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:15::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.156.1',
|
||||
ip6 = 'fdef:ffc0:4fff:15::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10040',
|
||||
'"gw01.freifunk-muenchen.de" port 10040',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10040',
|
||||
'"gw02.freifunk-muenchen.de" port 10040',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10040',
|
||||
'"gw03.freifunk-muenchen.de" port 10040',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10040',
|
||||
'"gw04.freifunk-muenchen.de" port 10040',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10040',
|
||||
'"gw05.freifunk-muenchen.de" port 10040',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc21.conf
Normal file
160
extra/ffmuc21.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Pasing-Obermenzing',
|
||||
site_code = 'ffmuc21',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.188.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:16::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.188.1',
|
||||
ip6 = 'fdef:ffc0:4fff:16::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10041',
|
||||
'"gw01.freifunk-muenchen.de" port 10041',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10041',
|
||||
'"gw02.freifunk-muenchen.de" port 10041',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10041',
|
||||
'"gw03.freifunk-muenchen.de" port 10041',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10041',
|
||||
'"gw04.freifunk-muenchen.de" port 10041',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10041',
|
||||
'"gw05.freifunk-muenchen.de" port 10041',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc22.conf
Normal file
160
extra/ffmuc22.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Aubing-Lochhausen-Langwied',
|
||||
site_code = 'ffmuc22',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.140.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:17::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.140.1',
|
||||
ip6 = 'fdef:ffc0:4fff:17::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10042',
|
||||
'"gw01.freifunk-muenchen.de" port 10042',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10042',
|
||||
'"gw02.freifunk-muenchen.de" port 10042',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10042',
|
||||
'"gw03.freifunk-muenchen.de" port 10042',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10042',
|
||||
'"gw04.freifunk-muenchen.de" port 10042',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10042',
|
||||
'"gw05.freifunk-muenchen.de" port 10042',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc23.conf
Normal file
160
extra/ffmuc23.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Allach-Untermenzing',
|
||||
site_code = 'ffmuc23',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.128.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:18::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.128.1',
|
||||
ip6 = 'fdef:ffc0:4fff:18::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10043',
|
||||
'"gw01.freifunk-muenchen.de" port 10043',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10043',
|
||||
'"gw02.freifunk-muenchen.de" port 10043',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10043',
|
||||
'"gw03.freifunk-muenchen.de" port 10043',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10043',
|
||||
'"gw04.freifunk-muenchen.de" port 10043',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10043',
|
||||
'"gw05.freifunk-muenchen.de" port 10043',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc24.conf
Normal file
160
extra/ffmuc24.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Feldmoching-Hasenbergl',
|
||||
site_code = 'ffmuc24',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.152.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:19::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.152.1',
|
||||
ip6 = 'fdef:ffc0:4fff:19::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10044',
|
||||
'"gw01.freifunk-muenchen.de" port 10044',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10044',
|
||||
'"gw02.freifunk-muenchen.de" port 10044',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10044',
|
||||
'"gw03.freifunk-muenchen.de" port 10044',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10044',
|
||||
'"gw04.freifunk-muenchen.de" port 10044',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10044',
|
||||
'"gw05.freifunk-muenchen.de" port 10044',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc25.conf
Normal file
160
extra/ffmuc25.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - Laim',
|
||||
site_code = 'ffmuc25',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.160.0/22',
|
||||
prefix6 = 'fdef:ffc0:4fff:1a::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.160.1',
|
||||
ip6 = 'fdef:ffc0:4fff:1a::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10045',
|
||||
'"gw01.freifunk-muenchen.de" port 10045',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10045',
|
||||
'"gw02.freifunk-muenchen.de" port 10045',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10045',
|
||||
'"gw03.freifunk-muenchen.de" port 10045',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10045',
|
||||
'"gw04.freifunk-muenchen.de" port 10045',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10045',
|
||||
'"gw05.freifunk-muenchen.de" port 10045',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
160
extra/ffmuc_land.conf
Normal file
160
extra/ffmuc_land.conf
Normal file
@@ -0,0 +1,160 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München - München-Land',
|
||||
site_code = 'ffmuc_land',
|
||||
|
||||
opkg = {
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.24.0/21',
|
||||
prefix6 = 'fdef:ffc0:4fff:1b::/64',
|
||||
|
||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||
ntp_servers = { '0.ntp.ffmuc.net', '1.ntp.ffmuc.net' },
|
||||
|
||||
mesh_on_wan = false,
|
||||
|
||||
regdom = 'DE',
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
wifi5 = {
|
||||
channel = 44,
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
ssid = 'mesh.ffmuc',
|
||||
bssid = '02:0E:8E:1E:61:17',
|
||||
mcast_rate = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
mesh = {
|
||||
batman_adv = {
|
||||
gw_sel_class = 3,
|
||||
},
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.24.1',
|
||||
ip6 = 'fdef:ffc0:4fff:1b::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10046',
|
||||
'"gw01.freifunk-muenchen.de" port 10046',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10046',
|
||||
'"gw02.freifunk-muenchen.de" port 10046',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
'"gw03.ffmuc.net" port 10046',
|
||||
'"gw03.freifunk-muenchen.de" port 10046',
|
||||
},
|
||||
},
|
||||
gw04 = {
|
||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
||||
remotes = {
|
||||
'"gw04.ffmuc.net" port 10046',
|
||||
'"gw04.freifunk-muenchen.de" port 10046',
|
||||
},
|
||||
},
|
||||
gw05 = {
|
||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
||||
remotes = {
|
||||
'"gw05.ffmuc.net" port 10046',
|
||||
'"gw05.freifunk-muenchen.de" port 10046',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
ingress = 12000,
|
||||
},
|
||||
},
|
||||
|
||||
autoupdater = {
|
||||
enabled = 1,
|
||||
branch = 'stable',
|
||||
branches = {
|
||||
stable = {
|
||||
name = 'stable',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/stable/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||
},
|
||||
probability = 0.1,
|
||||
good_signatures = 3,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
experimental = {
|
||||
name = 'experimental',
|
||||
mirrors = {
|
||||
'http://firmware.ffmuc.net/experimental/sysupgrade/',
|
||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||
},
|
||||
probability = 0.5,
|
||||
good_signatures = 2,
|
||||
pubkeys = {
|
||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
-- vim: set ft=lua:ts=2:sw=2:et
|
||||
@@ -1,10 +1,12 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München Umland',
|
||||
site_name = 'Freifunk München Umland [ALT]',
|
||||
site_code = 'ffmuc_umland',
|
||||
|
||||
opkg = {
|
||||
openwrt = 'http://openwrt.draic.info/%n/%v/%S/packages',
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.96.0/19',
|
||||
@@ -19,6 +21,8 @@
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
@@ -39,7 +43,7 @@
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
--mesh = {
|
||||
-- id = 'ffmuc-umland-mesh',
|
||||
-- id = 'ffmuc-mesh',
|
||||
-- mcast_rate = 12000,
|
||||
--},
|
||||
ibss = {
|
||||
@@ -56,14 +60,15 @@
|
||||
},
|
||||
|
||||
next_node = {
|
||||
ip4 = '10.80.96.1',
|
||||
ip6 = 'fdef:ffc0:4fff:2::1',
|
||||
ip4 = '10.80.32.1',
|
||||
ip6 = 'fdef:ffc0:4fff::1',
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
fastd_mesh_vpn = {
|
||||
methods = {'salsa2012+umac'},
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
@@ -96,12 +101,6 @@
|
||||
'"gwu04.freifunk-muenchen.de" port 10015',
|
||||
},
|
||||
},
|
||||
gwu05 = {
|
||||
key = 'b6de9fec8569b1fcdea8e7c45224ec30513d24e01af71148c6d640b5df471950',
|
||||
remotes = {
|
||||
'"gwu05.ffmuc.net" port 10015',
|
||||
'"gwu05.freifunk-muenchen.de" port 10015',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
@@ -4,7 +4,9 @@
|
||||
site_code = 'ffmuc_welcome',
|
||||
|
||||
opkg = {
|
||||
openwrt = 'http://openwrt.draic.info/%n/%v/%S/packages',
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.64.0/19',
|
||||
@@ -19,6 +21,8 @@
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
@@ -61,9 +65,10 @@
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
fastd_mesh_vpn = {
|
||||
methods = {'salsa2012+umac'},
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
@@ -99,6 +104,7 @@
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
bandwidth_limit = {
|
||||
enabled = false,
|
||||
egress = 1500,
|
||||
|
||||
4
modules
4
modules
@@ -1,5 +1,5 @@
|
||||
GLUON_SITE_FEEDS='ffmuc'
|
||||
|
||||
PACKAGES_FFMUC_REPO=https://github.com/freifunkMUC/gluon-packages.git
|
||||
PACKAGES_FFMUC_BRANCH=ath9k_wifi_fix
|
||||
PACKAGES_FFMUC_COMMIT=b8c2b7dd024d93bc7ceb552adbe8e20f0e68dc26
|
||||
PACKAGES_FFMUC_BRANCH=master
|
||||
PACKAGES_FFMUC_COMMIT=5632eaba747ac356b68f5d40f30233eafc785975
|
||||
|
||||
61
site.conf
61
site.conf
@@ -1,10 +1,12 @@
|
||||
{
|
||||
hostname_prefix = '',
|
||||
site_name = 'Freifunk München',
|
||||
site_name = 'Freifunk München [ALT]',
|
||||
site_code = 'ffmuc',
|
||||
|
||||
opkg = {
|
||||
openwrt = 'http://openwrt.draic.info/%n/%v/%S/packages',
|
||||
extra = {
|
||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
||||
},
|
||||
},
|
||||
|
||||
prefix4 = '10.80.32.0/19',
|
||||
@@ -19,6 +21,8 @@
|
||||
|
||||
wifi24 = {
|
||||
channel = 6,
|
||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
||||
ap = {
|
||||
ssid = 'muenchen.freifunk.net',
|
||||
},
|
||||
@@ -61,13 +65,28 @@
|
||||
mac = '16:41:95:40:f7:dc',
|
||||
},
|
||||
|
||||
fastd_mesh_vpn = {
|
||||
methods = {'salsa2012+umac'},
|
||||
mesh_vpn = {
|
||||
mtu = 1280,
|
||||
fastd = {
|
||||
methods = {'salsa2012+umac'},
|
||||
groups = {
|
||||
backbone = {
|
||||
limit = 1,
|
||||
peers = {
|
||||
gw01 = {
|
||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
||||
remotes = {
|
||||
'"gw01.ffmuc.net" port 10001',
|
||||
'"gw01.freifunk-muenchen.de" port 10001',
|
||||
},
|
||||
},
|
||||
gw02 = {
|
||||
key = 'b860304fce2e0a701d4c13fa5e01f08832291a5c85d11e191639b9276ab53a45',
|
||||
remotes = {
|
||||
'"gw02.ffmuc.net" port 10001',
|
||||
'"gw02.freifunk-muenchen.de" port 10001',
|
||||
},
|
||||
},
|
||||
gw03 = {
|
||||
key = '4b856fca91077d08ea79f13e139c33b1d1a62e1566e0d447bbfd9cf640c74c41',
|
||||
remotes = {
|
||||
@@ -89,40 +108,6 @@
|
||||
'"gw05.freifunk-muenchen.de" port 10001',
|
||||
},
|
||||
},
|
||||
gw06 = {
|
||||
key = 'd6834aa47a14358d804139630812276b3297e767d159c9cfd13fa6fb638000e0',
|
||||
remotes = {
|
||||
'"gw06.ffmuc.net" port 10001',
|
||||
'"gw06.freifunk-muenchen.de" port 10001',
|
||||
},
|
||||
},
|
||||
gw07 = {
|
||||
key = '77b5f5189c360b245e1c934941468cc9cf57f0646465be5765593a95e54449d6',
|
||||
remotes = {
|
||||
'"gw07.ffmuc.net" port 10001',
|
||||
'"gw07.freifunk-muenchen.de" port 10001',
|
||||
},
|
||||
},
|
||||
gw08 = {
|
||||
key = 'e476fb3a72365b550a23b587c0962eed362ed0c237175552b3261d22daaa2055',
|
||||
remotes = {
|
||||
'"gw08.ffmuc.net" port 10001',
|
||||
'"gw08.freifunk-muenchen.de" port 10001',
|
||||
},
|
||||
},
|
||||
gw09 = {
|
||||
key = 'b86f436c9bb13b308dc92c3889fd468c46679d9df0bf4892244372ab415694d0',
|
||||
remotes = {
|
||||
'"gw09.ffmuc.net" port 10001',
|
||||
'"gw09.freifunk-muenchen.de" port 10001',
|
||||
},
|
||||
},
|
||||
gw10 = {
|
||||
key = 'c04358d4818ec108fa4715e4517300cb2d0fa848dfa872770c4b8487d525e8bf',
|
||||
remotes = {
|
||||
'"gw10.ffmuc.net" port 10001',
|
||||
'"gw10.freifunk-muenchen.de" port 10001',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
26
site.mk
26
site.mk
@@ -1,23 +1,19 @@
|
||||
GLUON_SITE_PACKAGES := \
|
||||
gluon-mesh-batman-adv-15 \
|
||||
gluon-alfred \
|
||||
gluon-respondd \
|
||||
gluon-autoupdater \
|
||||
gluon-config-mode-core \
|
||||
gluon-config-mode-autoupdater \
|
||||
gluon-config-mode-contact-info \
|
||||
gluon-config-mode-core \
|
||||
gluon-config-mode-geo-location \
|
||||
gluon-config-mode-hostname \
|
||||
gluon-config-mode-mesh-vpn \
|
||||
gluon-config-mode-geo-location \
|
||||
gluon-config-mode-contact-info \
|
||||
gluon-config-mode-site-select \
|
||||
gluon-ebtables-filter-multicast \
|
||||
gluon-ebtables-filter-ra-dhcp \
|
||||
gluon-luci-admin \
|
||||
gluon-luci-autoupdater \
|
||||
gluon-luci-portconfig \
|
||||
gluon-luci-wifi-config \
|
||||
gluon-luci-private-wifi \
|
||||
gluon-next-node \
|
||||
gluon-web-admin \
|
||||
gluon-web-autoupdater \
|
||||
gluon-web-network \
|
||||
gluon-web-wifi-config \
|
||||
gluon-mesh-batman-adv-15 \
|
||||
gluon-mesh-vpn-fastd \
|
||||
gluon-radvd \
|
||||
gluon-setup-mode \
|
||||
@@ -25,11 +21,11 @@ GLUON_SITE_PACKAGES := \
|
||||
iwinfo \
|
||||
iptables \
|
||||
haveged \
|
||||
gluon-config-mode-site-select \
|
||||
gluon-ebtables-filter-arp-ffmuc \
|
||||
gluon-ebtables-filter-multicast-ffmuc \
|
||||
tecff-ath9k-broken-wifi-workaround \
|
||||
babeld \
|
||||
ip
|
||||
tecff-respondd-watchdog
|
||||
|
||||
# basic support for USB stack
|
||||
USB_PACKAGES_BASIC := \
|
||||
@@ -179,3 +175,5 @@ GLUON_PRIORITY ?= 0
|
||||
|
||||
# Languages to include
|
||||
GLUON_LANGS ?= en de
|
||||
|
||||
GLUON_REGION := eu
|
||||
|
||||
25
util/make_siteconfs.sh
Executable file
25
util/make_siteconfs.sh
Executable file
@@ -0,0 +1,25 @@
|
||||
#!/bin/sh
|
||||
|
||||
[ -e new ] || mkdir new
|
||||
|
||||
cat makefile_prefix > new/Makefile-site-select
|
||||
|
||||
cat stadtteile_idx.txt|grep -e '^[^#]'|grep ffmuc|while IFS=, read nr id desc port prefix4; do cp ../extra/ffmuc.conf new/$id.conf; done
|
||||
cat stadtteile_idx.txt|grep -e '^[^#]'|grep ffbay|while IFS=, read nr id desc port prefix4; do cp ../extra/ffmuc_umland.conf new/$id.conf; done
|
||||
|
||||
cat stadtteile_idx.txt | grep -e '^[^#]' \
|
||||
| while IFS=, read nr id desc seg_id port prefix4 prefix6 next_node4 next_node6; do (
|
||||
echo "# processing $id.conf";
|
||||
cat new/$id.conf | sed -e "s/port 100[01][0-9]/port $port/" \
|
||||
| sed -e "s/.*site_code.*/ site_code = '$id',/g" \
|
||||
| sed -e "s/.*site_name.*/ site_name = 'Freifunk München - $desc',/g" \
|
||||
| sed -e "s/.*ip4.*/ ip4 = '$next_node4',/g" \
|
||||
| sed -e "s@.*prefix4.*@ prefix4 = '$prefix4',@g" \
|
||||
| sed -e "s@.*prefix6.*@ prefix6 = '$prefix6',@g" \
|
||||
| sed -e "s/.ip6.*/ ip6 = '$next_node6',/g" > new/$id.conf.new;
|
||||
mv new/$id.conf.new new/$id.conf;
|
||||
echo " lua -e 'print(require(\"cjson\").encode(assert(loadfile(\"site_config.lua\")(\"\$(GLUON_SITEDIR)/extra/$id.conf\"))))' > \$(1)/lib/gluon/site-select/$id.json" >> new/Makefile-site-select
|
||||
); \
|
||||
done
|
||||
|
||||
cat makefile_suffix >> new/Makefile-site-select
|
||||
36
util/makefile_prefix
Normal file
36
util/makefile_prefix
Normal file
@@ -0,0 +1,36 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=gluon-config-mode-site-select
|
||||
PKG_VERSION:=0.2
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_BUILD_DEPENDS := lua-cjson/host
|
||||
|
||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
PKG_CONFIG_DEPENDS += $(GLUON_I18N_CONFIG)
|
||||
|
||||
define Package/gluon-config-mode-site-select
|
||||
SECTION:=gluon
|
||||
CATEGORY:=Gluon
|
||||
TITLE:=UI for changing the node-config
|
||||
endef
|
||||
|
||||
define Build/Prepare
|
||||
mkdir -p $(PKG_BUILD_DIR)
|
||||
endef
|
||||
|
||||
define Build/Configure
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
$(call GluonBuildI18N,gluon-config-mode-site-select,i18n)
|
||||
endef
|
||||
|
||||
define Package/gluon-config-mode-site-select/install
|
||||
mkdir -p $(1)/etc/config/
|
||||
mkdir -p $(1)/lib/gluon/site-select/
|
||||
$(CP) ./files/* $(1)/
|
||||
|
||||
6
util/makefile_suffix
Normal file
6
util/makefile_suffix
Normal file
@@ -0,0 +1,6 @@
|
||||
DIR=$(1) sh create-config.sh
|
||||
|
||||
$(call GluonInstallI18N,gluon-config-mode-site-select,$(1))
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,gluon-config-mode-site-select))
|
||||
33
util/stadtteile_idx.txt
Normal file
33
util/stadtteile_idx.txt
Normal file
@@ -0,0 +1,33 @@
|
||||
#idx,id,description,segment_id,port,prefix4,prefix6,next_node4,next_node6
|
||||
1,ffmuc01,Altstadt-Lehel,0,10021,10.80.132.0/22,fdef:ffc0:4fff:3::/64,10.80.132.1,fdef:ffc0:4fff:3::1
|
||||
2,ffmuc02,Ludwigsvorstadt-Isarvorstadt,0,10022,10.80.164.0/22,fdef:ffc0:4fff:4::/64,10.80.164.1,fdef:ffc0:4fff:4::1
|
||||
3,ffmuc03,Maxvorstadt,0,10023,10.80.168.0/22,fdef:ffc0:4fff:5::/64,10.80.168.1,fdef:ffc0:4fff:5::1
|
||||
4,ffmuc04,Schwabing-West,0,10024,10.80.200.0/22,fdef:ffc0:4fff:6::/64,10.80.200.1,fdef:ffc0:4fff:6::1
|
||||
5,ffmuc05,Au-Haidhausen,0,10025,10.80.136.0/22,fdef:ffc0:4fff:7::/64,10.80.136.1,fdef:ffc0:4fff:7::1
|
||||
6,ffmuc06,Sendling,0,10026,10.80.212.0/22,fdef:ffc0:4fff:8::/64,10.80.212.1,fdef:ffc0:4fff:8::1
|
||||
7,ffmuc07,Sendling-Westpark,0,10027,10.80.208.0/22,fdef:ffc0:4fff:9::/64,10.80.208.1,fdef:ffc0:4fff:9::1
|
||||
8,ffmuc08,Schwanthalerhöhe,0,10028,10.80.204.0/22,fdef:ffc0:4fff:a::/64,10.80.204.1,fdef:ffc0:4fff:a::1
|
||||
9,ffmuc09,Neuhausen-Nymphenburg,0,10029,10.80.180.0/22,fdef:ffc0:4fff:b::/64,10.80.180.1,fdef:ffc0:4fff:b::1
|
||||
10,ffmuc10,Moosach,0,10030,10.80.176.0/22,fdef:ffc0:4fff:c::/64,10.80.176.1,fdef:ffc0:4fff:c::1
|
||||
11,ffmuc11,Milbertshofen-Am-Hart,0,10031,10.80.172.0/22,fdef:ffc0:4fff:d::/64,10.80.172.1,fdef:ffc0:4fff:d::1
|
||||
12,ffmuc12,Schwabing-Freimann,0,10032,10.80.196.0/22,fdef:ffc0:4fff:e::/64,10.80.196.1,fdef:ffc0:4fff:e::1
|
||||
13,ffmuc13,Bogenhausen,0,10033,10.80.148.0/22,fdef:ffc0:4fff:f::/64,10.80.148.1,fdef:ffc0:4fff:f::1
|
||||
14,ffmuc14,Berg am Laim,0,10034,10.80.144.0/22,fdef:ffc0:4fff:10::/64,10.80.144.1,fdef:ffc0:4fff:10::1
|
||||
15,ffmuc15,Trudering-Riem,0,10035,10.80.220.0/22,fdef:ffc0:4fff:11::/64,10.80.220.1,fdef:ffc0:4fff:11::1
|
||||
16,ffmuc16,Ramersdorf-Perlach,0,10036,10.80.192.0/22,fdef:ffc0:4fff:12::/64,10.80.192.1,fdef:ffc0:4fff:12::1
|
||||
17,ffmuc17,Giesing,0,10037,10.80.184.0/22,fdef:ffc0:4fff:13::/64,10.80.184.1,fdef:ffc0:4fff:13::1
|
||||
18,ffmuc19,Thalkirchen-Obersendling-Forstenried-Fürstenried-Solln,0,10039,10.80.216.0/22,fdef:ffc0:4fff:14::/64,10.80.216.1,fdef:ffc0:4fff:14::1
|
||||
29,ffmuc20,Hadern,0,10040,10.80.156.0/22,fdef:ffc0:4fff:15::/64,10.80.156.1,fdef:ffc0:4fff:15::1
|
||||
20,ffmuc21,Pasing-Obermenzing,0,10041,10.80.188.0/22,fdef:ffc0:4fff:16::/64,10.80.188.1,fdef:ffc0:4fff:16::1
|
||||
21,ffmuc22,Aubing-Lochhausen-Langwied,0,10042,10.80.140.0/22,fdef:ffc0:4fff:17::/64,10.80.140.1,fdef:ffc0:4fff:17::1
|
||||
22,ffmuc23,Allach-Untermenzing,0,10043,10.80.128.0/22,fdef:ffc0:4fff:18::/64,10.80.128.1,fdef:ffc0:4fff:18::1
|
||||
23,ffmuc24,Feldmoching-Hasenbergl,0,10044,10.80.152.0/22,fdef:ffc0:4fff:19::/64,10.80.152.1,fdef:ffc0:4fff:19::1
|
||||
24,ffmuc25,Laim,0,10045,10.80.160.0/22,fdef:ffc0:4fff:1a::/64,10.80.160.1,fdef:ffc0:4fff:1a::1
|
||||
25,ffmuc_land,München-Land,1,10046,10.80.24.0/21,fdef:ffc0:4fff:1b::/64,10.80.24.1,fdef:ffc0:4fff:1b::1
|
||||
26,ffbay_sta,Landkreis Starnberg (STA),1,10047,10.80.0.0/21,fdef:ffc0:4fff:1c::/64,10.80.0.1,fdef:ffc0:4fff:1c::1
|
||||
27,ffbay_ffb,Landkreis Fürstenfeldbruck (FFB),1,10048,10.80.232.0/21,fdef:ffc0:4fff:1d::/64,10.80.232.1,fdef:ffc0:4fff:1d::1
|
||||
28,ffbay_dah,Landkreis Dachau (DAH),1,10049,10.80.248.0/21,fdef:ffc0:4fff:1e::/64,10.80.248.1,fdef:ffc0:4fff:1e::1
|
||||
39,ffbay_fs,Landkreis Freising (FS),1,10050,10.80.224.0/21,fdef:ffc0:4fff:1f::/64,10.80.224.1,fdef:ffc0:4fff:1f::1
|
||||
30,ffbay_ed,Landkreis Erding (ED),1,10061,10.80.16.0/21,fdef:ffc0:4fff:20::/64,10.80.16.1,fdef:ffc0:4fff:20::1
|
||||
31,ffbay_ebe,Landkreis Ebersberg (EBE),1,10062,10.80.240.0/21,fdef:ffc0:4fff:21::/64,10.80.240.1,fdef:ffc0:4fff:21::1
|
||||
32,ffbay_tol,Landkreis Bad Tölz-Wolfratshausen (TÖL),1,10063,10.80.8.0/21,fdef:ffc0:4fff:22::/64,10.80.8.1,fdef:ffc0:4fff:22::1
|
||||
Reference in New Issue
Block a user