anytun command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
anytun: command not found
or when using sudo you get the following error message
sudo: anytun: command not found
Solutions to anytun: command not found
How To Fix anytun: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu anytun is provided by anytun package.
anytun is:
Anytun is an implementation of the secure anycast tunneling protocol. It uses an easy openvpn style interface and makes it possible to build redundant VPN clusters with load balancing between servers. VPN servers share a single IP address. Adding and removing VPN Servers is done by the routing protocol, so no client changes have to be made when additional VPN servers are added or removed. It is possible to realise global load balancing based on shortest BGP routes by simply announcing the address space of the tunnel servers at multiple locations.
Currently ethernet, ipv4 and ipv6 tunnels are supported by the implementation. However the protocol allows one to tunnel every ETHERTYPE protocol.
To fix this problem, we can install more using the command below.
sudo apt-get -y install anytun
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install anytun.
sudo apt -y install anytun
Or if you have aptitude installed you can use the following command.
sudo aptitude install anytun
Summary
In this tutorial we learn how to fix anytun command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.