The network routing table defines the route to particular network destinations. In Linux, it is stored in the Routing Information Base (RIB).
The routing table can be displayed on older Linux systems using route and netstat commands at the terminal. Both are part of the net-tools suite, which is now deprecated and slowly replaced by the iproute2 suite.
iproute2 is installed in most new Linux systems, but if it doesn't, it usually is available in the repository of the default package manager thus can easily be installed.
$ sudo apt update && sudo apt install --assume-yes iproute2 #Ubuntu and Debian
$ ip route list default via 192.168.111.2 dev ens33 proto dhcp src 192.168.111.128 metric 100 192.168.111.0/24 dev ens33 proto kernel scope link src 192.168.111.128 192.168.111.2 dev ens33 proto dhcp scope link src 192.168.111.128 metric 100
$ ip route list 192.168.111.0/24 192.168.111.0/24 dev ens33 proto kernel scope link src 192.168.111.128
$ ip route list | grep ^default default via 192.168.111.2 dev ens33 proto dhcp src 192.168.111.128 metric 100
This is useful for people who are used to grep rather than having to memorize all the switches for the ip route command.
Comment anonymously. Login not required.