forked from freifunk-luebeck/birdconfig
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathbird6-matchbox.conf
More file actions
45 lines (38 loc) · 766 Bytes
/
bird6-matchbox.conf
File metadata and controls
45 lines (38 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
router id 172.23.75.225;
log syslog all;
define OWNIP = fd42:4992:6a6d:500::1;
protocol device {
scan time 10;
}
protocol kernel {
scan time 20;
device routes;
import none;
export filter {
krt_prefsrc = OWNIP;
accept;
};
};
protocol ospf {
area 51 {
interface "wg_*" {
cost 1000;
hello 5; retransmit 2; wait 10; dead 60;
};
interface "br-lan" {
cost 5;
hello 5; retransmit 2; wait 10; dead 20;
};
};
};
protocol radv {
interface "br-lan" {
max ra interval 100;
link mtu 1500;
};
rdnss 2001:470:1f0b:f8d::1;
dnssl { domain "ohorn.evenet.dn42"; };
prefix 2a03:4000:13:31e:100::/120 { autonomous no; };
export all;
import none;
}