diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2012-11-27 02:08:04 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2012-11-27 02:08:04 +0100 |
commit | 80a9cadc76101157707aecc0b482ad88ad702fc3 (patch) | |
tree | 1fe41e55b46943a5865861f962cf36433c367d8b /doc/bird.conf.example | |
parent | b31774eeb01a2f63e4ce4dc83f36ffd17879593e (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 'doc/bird.conf.example')
-rw-r--r-- | doc/bird.conf.example | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/bird.conf.example b/doc/bird.conf.example index 5e07ab5a..dcc62e29 100644 --- a/doc/bird.conf.example +++ b/doc/bird.conf.example @@ -67,8 +67,8 @@ protocol static { # debug { states, routes, filters, interfaces, events, packets }; # debug all; # route 0.0.0.0/0 via 198.51.100.13; -# route 198.51.100.0/25 reject; -# route 10.0.0.0/8 reject; +# route 198.51.100.0/25 unreachable; +# route 10.0.0.0/8 unreachable; # route 10.1.1.0:255.255.255.0 via 198.51.100.3; # route 10.1.2.0:255.255.255.0 via 198.51.100.3; # route 10.1.3.0:255.255.255.0 via 198.51.100.4; |