trust_router command not found

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

Introduction

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

trust_router: command not found

or when using sudo you get the following error message

sudo: trust_router: command not found

Solutions to trust_router: command not found

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

In Ubuntu trust_router is provided by moonshot-trust-router package.

moonshot-trust-router is:

Moonshot allows services using GSS-API applications to gain federated access to identities provided by other organizations. Moonshot uses EAP and RADIUS over TLS for authentication and federation and SAML for enhanced attribute exchange.

This package provides the trust router and associated commands. The trust router provides authenticated key exchange so that RADIUS proxies in one organization can connect to RADIUS servers (providing identities) in another organization.

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

sudo apt-get -y install moonshot-trust-router

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

You can also use apt command to install moonshot-trust-router.

sudo apt -y install moonshot-trust-router

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

sudo aptitude install moonshot-trust-router

Summary

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