summaryrefslogtreecommitdiff
path: root/bird.conf
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2012-11-27 02:08:04 +0100
committerOndrej Zajicek <santiago@crfreenet.org>2012-11-27 02:08:04 +0100
commit80a9cadc76101157707aecc0b482ad88ad702fc3 (patch)
tree1fe41e55b46943a5865861f962cf36433c367d8b /bird.conf
parentb31774eeb01a2f63e4ce4dc83f36ffd17879593e (diff)
Changes static route targets drop/reject to blackhole/unreachable.
To be consistent with rest of BIRD and Linux. Old names are also allowed for compatibility.
Diffstat (limited to 'bird.conf')
-rw-r--r--bird.conf10
1 files changed, 5 insertions, 5 deletions
diff --git a/bird.conf b/bird.conf
index 2d10ef4b..bafd6ea1 100644
--- a/bird.conf
+++ b/bird.conf
@@ -25,14 +25,14 @@ protocol kernel {
protocol static {
# disabled;
- route fec0:2::/64 reject;
- route fec0:3::/64 reject;
- route fec0:4::/64 reject;
+ route fec0:2::/64 blackhole;
+ route fec0:3::/64 unreachable;
+ route fec0:4::/64 prohibit;
# route 0.0.0.0/0 via 195.113.31.113;
-# route 62.168.0.0/25 reject;
+# route 62.168.0.0/25 unreachable;
# route 1.2.3.4/32 via 195.113.31.124;
-# route 10.0.0.0/8 reject;
+# route 10.0.0.0/8 unreachable;
# route 10.1.1.0:255.255.255.0 via 62.168.0.3;
# route 10.1.2.0:255.255.255.0 via 62.168.0.3;
# route 10.1.3.0:255.255.255.0 via 62.168.0.4;