braa command not found

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

Introduction

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

braa: command not found

or when using sudo you get the following error message

sudo: braa: command not found

Solutions to braa: command not found

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

In Ubuntu braa is provided by braa package.

braa is:

Braa is a mass snmp scanner. The intended usage of such a tool is of course making SNMP queries - but unlike snmpget or snmpwalk from net-snmp, it is able to query dozens or hundreds of hosts simultaneously, and in a single process. Thus, it consumes very few system resources and does the scanning VERY fast.

Braa implements its OWN snmp stack, so it does NOT need any SNMP libraries like net-snmp. The implementation is very dirty, supports only several data types, and in any case cannot be stated ‘standard-conforming’! It was designed to be fast, and it is fast. For this reason (well, and also because of author laziness ;), there is no ASN.1 parser in braa - the user HAVE to know the numerical values of OID’s (for instance .1.3.6.1.2.1.1.5.0 instead of system.sysName.0).

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

sudo apt-get -y install braa

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

You can also use apt command to install braa.

sudo apt -y install braa

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

sudo aptitude install braa

Summary

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