~brightbox/bird/debian-packaging

« back to all changes in this revision

Viewing changes to bird.conf

  • Committer: Ondřej Surý
  • Date: 2013-11-25 14:59:24 UTC
  • Revision ID: git-v1:a3c058b8752bd98df2231ac88d94931fdb4e0c65
New upstream version 1.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *      This is an example configuration file.
3
 
 */
4
 
 
5
 
# Yet another comment
6
 
 
7
 
router id 62.168.0.1;
8
 
 
9
 
define xyzzy = (120+10);
10
 
 
11
 
protocol device {
12
 
        disabled;
13
 
#       interface "eth*", "ppp*";
14
 
}
15
 
 
16
 
protocol direct {
17
 
}
18
 
 
19
 
protocol kernel {
20
 
        disabled;
21
 
#       learn;                  # Learn all routes from the kernel
22
 
#       scan time 10;           # Scan kernel tables every 10 seconds
23
 
}
24
 
 
25
 
protocol static {
26
 
#       disabled;
27
 
 
28
 
        route fec0:2::/64 blackhole;
29
 
        route fec0:3::/64 unreachable;
30
 
        route fec0:4::/64 prohibit;
31
 
 
32
 
#       route 0.0.0.0/0 via 195.113.31.113;
33
 
#       route 62.168.0.0/25 unreachable;
34
 
#       route 1.2.3.4/32 via 195.113.31.124;
35
 
#       route 10.0.0.0/8 unreachable;
36
 
#       route 10.1.1.0:255.255.255.0 via 62.168.0.3;
37
 
#       route 10.1.2.0:255.255.255.0 via 62.168.0.3;
38
 
#       route 10.1.3.0:255.255.255.0 via 62.168.0.4;
39
 
#       route 10.2.0.0/24 via "arc0";
40
 
        export all;
41
 
}
42
 
 
43
 
protocol rip {
44
 
}