diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-06-20 12:12:23 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-06-20 12:47:56 +0200 |
commit | 41d2d62e6948f0978f09b7350b1897168efec9f2 (patch) | |
tree | 3fb5f4760f083d7db86eb50dc18457d18b032bc5 /docs/routing/rip.rst | |
parent | 57e4b8d6641a4cba327e5da55b3df06ef9060f2c (diff) | |
download | vyos-documentation-41d2d62e6948f0978f09b7350b1897168efec9f2.tar.gz vyos-documentation-41d2d62e6948f0978f09b7350b1897168efec9f2.zip |
routing: split routing protocols into individual files
Diffstat (limited to 'docs/routing/rip.rst')
-rw-r--r-- | docs/routing/rip.rst | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/routing/rip.rst b/docs/routing/rip.rst new file mode 100644 index 00000000..237106f6 --- /dev/null +++ b/docs/routing/rip.rst @@ -0,0 +1,22 @@ +.. _routing-rip: + +RIP +--- + +Simple RIP configuration using 2 nodes and redistributing connected interfaces. + +**Node 1:** + +.. code-block:: sh + + set interfaces loopback address 10.1.1.1/32 + set protocols rip network 192.168.0.0/24 + set protocols rip redistribute connected + +**Node 2:** + +.. code-block:: sh + + set interfaces loopback address 10.2.2.2/32 + set protocols rip network 192.168.0.0/24 + set protocols rip redistribute connected |