2018-09-21 15:59:10 +02:00
|
|
|
DEBUG = False
|
|
|
|
LOG_FILE="/var/log/bird-lg/lg-webservice.log"
|
|
|
|
LOG_LEVEL="WARNING"
|
|
|
|
|
|
|
|
DOMAIN = "ffmwu.org"
|
|
|
|
|
|
|
|
BIND_IP = "127.0.0.1"
|
|
|
|
BIND_PORT = 5001
|
|
|
|
|
|
|
|
PROXY = {
|
2019-05-22 09:18:40 +02:00
|
|
|
{% for host in groups["gateways"] %}
|
2018-09-21 15:59:10 +02:00
|
|
|
"{{ host.rsplit('.freifunk-mwu.de')[0] }}" : 5000,
|
|
|
|
{% endfor %}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Used for bgpmap
|
|
|
|
ROUTER_IP = {
|
2019-05-22 09:18:40 +02:00
|
|
|
{% for host in groups["gateways"] %}
|
2019-03-19 15:23:12 +01:00
|
|
|
"{{ host.rsplit('.freifunk-mwu.de')[0] }}" : [ "{{ loopback_net_ipv4 | ipsubnet(32, hostvars[host]['magic']) | ipaddr('address') }}", "{{ loopback_net_ipv6 | ipaddr(hostvars[host]['magic']) | ipaddr('address') }}" ],
|
2018-09-21 15:59:10 +02:00
|
|
|
{% endfor %}
|
|
|
|
}
|
|
|
|
|
|
|
|
AS_NUMBER = {
|
2019-05-22 09:18:40 +02:00
|
|
|
{% for host in groups["gateways"] %}
|
2019-03-02 18:10:48 +01:00
|
|
|
"{{ host.rsplit('.freifunk-mwu.de')[0] }}" : "{{ as_private }}",
|
2018-09-21 15:59:10 +02:00
|
|
|
{% endfor %}
|
|
|
|
}
|
|
|
|
|
|
|
|
#WHOIS_SERVER = "whois.foo.bar"
|
|
|
|
|
|
|
|
# DNS zone to query for ASN -> name mapping
|
|
|
|
ASN_ZONE = "asn.cymru.com"
|
|
|
|
|
|
|
|
SESSION_KEY = '\xd77\xf9\xfa\xc2\xb5\xcd\x85)`+H\x9d\xeeW\\%\xbe/\xbaT\x89\xe8\xa7'
|