diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2020-10-05 14:52:55 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2020-10-05 14:52:55 +0200 |
commit | 6c11dbcf28faa145cfb7310310a2a261fd4dd1f2 (patch) | |
tree | 0e74abec61b534cb170a29c0f722d450bc9f2868 | |
parent | 14ce8904e7b9f6ceeaf2587faeab200cd67401d9 (diff) |
Doc: Fix missing semicolons
Thanks to Marco Gartmann for the bugreport.
-rw-r--r-- | doc/bird.sgml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/bird.sgml b/doc/bird.sgml index 61f0ea32..ffc22218 100644 --- a/doc/bird.sgml +++ b/doc/bird.sgml @@ -3393,18 +3393,18 @@ protocol ospf [v2|v3] <name> { networks { <prefix>; <prefix> hidden; - } + }; external { <prefix>; <prefix> hidden; <prefix> tag <num>; - } + }; stubnet <prefix>; stubnet <prefix> { hidden <switch>; summary <switch>; cost <num>; - } + }; interface <interface pattern> [instance <num>] { cost <num>; stub <switch>; @@ -3929,7 +3929,7 @@ protocol ospf MyOSPF { networks { 172.16.1.0/24; 172.16.2.0/24 hidden; - } + }; interface "-arc0" , "arc*" { type nonbroadcast; authentication none; @@ -5151,12 +5151,12 @@ protocol static { route 10.2.0.0/24 via "arc0"; # Secondary network route 192.168.10.0/24 via 198.51.100.100 { ospf_metric1 = 20; # Set extended attribute - } + }; route 192.168.10.0/24 via 198.51.100.100 { ospf_metric2 = 100; # Set extended attribute ospf_tag = 2; # Set extended attribute bfd; # BFD-controlled route - } + }; } </code> |