Last active
August 29, 2015 14:27
-
-
Save tcatm/7c031738d2382bb21bed to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
hostname_prefix = 'babel-', | |
site_name = 'Freifunk Lübeck Babel', | |
site_code = 'ffhl-babel', | |
opkg_repo = 'http://openwrt.draic.info/chaos_calmer/15.05-rc3/%S/packages', | |
prefix4 = '10.130.128.0/20', | |
prefix6 = '2001:67c:2d50:1001::/64', | |
timezone = 'CET-1CEST,M3.5.0,M10.5.0/3', -- Europe/Berlin | |
ntp_servers = {'1.ntp.services.ffhl'}, | |
regdom = 'DE', | |
babel_mesh = { | |
prefix = '2001:67c:2d50:1000::/64', | |
}, | |
next_node = { | |
ip4 = '10.130.128.1', | |
ip6 = '2001:67c:2d50:1001::1', | |
-- anycast MAC of all nodes | |
mac = '02:00:00:00:00:42', | |
}, | |
wifi24 = { | |
channel = 1, | |
htmode = 'HT20', | |
ap = { | |
ssid = 'ffhl-babel', | |
}, | |
mesh = { | |
id = 'foobabel', | |
mcast_rate = 12000, | |
}, | |
}, | |
wifi5 = { | |
channel = 44, | |
htmode = 'HT20', | |
ap = { | |
ssid = 'ffhl-babel', | |
}, | |
mesh = { | |
id = 'foobabel', | |
mcast_rate = 12000, | |
}, | |
}, | |
mesh_on_wan = true, | |
authorized_keys = { | |
'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC1X2c7+E4vX6vbEyjEzBjQROcJJme9foaV3S5Qfq6VpJA/Z58EhinylNhMdJjtspu+8nON9Vsml80hqL7PU4+/H3xcZfF+WAZZV+zaHZ4acgtmtUV/f63liWkrJhRrLBZxIMPfSJAmqbNr2TfgBPZwTkV5P1U7whlGiTVbu8fPTdEOyGsMhF3wRgjNA9Gh9RVu+xfLQT+eHZvlvLXd53m5w9I8m/nS4bRhmciaoWnwGQ9fKX+e9KXMd7JHGgYXNz3TNPoMHbeT7DQ2dj0Dw3LsTeISYKHJAMQXTe0oWiYCDyjbzlMCIsQRct15wXbE6R/2jGiOrdC0edJxAEJnXfFaP9HY0KP8QKiwp8hG3U+Vy6h/ujmLqBSGmYDA6s2MalEomcpwX9z1MB+izPijh8Rt9O1eByu1MGEoV5wddOJm7iEBoJ9XFX0qvIgz0XW1qOJUvbI+n8X9a+Cd4Snani2t+6Q34HaJMUsqaJ7rysXGiyh7mWET98WOPbseorg113/VVLjyQAouyJnFEeQseh3odZdISgZxcuKH+pbqtqUWImdhSj9Q3vB02XTE+Lc+GAJijbf/CmrF+GCN4InGv7HtiRJr1yf0GzUUl2UOXuvSm0ovqsVi8/RL4LfUkdxgKy/CD8XI4B4NlkzHpO3SHh7fXPVtfxoBnelE+iKsWBXNOw== nils@t410', | |
}, | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GLUON_SITE_PACKAGES := \ | |
gluon-announced \ | |
gluon-mesh-babel \ | |
gluon-authorized-keys \ | |
gluon-client-bridge \ | |
gluon-next-node \ | |
ip \ | |
iwinfo \ | |
iptables | |
DEFAULT_GLUON_RELEASE := 0.1~exp$(shell date '+%Y%m%d') | |
# Allow overriding the release number from the command line | |
GLUON_RELEASE ?= $(DEFAULT_GLUON_RELEASE) | |
GLUON_PRIORITY ?= 0 | |
GLUON_LANGS ?= en de |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment