Trisul Network Analytics 6.5 includes a free 3-day rolling window license

Choose a Linux platform below. Default free license included

On Ubuntu 18.04 (bionic)

Recommended method : apt-get install trisul-full

Just copy paste the steps below and you will be looking at a login screen in under 1 minute.


# login as root
sudo -i  
curl -o -  https://trisul.org/pubkey.gpg | apt-key add -
add-apt-repository https://trisul.org/repos/apt/debian 
apt update
apt install trisul-full
how to upgrade | how to install with a proxy server

If you already have Trisul 6.5 installed and you want to upgrade to the latest version; use apt-get remove --auto-remove trisul-full and then apt-get install trisul-full , rather than apt-get upgrade trisul-full

Proxy server

If you are installing using a proxy server , use the following steps. Substitute your proxy server’s IP in the command


# login as root
sudo -i  
export http_proxy=http://192.168.2.11:3128
export https_proxy=http://192.168.2.11:3128

#.. then continue the steps above

Our public key used to sign packages is at keyserver.ubuntu.com

Alternate method : Download and install DEB packages manually

Here are the individual DEB packages.

  1. install each DEB using dpkg -i
  2. optionally verify them using the instructions How to verify Trisul DEBs
Core packages

Wait.. fetching latest packages

On Ubuntu 16.04 (xenial)

Recommended method : apt-get install trisul-full

Just copy paste the steps below and you will be looking at a login screen in under 1 minute.


sudo add-apt-repository http://trisul.org/repos/apt/debian 
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A6CC1B18
sudo apt-get update
sudo apt-get install trisul-full
show upgrade instructions

If you already have Trisul installed and you want to upgrade to the latest version; use apt-get remove --auto-remove trisul-full and then apt-get install trisul-full , rather than apt-get upgrade trisul-full

Our public key used to sign packages is at keyserver.ubuntu.com

Alternate method : Download and install DEB packages manually

Here are the individual DEB packages.

  1. install each DEB using dpkg -i
  2. optionally verify them using the instructions How to verify Trisul DEBs
Core packages

Wait.. fetching latest packages

On RHEL 7.x and CentOS 7.x (Use CentOS 7.3+)

Recommended Method : Install using yum

Just add our repository and execute yum groupinstall "Trisul Full" to install in under 1 minute.



# adding trisul YUM repository
cd /etc/yum.repos.d
curl -LO https://trisul.org/download/trisulfull.repo

# check if Trisul Full is available now
yum group list

# install
yum groupinstall "Trisul Full"

# open port 3000/3003 for web access 
firewall-cmd --zone=public --add-port=3000/tcp
firewall-cmd --zone=public --add-port=3003/tcp

Upgrading show instructions

If you already have Trisul installed and you want to upgrade to the latest version; use yum group remove "Trisul Full" followed by yum groupinstall "Trisul Full" or you can just update a single package such as yum install trisul-probe

Our public GPG key

Alternate method : Download and install RPM packages manually

Here are the individual RPM packages.

  1. install each RPM using rpm -Uvh
  2. optionally verify them using the instructions How to verify Trisul RPMs
Core packages
Wait.. fetching latest packages

Docker image

First you have to install Docker on your Linux distro. The free Docker CE will suffice.

Run the Trisul docker image trisulnsm/trisul6

The following command will run Trisul Docker and store all the data and config in /opt/trisuldata



# run trisul on port enp5s0 
sudo docker run  --net=host -v /opt/trisuldata:/trisulroot -d trisulnsm/trisul6 --interface enp5s0 

# then open http://ip-address:3000 , you're live ! 

Upgrading Trisul Docker show instructions

Just do a docker pull. Like so


docker pull trisulnsm/trisul6
docker stop trisul1a
docker rm trisul1s
docker run .. (same as above)

For more info see

  1. Github trisulnsm/docker.
  2. Docker Hub trisulnsm/trisul6