From: Nigel Kukard Date: Wed, 18 Nov 2020 17:00:12 +0000 (+0100) Subject: Doc: Added example of static routes with BGP large communities X-Git-Tag: v2.0.8~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df65d519d6a5a7511cc893d2be55399b38b838be;p=thirdparty%2Fbird.git Doc: Added example of static routes with BGP large communities --- diff --git a/doc/bird.sgml b/doc/bird.sgml index a62d33713..9d1047a89 100644 --- a/doc/bird.sgml +++ b/doc/bird.sgml @@ -5167,6 +5167,10 @@ protocol static { ospf_tag = 2; # Set extended attribute bfd; # BFD-controlled route }; + route 192.168.11.0/24 via 198.51.100.100 { + bgp_community.add((65535, 65281)); # Set extended BGP attribute + bgp_large_community.add((64512, 1, 1)); # Set extended BGP attribute + }; }