Updated services.md with quagga documentation

This commit is contained in:
SaintYomar 2019-06-17 08:23:03 -05:00 committed by GitHub
parent a715a77c0d
commit d8505418a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -277,3 +277,24 @@ This image will be listed in the services after we restart the core-daemon:
```shell
sudo service core-daemon restart
```
#### Quagga Routing Suite
Quagga is a routing software suite, providing implementations of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms, particularly FreeBSD, Linux, Solaris and NetBSD. Quagga is a fork of GNU Zebra which was developed by Kunihiro Ishiguro.
The Quagga architecture consists of a core daemon, zebra, which acts as an abstraction layer to the underlying Unix kernel and presents the Zserv API over a Unix or TCP stream to Quagga clients. It is these Zserv clients which typically implement a routing protocol and communicate routing updates to the zebra daemon.
##### Quagga Package Install
```shell
sudo apt-get install quagga
```
##### Quagga Source Install
First, download the source code from their [official webpage](https://www.quagga.net/).
```shell
sudo apt-get install gawk
```
Extract the tarball, go to the directory of your currently extracted code and issue the following commands.
```shell
./configure
make
sudo make install
```