123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- {
- -- name of this domain
- domain_names = {
- %CO = '%NA',
- },
- -- domain seed
- domain_seed = '%SE',
- -- hide this domain
- hide_domain = %HI,
- -- v4 and v6 prefixes in which nodes+clients might get an IP
- prefix4 = '%V4',
- prefix6 = '2a03:2260:2342:%V6::/64',
- -- wifi settings (2.4 GHz and 5 GHz)
- wifi24 = {
- ap = {
- ssid = '%SS',
- },
- mesh = {
- id = 'ffho-mesh-%MI',
- },
- },
- wifi5 = {
- ap = {
- ssid = '%SS',
- },
- mesh = {
- id = 'ffho-mesh-%MI',
- },
- },
- -- 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',
- -- 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 = {
- -- list all available vpn servers
- peers = {
- gw01 = {
- key = '97bc56ae561f67cfe15364134868c3553b5f1eab06f7bd9c5b93fbf280a52b51',
- -- remotes is an array of ways on how to reach the VPN server
- -- Use public addresses here, these addresses are used when the mesh might not be connected yet.
- -- format: '[|ipv4|ipv6] "hostname-or-ip-address" port 10000'
- remotes = {
- '"gw01.ffho.net" port 100%ID',
- 'ipv6 "2001:830:c:9::12" port 100%ID',
- 'ipv4 "80.242.130.70" port 100%ID',
- },
- },
- gw02 = {
- key = 'e8fa9bf402fd33dd1ba804a97f2e46c704423ff49e9c55312845a7bfb93121ad',
- remotes = {
- '"gw02.ffho.net" port 100%ID',
- 'ipv6 "2a01:4f8:190:6500::18:1" port 100%ID',
- 'ipv4 "78.46.242.24" port 100%ID',
- },
- },
- gw03 = {
- key = '629b2742922f068ef49558283aea4b75c1427d8cdd3fcd2dbd7c00880547d3b3',
- remotes = {
- '"gw03.ffho.net" port 100%ID',
- 'ipv6 "2a00:13c8:1000:2::165" port 100%ID',
- 'ipv4 "185.46.137.165" port 100%ID',
- },
- },
- gw04 = {
- key = 'cf3855e5fa04e4c04a294cb6e8902f91c7ff7ef82bf031cc842a2b79b936677c',
- remotes = {
- '"gw04.ffho.net" port 100%ID',
- 'ipv6 "2a02:450:1::22" port 100%ID',
- 'ipv4 "80.70.181.63" 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',
- },
- },
- gw06 = {
- key = '88b570c4cc811259b7c4106943098c9bee1126d692ddacedd23cd48efc28b0bf',
- remotes = {
- '"gw06.ffho.net" port 100%ID',
- },
- },
- },
- },
- },
- },
- },
- -- configure the autoupdater
- autoupdater = {
- -- available branches for the autoupdater
- branches = {
- stable = {
- mirrors = {'http://firmware.srv.in.ffho.net/%CO/stable/sysupgrade', 'http://[2a03:2260:2342:f251::6]/%CO/stable/sysupgrade'},
- },
- testing = {
- mirrors = {'http://firmware.srv.in.ffho.net/%CO/testing/sysupgrade', 'http://[2a03:2260:2342:f251::6]/%CO/testing/sysupgrade'},
- },
- experimental = {
- mirrors = {'http://firmware.srv.in.ffho.net/%CO/experimental/sysupgrade', 'http://[2a03:2260:2342:f251::6]/%CO/experimental/sysupgrade'},
- },
- },
- },
- }
|