This file is indexed.

/usr/share/doc/mrtparse/examples/bird6.conf is in mrtparse 1.6-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
46
47
48
49
50
51
52
53
54
mrtdump protocols all;
mrtdump "/tmp/bird6_bgp";

log syslog { debug, trace, info, remote, warning, error, auth, fatal, bug };
log stderr all;
log "/var/log/bird6.log" all;
debug protocols all;

watchdog warning 5 s;
watchdog timeout 30 s;

router id 192.168.0.16;

protocol kernel {
    learn;
    scan time 20;
    export all;
}

protocol device {
    scan time 10;
}

protocol direct {
    interface "*";
}

protocol static {
    route fd02:17::/64 unreachable;
}

filter ibgp_out {
    if source = RTS_STATIC then {
        bgp_large_community.add((65000,4294967295,100));
        bgp_large_community.add((65000,4294967295,200));
        bgp_large_community.add((65000,4294967295,300));
        accept;
    }
    reject;
}

protocol bgp {
    hold time 90;
    startup hold time 10;
    connect retry time 10;
    keepalive time 30;
    local as 65000;
    neighbor fd02::10 as 65000;
    add paths on;
    enable route refresh on;
    graceful restart on;
    enable as4 on;
    export filter ibgp_out;
}