Small typos in documentation.
This commit is contained in:
parent
129e912924
commit
f735de0290
1 changed files with 10 additions and 9 deletions
|
@ -966,7 +966,8 @@ protocol kernel { # Secondary routing table
|
||||||
<sect1>Introduction
|
<sect1>Introduction
|
||||||
|
|
||||||
<p>Open Shortest Path First (OSPF) is a quite complex interior gateway
|
<p>Open Shortest Path First (OSPF) is a quite complex interior gateway
|
||||||
protocol. The current IPv4 version (OSPFv2) is defined in RFC 2328<htmlurl url="ftp://ftp.rfc-editor.org/in-notes/rfc2328.txt">. It's a link
|
protocol. The current IPv4 version (OSPFv2) is defined
|
||||||
|
in RFC 2328<htmlurl url="ftp://ftp.rfc-editor.org/in-notes/rfc2328.txt">. It's a link
|
||||||
state (a.k.a. shortest path first) protocol -- each router maintains a database
|
state (a.k.a. shortest path first) protocol -- each router maintains a database
|
||||||
describing the autonomous system's topology. Each participating router
|
describing the autonomous system's topology. Each participating router
|
||||||
has an identical copy of the database and all routers run the same algorithm
|
has an identical copy of the database and all routers run the same algorithm
|
||||||
|
@ -1032,10 +1033,10 @@ protocol ospf <name> {
|
||||||
passwords {
|
passwords {
|
||||||
password "<text>" {
|
password "<text>" {
|
||||||
id <num>;
|
id <num>;
|
||||||
generate from <date>;
|
generate from "<date>";
|
||||||
generate to <date>;
|
generate to "<date>";
|
||||||
accept from <date>;
|
accept from "<date>";
|
||||||
accept to <date>;
|
accept to "<date>";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
neighbors {
|
neighbors {
|
||||||
|
@ -1234,13 +1235,13 @@ protocol ospf MyOSPF {
|
||||||
passwords {
|
passwords {
|
||||||
password "abc" {
|
password "abc" {
|
||||||
id 1;
|
id 1;
|
||||||
generate to 22-04-2003 11:00:06;
|
generate to "22-04-2003 11:00:06";
|
||||||
accept from 17-01-2001 12:01:05;
|
accept from "17-01-2001 12:01:05";
|
||||||
};
|
};
|
||||||
password "def" {
|
password "def" {
|
||||||
id 2;
|
id 2;
|
||||||
generate to 22-07-2005 17:03:21;
|
generate to "22-07-2005 17:03:21";
|
||||||
accept from 22-02-2001 11:34:06;
|
accept from "22-02-2001 11:34:06";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue