diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-02-01 09:52:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-01 09:52:42 +0100 |
commit | b930bb6ef538b19de11facd3ef48a0e92e9d705b (patch) | |
tree | 625e762078f448abfe59d6550ff2b676d4879844 /docs | |
parent | efbc6141f157c3618a86792f9e6fad56626a7004 (diff) | |
parent | c69d94e55266c661cd6be59c1648d3fb8180d6c9 (diff) | |
download | vyos-documentation-b930bb6ef538b19de11facd3ef48a0e92e9d705b.tar.gz vyos-documentation-b930bb6ef538b19de11facd3ef48a0e92e9d705b.zip |
Merge pull request #199 from currite/ospf-min
ospf: fix minimum ospf requirements
Diffstat (limited to 'docs')
-rw-r--r-- | docs/routing/ospf.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/routing/ospf.rst b/docs/routing/ospf.rst index acffb7b3..e29ad2ab 100644 --- a/docs/routing/ospf.rst +++ b/docs/routing/ospf.rst @@ -17,19 +17,19 @@ OSPFv2 (IPv4) ^^^^^^^^^^^^^ In order to have a VyOS system exchanging routes with OSPF neighbors, you will -at least need to configure the area and a network, +at least need to configure an OSPF area and some network. .. code-block:: none set protocols ospf area 0 network 192.168.0.0/24 -as well as the router ID. +That is the minimum configuration you will need. +It is a good practice to define the router ID too. .. code-block:: none set protocols ospf parameters router-id 10.1.1.1 -That is the minimum configuration you will need. Below you can see a typical configuration using 2 nodes, redistribute loopback address and the node 1 sending the default route: |