bgpq3 command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
bgpq3: command not found
or when using sudo you get the following error message
sudo: bgpq3: command not found
Solutions to bgpq3: command not found
How To Fix bgpq3: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu bgpq3 is provided by bgpq3 package.
bgpq3 is:
bgpq3 eases BGP filter maintenance by automatically generating prefix lists, (extended) access lists, policy statement terms and AS-path lists using RADB data. It features IPv6 prefix-/access-list support, aggregation of generated filters and output compatible with Cisco, Juniper and BIRD.
To fix this problem, we can install more using the command below.
sudo apt-get -y install bgpq3
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install bgpq3.
sudo apt -y install bgpq3
Or if you have aptitude installed you can use the following command.
sudo aptitude install bgpq3
Summary
In this tutorial we learn how to fix bgpq3 command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.