Created
February 11, 2020 12:12
-
-
Save LinuxDevOpsGirl/9ebc10dca1ca9ebe52f633355e517b89 to your computer and use it in GitHub Desktop.
ntopng on Ubuntu 18.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# This script will install ntopng on Ubuntu | |
sudo apt update -y | |
sudo apt upgrade -y | |
sudo apt install ntopng | |
sudo systemctl restart ntopng | |
sudo ntopng -h | |
sudo ufw enable | |
sudo ufw allow 3000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment