From: Ondrej Zajicek (work) Date: Sun, 19 Feb 2017 10:25:16 +0000 (+0100) Subject: Doc: Fix RIP example X-Git-Tag: v2.0.0-pre1~4^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9be12a7d95d668a64922f935057c0b401b58ab75;p=thirdparty%2Fbird.git Doc: Fix RIP example Thanks to Steve Leung for the bugreport. --- diff --git a/doc/bird.sgml b/doc/bird.sgml index 6af0e0f67..11fe21900 100644 --- a/doc/bird.sgml +++ b/doc/bird.sgml @@ -3806,16 +3806,17 @@ protocol rip [<name>] {

protocol rip { - debug all; - port 1520; - period 12; - garbage time 60; - interface "eth0" { metric 3; mode multicast; }; - interface "eth*" { metric 2; mode broadcast; }; - authentication cryptographic; - password "secret-shared-key" { algorithm hmac sha256; }; - import filter { print "importing"; accept; }; - export filter { print "exporting"; accept; }; + import all; + export all; + interface "eth*" { + metric 2; + port 1520; + mode multicast; + update time 12; + timeout time 60; + authentication cryptographic; + password "secret" { algorithm hmac sha256; }; + }; }