LinuxCommandLibrary

ripd

TLDR

Start RIP daemon

$ ripd -d
copy
Start with config file
$ ripd -f [/etc/quagga/ripd.conf]
copy
Connect to running daemon
$ vtysh -d ripd
copy
Debug mode
$ ripd -d -A 127.0.0.1
copy

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
copy

CONFIGURATION

$ # /etc/quagga/ripd.conf
router rip
  network 10.0.0.0/8
  network 192.168.1.0/24
  version 2
  redistribute connected
copy

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.

SEE ALSO

zebra(8), ospfd(8), vtysh(1), bgpd(8)

Copied to clipboard