123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- {
- domain_names = {
- %SC = '%SN',
- },
- -- hide domain
- hide_domain = %HIDE,
- -- 32 bytes of random data, encoded in hexadecimal, used to seed other
- -- random values specific to the mesh domain. It must be the same for all
- -- nodes of one mesh, but should be different for firmwares that are not
- -- supposed to mesh with each other.
- -- TODO: Must be set individual by any domain
- domain_seed = '%DS',
- -- v4 and v6 prefixes in which nodes+clients might get an IP
- prefix4 = '%V4',
- prefix6 = '2a03:2260:2342:%V6::/64',
- -- OpenWRT Package Repository (IPv6 capable)
- opkg = {
- openwrt = 'http://firmware.srv.in.ffho.net/openwrt/packages-%v/%A',
- extra = {
- gluon = 'http://firmware.srv.in.ffho.net/%GR/packages/%S',
- },
- },
- mesh = {
- -- for now, we don't use vxlan on the mesh
- vxlan = false,
- batman_adv = {
- routing_algo = 'BATMAN_IV',
- },
- },
- -- wifi settings (2.4 GHz and 5 GHz)
- -- ap.ssid = 'hochstift.freifunk.net/${kürzel}',
- -- mesh.id = 'ffho-mesh-${group-name}',
- wifi24 = {
- channel = 1,
- ap = {
- ssid = '%SS',
- },
- mesh = {
- id = 'ffho-mesh-%GN',
- },
- },
- wifi5 = {
- channel = 44,
- ap = {
- ssid = '%SS',
- },
- mesh = {
- id = 'ffho-mesh-%GN',
- },
- },
- -- IP address of each router
- -- At this IP a client can always connect to its
- -- currently connected node. Both v4 and v6 addr.
- -- must lie in the above prefix4 and prefix6.
- next_node = {
- ip4 = '%N4',
- ip6 = '2a03:2260:2342:%V6::1',
- name = { 'node.ffho.net' },
- -- mac address, must be unique in the client network
- -- (usually, you don't need to change this)
- mac = 'f2:ff:ff:%ID:ff:ff',
- },
- mesh_vpn = {
- -- fastd (vpn) settings
- fastd = {
- groups = {
- backbone = {
- -- specifies how many servers are contacted
- -- by a client simultanously
- limit = 1,
- -- list all available vpn servers
- peers = {
- gw01 = {
- key = '97bc56ae561f67cfe15364134868c3553b5f1eab06f7bd9c5b93fbf280a52b51',
- remotes = {
- '"gw01.ffho.net" port 100%ID',
- 'ipv6 "2001:638:502:1884::185" port 100%ID',
- 'ipv4 "192.26.175.185" port 100%ID',
- },
- },
- gw02 = {
- key = 'e8fa9bf402fd33dd1ba804a97f2e46c704423ff49e9c55312845a7bfb93121ad',
- remotes = {
- '"gw02.ffho.net" port 100%ID',
- 'ipv6 "2a03:fc0:1006:1500::211" port 100%ID',
- 'ipv4 "156.67.189.211" port 100%ID',
- },
- },
- gw03 = {
- key = '629b2742922f068ef49558283aea4b75c1427d8cdd3fcd2dbd7c00880547d3b3',
- remotes = {
- '"gw03.ffho.net" port 100%ID',
- 'ipv6 "2a00:13c8:1000:2::147" port 100%ID',
- 'ipv4 "185.46.137.147" port 100%ID',
- },
- },
- gw04 = {
- key = 'cf3855e5fa04e4c04a294cb6e8902f91c7ff7ef82bf031cc842a2b79b936677c',
- remotes = {
- '"gw04.ffho.net" port 100%ID',
- 'ipv6 "2003:0:f00:20::27" port 100%ID',
- 'ipv4 "217.243.19.27" port 100%ID',
- },
- },
- gw05 = {
- key = 'd0d32a2f536a0fc1f0c848e6da15bd96851d5ff4fdf9239c830bab033ddcec1a',
- remotes = {
- '"gw05.ffho.net" port 100%ID',
- 'ipv6 "2001:638:502:1884::ff15" port 100%ID',
- 'ipv4 "192.26.175.183" port 100%ID',
- },
- },
- },
- },
- },
- },
- },
- }
|