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.sgml | |
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.sgml')
-rw-r--r-- | doc/bird.sgml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/bird.sgml b/doc/bird.sgml index d833f82f..d351cedc 100644 --- a/doc/bird.sgml +++ b/doc/bird.sgml @@ -2733,9 +2733,10 @@ definition of the protocol contains mainly a list of static routes: route through an interface to hosts on a directly connected network. <tag>route <m/prefix/ recursive <m/ip/</tag> Static recursive route, its nexthop depends on a route table lookup for given IP address. - <tag>route <m/prefix/ drop|reject|prohibit</tag> Special routes - specifying to drop the packet, return it as unreachable or return - it as administratively prohibited. + <tag>route <m/prefix/ blackhole|unreachable|prohibit</tag> Special routes + specifying to silently drop the packet, return it as unreachable or return + it as administratively prohibited. First two targets are also known + as <cf/drop/ and <cf/reject/. <tag>check link <m/switch/</tag> If set, hardware link states of network interfaces are taken @@ -2761,7 +2762,7 @@ protocol static { via 198.51.100.10 weight 2 via 198.51.100.20 via 192.0.2.1; - route 203.0.113.0/24 reject; # Sink route + route 203.0.113.0/24 unreachable; # Sink route route 10.2.0.0/24 via "arc0"; # Secondary network } </code> |