ripd
TLDR
Start RIP daemon
$ ripd -d
Start with config file$ ripd -f [/etc/quagga/ripd.conf]
Connect to running daemon$ vtysh -d ripd
Debug mode$ ripd -d -A 127.0.0.1
SYNOPSIS
ripd [options]
DESCRIPTION
ripd is the RIP (Routing Information Protocol) daemon from Quagga/FRRouting. It implements RIPv1 and RIPv2 for dynamic routing in small to medium networks.
PARAMETERS
-d, --daemon
Run as daemon.-f, --config_file file
Configuration file.-A, --vty_addr addr
VTY bind address.-P, --vty_port port
VTY port.-u, --user user
Run as user.-g, --group group
Run as group.
EXAMPLES
$ # Start daemon
ripd -d -f /etc/quagga/ripd.conf
# Connect via vtysh
vtysh
router rip
network 192.168.1.0/24
version 2
ripd -d -f /etc/quagga/ripd.conf
# Connect via vtysh
vtysh
router rip
network 192.168.1.0/24
version 2
CONFIGURATION
$ # /etc/quagga/ripd.conf
router rip
network 10.0.0.0/8
network 192.168.1.0/24
version 2
redistribute connected
router rip
network 10.0.0.0/8
network 192.168.1.0/24
version 2
redistribute connected
CAVEATS
Part of Quagga or FRRouting. Requires zebra daemon. RIP has slow convergence. Use OSPF for larger networks.
HISTORY
ripd is part of Quagga routing suite (forked from GNU Zebra), and later FRRouting for Unix routing daemons.


