Doc: Fix missing semicolons

Thanks to Marco Gartmann for the bugreport.
This commit is contained in:
Ondrej Zajicek (work) 2020-10-05 14:52:55 +02:00
parent 14ce8904e7
commit 6c11dbcf28

View file

@ -3393,18 +3393,18 @@ protocol ospf [v2|v3] <name> {
networks { networks {
<prefix>; <prefix>;
<prefix> hidden; <prefix> hidden;
} };
external { external {
<prefix>; <prefix>;
<prefix> hidden; <prefix> hidden;
<prefix> tag <num>; <prefix> tag <num>;
} };
stubnet <prefix>; stubnet <prefix>;
stubnet <prefix> { stubnet <prefix> {
hidden <switch>; hidden <switch>;
summary <switch>; summary <switch>;
cost <num>; cost <num>;
} };
interface <interface pattern> [instance <num>] { interface <interface pattern> [instance <num>] {
cost <num>; cost <num>;
stub <switch>; stub <switch>;
@ -3929,7 +3929,7 @@ protocol ospf MyOSPF {
networks { networks {
172.16.1.0/24; 172.16.1.0/24;
172.16.2.0/24 hidden; 172.16.2.0/24 hidden;
} };
interface "-arc0" , "arc*" { interface "-arc0" , "arc*" {
type nonbroadcast; type nonbroadcast;
authentication none; authentication none;
@ -5151,12 +5151,12 @@ protocol static {
route 10.2.0.0/24 via "arc0"; # Secondary network route 10.2.0.0/24 via "arc0"; # Secondary network
route 192.168.10.0/24 via 198.51.100.100 { route 192.168.10.0/24 via 198.51.100.100 {
ospf_metric1 = 20; # Set extended attribute ospf_metric1 = 20; # Set extended attribute
} };
route 192.168.10.0/24 via 198.51.100.100 { route 192.168.10.0/24 via 198.51.100.100 {
ospf_metric2 = 100; # Set extended attribute ospf_metric2 = 100; # Set extended attribute
ospf_tag = 2; # Set extended attribute ospf_tag = 2; # Set extended attribute
bfd; # BFD-controlled route bfd; # BFD-controlled route
} };
} }
</code> </code>