LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

ripd

RIP routing protocol daemon

TLDR

Start RIP daemon
$ ripd -d
copy
Start with config file
$ ripd -d -f [/etc/frr/ripd.conf]
copy
Connect to running daemon via VTY
$ vtysh -d ripd
copy
Start with VTY bound to localhost
$ ripd -d -A 127.0.0.1
copy
Open interactive terminal session
$ ripd -t
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, forking to background after initialization.
-f, --config_file file
Configuration file (default: /etc/frr/ripd.conf).
-t, --terminal
Open an interactive VTY session on the terminal.
-A, --vty_addr addr
VTY bind address.
-P, --vty_port port
VTY port (default: 2602). Set to 0 to disable.
-i, --pid_file file
PID file path (default: /var/run/frr/ripd.pid).
-z, --zclient_path path
Override ZAPI socket path for zebra communication.
-u, --user user
Run as user.
-g, --group group
Run as group.

EXAMPLES

$ # Start daemon
ripd -d -f /etc/frr/ripd.conf

# Connect via vtysh
vtysh
router rip
  network 192.168.1.0/24
  version 2
copy

CONFIGURATION

/etc/frr/ripd.conf (FRRouting) / /etc/quagga/ripd.conf (Quagga)

Main configuration file defining RIP networks, version, redistribution rules, and interface settings.

CAVEATS

Part of FRRouting (or legacy Quagga). Requires the zebra daemon to be running. RIP has a maximum hop count of 15 and 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
Kai