rtrclient command not found

In this troubleshooting guide we learn how to fix rtrclient command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

rtrclient: command not found

or when using sudo you get the following error message

sudo: rtrclient: command not found

Solutions to rtrclient: command not found

How To Fix rtrclient: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu rtrclient is provided by rtr-tools package.

rtr-tools is:

Contains tools provided with RTRlib.

rtrclient is command line that connects to an RPKI-RTR server and prints protocol information and information about the fetched ROAs.

rpki-rov is a command line tool that connects to an RPKI-RTR server and allows validating IP prefixes and origin ASes.

To fix this problem, we can install more using the command below.

sudo apt-get -y install rtr-tools

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install rtr-tools.

sudo apt -y install rtr-tools

Or if you have aptitude installed you can use the following command.

sudo aptitude install rtr-tools

Summary

In this tutorial we learn how to fix rtrclient command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.