forked from remote/site-ffmuc
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7c9b4097db | ||
|
|
aed8b443c6 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1 @@
|
|||||||
gluon-build
|
gluon-build
|
||||||
output
|
|
||||||
|
|||||||
51
CHANGELOG.md
51
CHANGELOG.md
@@ -1,56 +1,5 @@
|
|||||||
# Freifunk München Firmware Changelog
|
# Freifunk München Firmware Changelog
|
||||||
|
|
||||||
## 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
|
|
||||||
- https://gluon.readthedocs.org/en/v2016.1.1/releases/v2016.1.1.html
|
|
||||||
- https://gluon.readthedocs.org/en/v2016.1.2/releases/v2016.1.2.html
|
|
||||||
- https://gluon.readthedocs.org/en/v2016.1.3/releases/v2016.1.3.html
|
|
||||||
- https://gluon.readthedocs.org/en/v2016.1.4/releases/v2016.1.4.html
|
|
||||||
- https://gluon.readthedocs.org/en/v2016.1.5/releases/v2016.1.5.html
|
|
||||||
- mesh_no_rebroadcast for mesh-on-wan (8b66da95f1887fc6068a6e9d6b6494c2ff4d2fb4)
|
|
||||||
- preserve wifi channels feature (76a77902e3624167e81ca6e200519468bb66d5f7)
|
|
||||||
- new package tecff-ath9k-broken-wifi-workaround (freifunkmuc/gluon-packages)
|
|
||||||
- added fix for autoupdater (8f5a7c90019085dd8f02f96ab0e7a905f82e1be0)
|
|
||||||
- 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
|
|
||||||
|
|
||||||
## v2015.7
|
|
||||||
* New stable unified firmware for all segments with site-select feature
|
|
||||||
* Raised required signatures for stable release to 3
|
|
||||||
|
|
||||||
## v2015.6.2
|
|
||||||
* Bugfix build for welcome version
|
|
||||||
|
|
||||||
## v2015.6.1
|
|
||||||
* Added support of site selection in config mode
|
|
||||||
* Switch autoupdater URL back to main firmware repo path
|
|
||||||
|
|
||||||
## v2015.6
|
## v2015.6
|
||||||
- Updated to Gluon 2015.1.2
|
- Updated to Gluon 2015.1.2
|
||||||
- Changes: https://gluon.readthedocs.org/en/v2015.1.2/releases/v2015.1.2.html
|
- Changes: https://gluon.readthedocs.org/en/v2015.1.2/releases/v2015.1.2.html
|
||||||
|
|||||||
51
Jenkinsfile
vendored
51
Jenkinsfile
vendored
@@ -1,51 +0,0 @@
|
|||||||
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
|
|
||||||
|
|
||||||
stage 'Build'
|
|
||||||
sh "make V=s"
|
|
||||||
|
|
||||||
stage 'Archive'
|
|
||||||
archive 'output/**/*'
|
|
||||||
}
|
|
||||||
catch (e) {
|
|
||||||
currentBuild.result = "FAILED"
|
|
||||||
throw e
|
|
||||||
}
|
|
||||||
finally {
|
|
||||||
_pipelineNotify(currentBuild.result)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
25
Makefile
25
Makefile
@@ -1,19 +1,14 @@
|
|||||||
GLUON_BUILD_DIR := gluon-build
|
GLUON_BUILD_DIR := gluon-build
|
||||||
GLUON_GIT_URL := https://github.com/freifunk-gluon/gluon.git
|
GLUON_GIT_URL := https://github.com/freifunkMUC/gluon.git
|
||||||
GLUON_GIT_REF := v2017.1.2
|
GLUON_GIT_REF := e05ca52e0359a182b49e0fb44e68f1972aa69016
|
||||||
|
|
||||||
SECRET_KEY_FILE ?= ${HOME}/.gluon-secret-key
|
SECRET_KEY_FILE ?= ${HOME}/.gluon-secret-key
|
||||||
|
|
||||||
GLUON_TARGETS ?= \
|
GLUON_TARGETS ?= \
|
||||||
ar71xx-generic \
|
ar71xx-generic \
|
||||||
ar71xx-tiny \
|
|
||||||
ar71xx-nand \
|
ar71xx-nand \
|
||||||
mpc85xx-generic \
|
|
||||||
x86-64 \
|
|
||||||
x86-generic \
|
x86-generic \
|
||||||
x86-geode \
|
x86-kvm_guest
|
||||||
brcm2708-bcm2708 \
|
|
||||||
brcm2708-bcm2709
|
|
||||||
|
|
||||||
GLUON_RELEASE := $(shell git describe --tags 2>/dev/null)
|
GLUON_RELEASE := $(shell git describe --tags 2>/dev/null)
|
||||||
ifneq (,$(shell git describe --exact-match --tags 2>/dev/null))
|
ifneq (,$(shell git describe --exact-match --tags 2>/dev/null))
|
||||||
@@ -34,7 +29,7 @@ all: info
|
|||||||
info:
|
info:
|
||||||
@echo
|
@echo
|
||||||
@echo '#########################'
|
@echo '#########################'
|
||||||
@echo '# FFMUC Firmware build'
|
@echo '# FFMUC Firmare build'
|
||||||
@echo '# Building release ${GLUON_RELEASE} for branch ${GLUON_BRANCH}'
|
@echo '# Building release ${GLUON_RELEASE} for branch ${GLUON_BRANCH}'
|
||||||
@echo
|
@echo
|
||||||
|
|
||||||
@@ -46,15 +41,15 @@ build: gluon-prepare
|
|||||||
|
|
||||||
manifest: build
|
manifest: build
|
||||||
${GLUON_MAKE} manifest
|
${GLUON_MAKE} manifest
|
||||||
mv ${GLUON_BUILD_DIR}/output .
|
mv ${GLUON_BUILD_DIR}/images .
|
||||||
|
|
||||||
sign: manifest
|
sign: manifest
|
||||||
${GLUON_BUILD_DIR}/contrib/sign.sh ${SECRET_KEY_FILE} output/images/sysupgrade/${GLUON_BRANCH}.manifest
|
${GLUON_BUILD_DIR}/contrib/sign.sh ${SECRET_KEY_FILE} images/sysupgrade/${GLUON_BRANCH}.manifest
|
||||||
|
|
||||||
${GLUON_BUILD_DIR}:
|
${GLUON_BUILD_DIR}:
|
||||||
git clone ${GLUON_GIT_URL} ${GLUON_BUILD_DIR}
|
git clone ${GLUON_GIT_URL} ${GLUON_BUILD_DIR}
|
||||||
|
|
||||||
gluon-prepare: output-clean ${GLUON_BUILD_DIR}
|
gluon-prepare: images-clean ${GLUON_BUILD_DIR}
|
||||||
(cd ${GLUON_BUILD_DIR} \
|
(cd ${GLUON_BUILD_DIR} \
|
||||||
&& git remote set-url origin ${GLUON_GIT_URL} \
|
&& git remote set-url origin ${GLUON_GIT_URL} \
|
||||||
&& git fetch origin \
|
&& git fetch origin \
|
||||||
@@ -65,7 +60,7 @@ gluon-prepare: output-clean ${GLUON_BUILD_DIR}
|
|||||||
gluon-clean:
|
gluon-clean:
|
||||||
rm -rf ${GLUON_BUILD_DIR}
|
rm -rf ${GLUON_BUILD_DIR}
|
||||||
|
|
||||||
output-clean:
|
images-clean:
|
||||||
rm -rf output
|
rm -rf images
|
||||||
|
|
||||||
clean: gluon-clean output-clean
|
clean: gluon-clean images-clean
|
||||||
|
|||||||
10
README.md
10
README.md
@@ -2,13 +2,11 @@
|
|||||||
|
|
||||||
Check out this repository and execute `make`, i.e. like this:
|
Check out this repository and execute `make`, i.e. like this:
|
||||||
|
|
||||||
```bash
|
git clone https://github.com/freifunkMUC/site-ffm.git site-ffm
|
||||||
git clone https://github.com/freifunkMUC/site-ffm.git site-ffm
|
cd site-ffm
|
||||||
cd site-ffm
|
make
|
||||||
make
|
|
||||||
```
|
|
||||||
|
|
||||||
## Further Resources
|
## Further Resources
|
||||||
|
|
||||||
Look at the [site configuration related Gluon documentation](https://gluon.readthedocs.io/en/v2017.1.x/user/site.html)
|
Look at the [site configuration related Gluon documentation](http://gluon.readthedocs.org/en/v2014.3.1/user/site.html)
|
||||||
for information on site configuration options and examples from other communities.
|
for information on site configuration options and examples from other communities.
|
||||||
|
|||||||
@@ -1,153 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,153 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,153 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,153 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,153 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,153 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,153 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
160
extra/ffmuc.conf
160
extra/ffmuc.conf
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
hostname_prefix = '',
|
|
||||||
site_name = 'Freifunk München [ALT]',
|
|
||||||
site_code = 'ffmuc',
|
|
||||||
|
|
||||||
opkg = {
|
|
||||||
extra = {
|
|
||||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
prefix4 = '10.80.32.0/19',
|
|
||||||
prefix6 = 'fdef:ffc0:4fff::/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.32.1',
|
|
||||||
ip6 = 'fdef:ffc0:4fff::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 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 = {
|
|
||||||
'"gw03.ffmuc.net" port 10001',
|
|
||||||
'"gw03.freifunk-muenchen.de" port 10001',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
gw04 = {
|
|
||||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
|
||||||
remotes = {
|
|
||||||
'"gw04.ffmuc.net" port 10001',
|
|
||||||
'"gw04.freifunk-muenchen.de" port 10001',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
gw05 = {
|
|
||||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
|
||||||
remotes = {
|
|
||||||
'"gw05.ffmuc.net" port 10001',
|
|
||||||
'"gw05.freifunk-muenchen.de" port 10001',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
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,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
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,153 +0,0 @@
|
|||||||
{
|
|
||||||
hostname_prefix = '',
|
|
||||||
site_name = 'Freifunk München Umland [ALT]',
|
|
||||||
site_code = 'ffmuc_umland',
|
|
||||||
|
|
||||||
opkg = {
|
|
||||||
extra = {
|
|
||||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
prefix4 = '10.80.96.0/19',
|
|
||||||
prefix6 = 'fdef:ffc0:4fff:2::/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.32.1',
|
|
||||||
ip6 = 'fdef:ffc0:4fff::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 10015',
|
|
||||||
'"gwu01.freifunk-muenchen.de" port 10015',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
gwu02 = {
|
|
||||||
key = '32765d3337be727de5840930a221962a59cf5529ae6c1d3753e58ad460e510a5',
|
|
||||||
remotes = {
|
|
||||||
'"gwu02.ffmuc.net" port 10015',
|
|
||||||
'"gwu02.freifunk-muenchen.de" port 10015',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
gwu03 = {
|
|
||||||
key = '61fe3197ed7e934284adc2571523104d8e5391db2427dca9528f0d34bb60a522',
|
|
||||||
remotes = {
|
|
||||||
'"gwu03.ffmuc.net" port 10015',
|
|
||||||
'"gwu03.freifunk-muenchen.de" port 10015',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
gwu04 = {
|
|
||||||
key = '443898162e1e9ec09da0904d72d8145026f4452a4b1e880a07dc6699418c69d1',
|
|
||||||
remotes = {
|
|
||||||
'"gwu04.ffmuc.net" port 10015',
|
|
||||||
'"gwu04.freifunk-muenchen.de" port 10015',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
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,153 +0,0 @@
|
|||||||
{
|
|
||||||
hostname_prefix = 'welcome',
|
|
||||||
site_name = 'Freifunk München Welcome',
|
|
||||||
site_code = 'ffmuc_welcome',
|
|
||||||
|
|
||||||
opkg = {
|
|
||||||
extra = {
|
|
||||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
prefix4 = '10.80.64.0/19',
|
|
||||||
prefix6 = 'fdef:ffc0:4fff:1::/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-welcome-mesh',
|
|
||||||
-- mcast_rate = 12000,
|
|
||||||
--},
|
|
||||||
ibss = {
|
|
||||||
ssid = 'mesh.ffmuc.welcome',
|
|
||||||
bssid = '02:0E:8E:1E:61:18',
|
|
||||||
mcast_rate = 12000,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
wifi5 = {
|
|
||||||
channel = 44,
|
|
||||||
ap = {
|
|
||||||
ssid = 'muenchen.freifunk.net',
|
|
||||||
},
|
|
||||||
--mesh = {
|
|
||||||
-- id = 'ffmuc-welcome-mesh',
|
|
||||||
-- mcast_rate = 12000,
|
|
||||||
--},
|
|
||||||
ibss = {
|
|
||||||
ssid = 'mesh.ffmuc.welcome',
|
|
||||||
bssid = '02:0E:8E:1E:61:18',
|
|
||||||
mcast_rate = 12000,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
mesh = {
|
|
||||||
batman_adv = {
|
|
||||||
gw_sel_class = 3,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
next_node = {
|
|
||||||
ip4 = '10.80.64.1',
|
|
||||||
ip6 = 'fdef:ffc0:4fff:1::1',
|
|
||||||
mac = '16:41:95:40:f7:dc',
|
|
||||||
},
|
|
||||||
|
|
||||||
mesh_vpn = {
|
|
||||||
mtu = 1280,
|
|
||||||
fastd = {
|
|
||||||
methods = {'salsa2012+umac'},
|
|
||||||
groups = {
|
|
||||||
backbone = {
|
|
||||||
limit = 1,
|
|
||||||
peers = {
|
|
||||||
gwf01 = {
|
|
||||||
key = '89951ed50d591c0a4682ae50cb38806efe44dd736ba91ef64c9ef06b20ec186e',
|
|
||||||
remotes = {
|
|
||||||
'"gwf01.ffmuc.net" port 11001',
|
|
||||||
'"gwf01.freifunk-muenchen.de" port 11001',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
gwf02 = {
|
|
||||||
key = 'e255f2671c56f28a65173719be61939e5d48518eaa4da0d19283fd5395908e35',
|
|
||||||
remotes = {
|
|
||||||
'"gwf02.ffmuc.net" port 11001',
|
|
||||||
'"gwf02.freifunk-muenchen.de" port 11001',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
gwf03 = {
|
|
||||||
key = 'bf16080ab05a4416285638208e6f17055ea8f92cfd496c61eee1f1160cf6d386',
|
|
||||||
remotes = {
|
|
||||||
'"gwf03.ffmuc.net" port 11001',
|
|
||||||
'"gwf03.freifunk-muenchen.de" port 11001',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
gwf04 = {
|
|
||||||
key = '421a2c8e78f86d08fa7c8c7660b0dc073640ff365acb308ab92155c33488c539',
|
|
||||||
remotes = {
|
|
||||||
'"gwf04.ffmuc.net" port 11001',
|
|
||||||
'"gwf04.freifunk-muenchen.de" port 11001',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
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
|
|
||||||
@@ -18,16 +18,15 @@ msgstr ""
|
|||||||
|
|
||||||
msgid "gluon-config-mode:pubkey"
|
msgid "gluon-config-mode:pubkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
" "
|
|
||||||
|
|
||||||
msgid "gluon-config-mode:reboot"
|
msgid "gluon-config-mode:reboot"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<p>Dein Knoten startet gerade neu und wird anschließend versuchen, sich "
|
"<p>Dein Knoten startet gerade neu und wird anschließend versuchen, sich "
|
||||||
"mit anderen Freifunk-Knoten in seiner Nähe zu verbinden. Weitere "
|
"mit anderen Freifunk-Knoten in seiner Nähe zu verbinden. Weitere "
|
||||||
"Informationen zur Münchner Freifunk-Community findest du auf "
|
"Informationen zur Münchner Freifunk-Community findest du auf "
|
||||||
"<a href=\"https://ffmuc.net/\">unserer Webseite</a>. Wenn "
|
"<a href=\"http://freifunk-muenchen.de/\">unserer Webseite</a>. Wenn "
|
||||||
"alles geklappt hat, wirst du in ein paar Minuten unter "
|
"alles geklappt hat, wirst du in ein paar Minuten unter "
|
||||||
"<a href=\"https://ffmuc.net/map/\">ffmuc.net/map/</a> "
|
"<a href=\"http://map.freifunk-muenchen.de\">map.freifunk-muenchen.de</a> "
|
||||||
"deinen Knoten finden.</p> "
|
"deinen Knoten finden.</p> "
|
||||||
"<p>Um zu dieser Konfigurationsseite zurückzugelangen, drücke im normalen "
|
"<p>Um zu dieser Konfigurationsseite zurückzugelangen, drücke im normalen "
|
||||||
"Betrieb für drei Sekunden den Reset-Button. Das Gerät wird dann im Config "
|
"Betrieb für drei Sekunden den Reset-Button. Das Gerät wird dann im Config "
|
||||||
|
|||||||
@@ -17,13 +17,12 @@ msgstr ""
|
|||||||
|
|
||||||
msgid "gluon-config-mode:pubkey"
|
msgid "gluon-config-mode:pubkey"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
" "
|
|
||||||
|
|
||||||
msgid "gluon-config-mode:reboot"
|
msgid "gluon-config-mode:reboot"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<p>Your node is currently rebooting and will try to connect to other "
|
"<p>Your node is currently rebooting and will try to connect to other "
|
||||||
"nearby Freifunk nodes. It should appear on our map at "
|
"nearby Freifunk nodes. It should appear on our map at "
|
||||||
"<a href=\"https://ffmuc.net/map/\">ffmuc.net/map/</a> "
|
"<a href=\"http://map.freifunk-muenchen.de\">map.freifunk-muenchen.de</a> "
|
||||||
"in a few minutes.</p> "
|
"in a few minutes.</p> "
|
||||||
"<p>To get back to this configuration interface, press the reset button for "
|
"<p>To get back to this configuration interface, press the reset button for "
|
||||||
"3 seconds during normal operation. The device will then reboot into config "
|
"3 seconds during normal operation. The device will then reboot into config "
|
||||||
|
|||||||
7
modules
7
modules
@@ -1,5 +1,4 @@
|
|||||||
GLUON_SITE_FEEDS='ffmuc'
|
GLUON_SITE_FEEDS='ffmuc_packages'
|
||||||
|
|
||||||
PACKAGES_FFMUC_REPO=https://github.com/freifunkMUC/gluon-packages.git
|
PACKAGES_FFMUC_PACKAGES_REPO=https://github.com/freifunkMUC/gluon-packages.git
|
||||||
PACKAGES_FFMUC_BRANCH=master
|
PACKAGES_FFMUC_PACKAGES_COMMIT=82e721ad5d7c9eca8728954cfa1ab1d5b9168487
|
||||||
PACKAGES_FFMUC_COMMIT=5632eaba747ac356b68f5d40f30233eafc785975
|
|
||||||
|
|||||||
129
site.conf
129
site.conf
@@ -1,15 +1,9 @@
|
|||||||
{
|
{
|
||||||
hostname_prefix = '',
|
hostname_prefix = '',
|
||||||
site_name = 'Freifunk München [ALT]',
|
site_name = 'Freifunk München',
|
||||||
site_code = 'ffmuc',
|
site_code = 'ffmuc-babel',
|
||||||
|
|
||||||
opkg = {
|
prefix4 = '10.80.0.0/16',
|
||||||
extra = {
|
|
||||||
gluon = 'http://firmware.ffmuc.net/modules/gluon-%GS-%GR/%S',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
prefix4 = '10.80.32.0/19',
|
|
||||||
prefix6 = 'fdef:ffc0:4fff::/64',
|
prefix6 = 'fdef:ffc0:4fff::/64',
|
||||||
|
|
||||||
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
|
||||||
@@ -20,107 +14,69 @@
|
|||||||
regdom = 'DE',
|
regdom = 'DE',
|
||||||
|
|
||||||
wifi24 = {
|
wifi24 = {
|
||||||
channel = 6,
|
channel = 11,
|
||||||
supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
|
htmode = 'HT20',
|
||||||
basic_rate = {6000, 9000, 18000, 36000, 54000},
|
|
||||||
ap = {
|
ap = {
|
||||||
ssid = 'muenchen.freifunk.net',
|
ssid = 'babel.muenchen.freifunk.net',
|
||||||
|
},
|
||||||
|
mesh = {
|
||||||
|
id = 'ffmuc-mesh-babel',
|
||||||
|
mcast_rate = 12000,
|
||||||
},
|
},
|
||||||
--mesh = {
|
|
||||||
-- id = 'ffmuc-mesh',
|
|
||||||
-- mcast_rate = 12000,
|
|
||||||
--},
|
|
||||||
ibss = {
|
ibss = {
|
||||||
ssid = 'mesh.ffmuc',
|
ssid = 'mesh.ffmuc.babel',
|
||||||
bssid = '02:0E:8E:1E:61:17',
|
bssid = '02:0E:8E:1E:61:10',
|
||||||
mcast_rate = 12000,
|
mcast_rate = 12000,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
wifi5 = {
|
wifi5 = {
|
||||||
channel = 44,
|
channel = 44,
|
||||||
|
htmode = 'HT40+',
|
||||||
ap = {
|
ap = {
|
||||||
ssid = 'muenchen.freifunk.net',
|
ssid = 'babel.muenchen.freifunk.net',
|
||||||
|
},
|
||||||
|
mesh = {
|
||||||
|
id = 'ffmuc-mesh-babel',
|
||||||
|
mcast_rate = 12000,
|
||||||
},
|
},
|
||||||
--mesh = {
|
|
||||||
-- id = 'ffmuc-mesh',
|
|
||||||
-- mcast_rate = 12000,
|
|
||||||
--},
|
|
||||||
ibss = {
|
ibss = {
|
||||||
ssid = 'mesh.ffmuc',
|
ssid = 'mesh.ffmuc.babel',
|
||||||
bssid = '02:0E:8E:1E:61:17',
|
bssid = '02:0E:8E:1E:61:10',
|
||||||
mcast_rate = 12000,
|
mcast_rate = 12000,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
mesh = {
|
babel_mesh = {
|
||||||
batman_adv = {
|
prefix = 'fdef:ffc0:4fff:ffff::/64',
|
||||||
gw_sel_class = 3,
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
|
|
||||||
next_node = {
|
next_node = {
|
||||||
ip4 = '10.80.32.1',
|
ip4 = '10.80.0.1',
|
||||||
ip6 = 'fdef:ffc0:4fff::1',
|
ip6 = 'fdef:ffc0:4fff::1',
|
||||||
mac = '16:41:95:40:f7:dc',
|
mac = '16:41:95:40:f7:dc',
|
||||||
},
|
},
|
||||||
|
|
||||||
mesh_vpn = {
|
fastd_mesh_vpn = {
|
||||||
mtu = 1280,
|
methods = {'salsa2012+umac'},
|
||||||
fastd = {
|
mtu = 1426,
|
||||||
methods = {'salsa2012+umac'},
|
groups = {
|
||||||
groups = {
|
backbone = {
|
||||||
backbone = {
|
limit = 1,
|
||||||
limit = 1,
|
peers = {
|
||||||
peers = {
|
gw_test = { --[[ fpletz ]]
|
||||||
gw01 = {
|
key = '23280df37b96cb587a3eeeb51c806bceeb627b8d063bb7dcc5492f4c9e3af356',
|
||||||
key = '8ddaa67325583c64adf6e60cbe78e3436e5765fd0a2a632fae9e0ad68c855803',
|
remotes = {
|
||||||
remotes = {
|
'ipv4 "hermes.bpletza.de" port 16000',
|
||||||
'"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 = {
|
|
||||||
'"gw03.ffmuc.net" port 10001',
|
|
||||||
'"gw03.freifunk-muenchen.de" port 10001',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
gw04 = {
|
|
||||||
key = 'adee58f70829e6a03e568ca8273070b38c1b4cfe0beb69c53eea429646908126',
|
|
||||||
remotes = {
|
|
||||||
'"gw04.ffmuc.net" port 10001',
|
|
||||||
'"gw04.freifunk-muenchen.de" port 10001',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
gw05 = {
|
|
||||||
key = '2242fe7fff1def15233a364487545e57c3c69e1b624d97bd5d72359b9851cb6e',
|
|
||||||
remotes = {
|
|
||||||
'"gw05.ffmuc.net" port 10001',
|
|
||||||
'"gw05.freifunk-muenchen.de" port 10001',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
bandwidth_limit = {
|
|
||||||
enabled = false,
|
|
||||||
egress = 1500,
|
|
||||||
ingress = 12000,
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
|
|
||||||
autoupdater = {
|
autoupdater = {
|
||||||
enabled = 1,
|
enabled = 0,
|
||||||
branch = 'stable',
|
branch = 'stable',
|
||||||
branches = {
|
branches = {
|
||||||
stable = {
|
stable = {
|
||||||
@@ -130,7 +86,7 @@
|
|||||||
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
'http://[fdef:ffc0:4fff::130]/stable/sysupgrade/',
|
||||||
},
|
},
|
||||||
probability = 0.1,
|
probability = 0.1,
|
||||||
good_signatures = 3,
|
good_signatures = 2,
|
||||||
pubkeys = {
|
pubkeys = {
|
||||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
||||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
||||||
@@ -145,16 +101,21 @@
|
|||||||
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
'http://[fdef:ffc0:4fff::130]/experimental/sysupgrade/',
|
||||||
},
|
},
|
||||||
probability = 0.5,
|
probability = 0.5,
|
||||||
good_signatures = 2,
|
good_signatures = 1,
|
||||||
pubkeys = {
|
pubkeys = {
|
||||||
'2a74ed02120a7d48bb2dc9be988b3480ed99844054b3d7f3e5d3df27d19d814b', -- ole
|
|
||||||
'7e3bd782e40189b903b3fb1e488d64b23aa04bc353b1a521b4cd50e70b299113', -- fpletz
|
|
||||||
'56c4201f6ce2994678b0142e19099dd28d6ed17775d35ca9a7f12d9235890ffc', -- chris
|
|
||||||
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
'2f92051ac4452d6026061e6c3719ffbd4f34ba7fbc474439fc6f857b76159bae', -- build.freifunk-muenchen.de (fpletz)
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
simple_tc = {
|
||||||
|
mesh_vpn = {
|
||||||
|
ifname = 'mesh-vpn',
|
||||||
|
enabled = false,
|
||||||
|
limit_egress = 1200,
|
||||||
|
limit_ingress = 12000,
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
-- vim: set ft=lua:ts=2:sw=2:et
|
-- vim: set ft=lua:ts=2:sw=2:et
|
||||||
|
|||||||
169
site.mk
169
site.mk
@@ -1,169 +1,26 @@
|
|||||||
GLUON_SITE_PACKAGES := \
|
GLUON_SITE_PACKAGES := \
|
||||||
gluon-respondd \
|
gluon-mesh-babel \
|
||||||
|
gluon-announced \
|
||||||
gluon-autoupdater \
|
gluon-autoupdater \
|
||||||
gluon-config-mode-autoupdater \
|
|
||||||
gluon-config-mode-contact-info \
|
|
||||||
gluon-config-mode-core \
|
gluon-config-mode-core \
|
||||||
gluon-config-mode-geo-location \
|
gluon-config-mode-autoupdater \
|
||||||
gluon-config-mode-hostname \
|
gluon-config-mode-hostname \
|
||||||
gluon-config-mode-mesh-vpn \
|
gluon-config-mode-mesh-vpn \
|
||||||
gluon-ebtables-filter-multicast \
|
gluon-config-mode-geo-location \
|
||||||
gluon-ebtables-filter-ra-dhcp \
|
gluon-config-mode-contact-info \
|
||||||
gluon-web-admin \
|
gluon-luci-admin \
|
||||||
gluon-web-autoupdater \
|
gluon-luci-autoupdater \
|
||||||
gluon-web-network \
|
gluon-luci-portconfig \
|
||||||
gluon-web-wifi-config \
|
gluon-luci-wifi-config \
|
||||||
gluon-mesh-batman-adv-15 \
|
gluon-luci-private-wifi \
|
||||||
|
gluon-next-node \
|
||||||
gluon-mesh-vpn-fastd \
|
gluon-mesh-vpn-fastd \
|
||||||
gluon-radvd \
|
gluon-radvd \
|
||||||
gluon-setup-mode \
|
gluon-setup-mode \
|
||||||
gluon-status-page \
|
gluon-status-page \
|
||||||
iwinfo \
|
iwinfo \
|
||||||
iptables \
|
iptables \
|
||||||
haveged \
|
haveged
|
||||||
gluon-config-mode-site-select \
|
|
||||||
gluon-ebtables-filter-arp-ffmuc \
|
|
||||||
gluon-ebtables-filter-multicast-ffmuc \
|
|
||||||
tecff-ath9k-broken-wifi-workaround \
|
|
||||||
tecff-respondd-watchdog
|
|
||||||
|
|
||||||
# basic support for USB stack
|
|
||||||
USB_PACKAGES_BASIC := \
|
|
||||||
kmod-usb-core \
|
|
||||||
kmod-usb2
|
|
||||||
|
|
||||||
# storage support for USB devices
|
|
||||||
USB_PACKAGES_STORAGE := \
|
|
||||||
block-mount \
|
|
||||||
blkid \
|
|
||||||
kmod-fs-ext4 \
|
|
||||||
kmod-fs-vfat \
|
|
||||||
kmod-usb-storage \
|
|
||||||
kmod-usb-storage-extras \
|
|
||||||
kmod-nls-cp1250 \
|
|
||||||
kmod-nls-cp1251 \
|
|
||||||
kmod-nls-cp437 \
|
|
||||||
kmod-nls-cp775 \
|
|
||||||
kmod-nls-cp850 \
|
|
||||||
kmod-nls-cp852 \
|
|
||||||
kmod-nls-cp866 \
|
|
||||||
kmod-nls-iso8859-1 \
|
|
||||||
kmod-nls-iso8859-13 \
|
|
||||||
kmod-nls-iso8859-15 \
|
|
||||||
kmod-nls-iso8859-2 \
|
|
||||||
kmod-nls-koi8r \
|
|
||||||
kmod-nls-utf8 \
|
|
||||||
swap-utils
|
|
||||||
|
|
||||||
# network support for USB devices
|
|
||||||
USB_PACKAGES_NET := \
|
|
||||||
kmod-mii \
|
|
||||||
kmod-nls-base \
|
|
||||||
kmod-usb-net \
|
|
||||||
kmod-usb-net-asix \
|
|
||||||
kmod-usb-net-asix-ax88179 \
|
|
||||||
kmod-usb-net-cdc-eem \
|
|
||||||
kmod-usb-net-cdc-ether \
|
|
||||||
kmod-usb-net-cdc-mbim \
|
|
||||||
kmod-usb-net-cdc-ncm \
|
|
||||||
kmod-usb-net-cdc-subset \
|
|
||||||
kmod-usb-net-dm9601-ether \
|
|
||||||
kmod-usb-net-hso \
|
|
||||||
kmod-usb-net-huawei-cdc-ncm \
|
|
||||||
kmod-usb-net-ipheth \
|
|
||||||
kmod-usb-net-kalmia \
|
|
||||||
kmod-usb-net-kaweth \
|
|
||||||
kmod-usb-net-mcs7830 \
|
|
||||||
kmod-usb-net-pegasus \
|
|
||||||
kmod-usb-net-qmi-wwan \
|
|
||||||
kmod-usb-net-rndis \
|
|
||||||
kmod-usb-net-sierrawireless \
|
|
||||||
kmod-usb-net-smsc95xx
|
|
||||||
# broken
|
|
||||||
# kmod-usb-net-rtl8150 \
|
|
||||||
# kmod-usb-net-rtl8152 \
|
|
||||||
|
|
||||||
# network support for PCI devices
|
|
||||||
PCI_PACKAGES_NET := \
|
|
||||||
kmod-3c59x \
|
|
||||||
kmod-e100 \
|
|
||||||
kmod-e1000 \
|
|
||||||
kmod-e1000e \
|
|
||||||
kmod-forcedeth \
|
|
||||||
kmod-natsemi \
|
|
||||||
kmod-ne2k-pci \
|
|
||||||
kmod-pcnet32 \
|
|
||||||
kmod-r8169 \
|
|
||||||
kmod-sis900 \
|
|
||||||
kmod-sky2 \
|
|
||||||
kmod-tg3 \
|
|
||||||
kmod-tulip \
|
|
||||||
kmod-via-rhine
|
|
||||||
# broken
|
|
||||||
# kmod-ixgbe \
|
|
||||||
# kmod-r8139too \
|
|
||||||
|
|
||||||
# additional packages
|
|
||||||
TOOLS_PACKAGES := \
|
|
||||||
iperf \
|
|
||||||
socat \
|
|
||||||
tcpdump \
|
|
||||||
usbutils \
|
|
||||||
vnstat
|
|
||||||
# broken
|
|
||||||
# pciutils \
|
|
||||||
|
|
||||||
#
|
|
||||||
# $(GLUON_TARGET) specific settings:
|
|
||||||
#
|
|
||||||
|
|
||||||
# x86-generic
|
|
||||||
ifeq ($(GLUON_TARGET),x86-generic)
|
|
||||||
# support the usb stack on x86 devices
|
|
||||||
# and add a few common USB and PCI NICs
|
|
||||||
GLUON_SITE_PACKAGES += \
|
|
||||||
kmod-usb-hid \
|
|
||||||
kmod-hid-generic \
|
|
||||||
$(USB_PACKAGES_BASIC) \
|
|
||||||
$(USB_PACKAGES_STORAGE) \
|
|
||||||
$(USB_PACKAGES_NET) \
|
|
||||||
$(PCI_PACKAGES_NET) \
|
|
||||||
$(TOOLS_PACKAGES)
|
|
||||||
endif
|
|
||||||
|
|
||||||
# x86-64
|
|
||||||
ifeq ($(GLUON_TARGET),x86-64)
|
|
||||||
# support the usb stack on x86-64 devices
|
|
||||||
# and add a few common USB and PCI NICs
|
|
||||||
GLUON_SITE_PACKAGES += \
|
|
||||||
kmod-usb-hid \
|
|
||||||
kmod-hid-generic \
|
|
||||||
$(USB_PACKAGES_BASIC) \
|
|
||||||
$(USB_PACKAGES_STORAGE) \
|
|
||||||
$(USB_PACKAGES_NET) \
|
|
||||||
$(PCI_PACKAGES_NET) \
|
|
||||||
$(TOOLS_PACKAGES)
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(GLUON_TARGET),x86-kvm_guest)
|
|
||||||
GLUON_SITE_PACKAGES += \
|
|
||||||
$(TOOLS_PACKAGES)
|
|
||||||
endif
|
|
||||||
|
|
||||||
# ar71xx-generic
|
|
||||||
GLUON_TLWR842_SITE_PACKAGES := $(USB_PACKAGES_BASIC) $(TOOLS_PACKAGES) $(USB_PACKAGES_STORAGE)
|
|
||||||
GLUON_TLWR1043_SITE_PACKAGES := $(USB_PACKAGES_BASIC) $(TOOLS_PACKAGES) $(USB_PACKAGES_STORAGE)
|
|
||||||
GLUON_TLWR2543_SITE_PACKAGES := $(USB_PACKAGES_BASIC) $(TOOLS_PACKAGES) $(USB_PACKAGES_STORAGE)
|
|
||||||
GLUON_TLWDR4300_SITE_PACKAGES := $(USB_PACKAGES_BASIC) $(TOOLS_PACKAGES) $(USB_PACKAGES_STORAGE)
|
|
||||||
GLUON_WNDR3700_SITE_PACKAGES := $(USB_PACKAGES_BASIC) $(TOOLS_PACKAGES) $(USB_PACKAGES_STORAGE)
|
|
||||||
GLUON_WRT160NL_SITE_PACKAGES := $(USB_PACKAGES_BASIC) $(TOOLS_PACKAGES) $(USB_PACKAGES_STORAGE)
|
|
||||||
GLUON_ARCHERC7_SITE_PACKAGES := $(USB_PACKAGES_BASIC) $(TOOLS_PACKAGES) $(USB_PACKAGES_STORAGE)
|
|
||||||
GLUON_GLINET_SITE_PACKAGES := $(USB_PACKAGES_BASIC) $(TOOLS_PACKAGES) $(USB_PACKAGES_STORAGE)
|
|
||||||
GLUON_WZRHPG450H_SITE_PACKAGES := $(USB_PACKAGES_BASIC) $(TOOLS_PACKAGES) $(USB_PACKAGES_STORAGE)
|
|
||||||
GLUON_WZRHPAG300H_SITE_PACKAGES := $(USB_PACKAGES_BASIC) $(TOOLS_PACKAGES) $(USB_PACKAGES_STORAGE)
|
|
||||||
|
|
||||||
# mpc85xx-generic
|
|
||||||
GLUON_TLWDR4900_SITE_PACKAGES := $(USB_PACKAGES_BASIC) $(TOOLS_PACKAGES) $(USB_PACKAGES_STORAGE)
|
|
||||||
|
|
||||||
|
|
||||||
DEFAULT_GLUON_RELEASE := snapshot~$(shell date '+%Y%m%d')
|
DEFAULT_GLUON_RELEASE := snapshot~$(shell date '+%Y%m%d')
|
||||||
@@ -175,5 +32,3 @@ GLUON_PRIORITY ?= 0
|
|||||||
|
|
||||||
# Languages to include
|
# Languages to include
|
||||||
GLUON_LANGS ?= en de
|
GLUON_LANGS ?= en de
|
||||||
|
|
||||||
GLUON_REGION := eu
|
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
#!/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
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
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)/
|
|
||||||
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
DIR=$(1) sh create-config.sh
|
|
||||||
|
|
||||||
$(call GluonInstallI18N,gluon-config-mode-site-select,$(1))
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call BuildPackage,gluon-config-mode-site-select))
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
#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