Installation guide
Fastvue Reporter can be up and running in as little as five minutes following this simple installation guide.
Fastvue Reporter can be deployed on Linux operating systems using Docker.
What is Docker?
Docker is a popular open platform that makes it easier to create, deploy, and run applications by using containers. Containers are lightweight and contain everything needed to run the application, so you do not need to rely on what is currently installed on the host.
For more information see https://docs.docker.com/get-started/overview/.
Why Fastvue Reporter uses Docker
Running Fastvue Reporter on Linux requires a range of pre-requisites and specific versions of those pre-requisites. Instead of managing them directly on the host, all you need to worry about is installing Docker, and using our pre-built Docker images to deploy a Container. This container has all the pre-requisites Fastvue Reporter requires and does not affect or conflict with anything you may already have installed on the host.
Getting started
The instructions below take you through loading and running a Fastvue Reporter Docker image as a container, and updating an existing container using a new image.
Deploying a new Fastvue Reporter container
The first step in deploying a new Fastvue Reporter container is to spin up a Linux-based host. We recommend Ubunto.
Configure your Linux Host
Make sure your Linux host meets our recommended requirements:
What are the RAM and CPU requirements?
The CPU and RAM requirements vary based on the amount of log file data you’re importing, the number of reports being generated, and the alerts you’ve configured.
Here are some rough guidelines based on the number of people in your network:
| Network Size | Recommended Server Specification |
|---|---|
| Up to 100 Users | 4 CPUs/Cores, 8 GB RAM |
| 100 – 500 Users | 4 CPUs/Cores, 12 GB RAM |
| 500 – 2000 Users | 4 CPUs/Cores, 16 GB RAM |
| 2000 – 3000 Users | 8 CPUs/Cores, 32 GB RAM |
| 3000+ Users | 16 CPUs/Cores, 64 GB RAM |
This is a rough guide only, and we recommend installing on a Virtual Machine so you can scale these resources up or down as required.
What are the data storage requirements?
Recommended disk space
Every organization is different, and it only takes a particularly chatty application to drastically change the log data generated between two similarly sized networks.
Fastvue Reporter's default data retention policy is 90 days, or 90% of the available drive space at the time of installation, whichever comes first.
When setting up a new server, as a very rough rule of thumb, allocate enough disk space to store 15 MB per user per day, and use an environment where this disk can be easily adjusted in the future.
Install the free 14-day trial and let the software run for a few days. Then head to Settings > Data Storage. Here you will see how much data has been imported per day, along with a Daily Average figure.
Go to Settings > Data Storage > Settings and try increasing the number of days from the default 90, to the number of days you want to store. You'll notice the estimate underneath the edit box changes to show you the amount of hard drive space you need to allow for based on the Daily Average seen so far.
Likewise, you can change the Size policy to see the number of days the set amount of hard drive space will accommodate.
Use SSDs if possible
Fastvue Reporter uses Elasticsearch as its database. This is I/O intensive and has considerable performance benefits when running on SSD disks. Fastvue recommends SSD disks to avoid performance-related issues, especially when monitoring medium to large networks.
We don't advise installing to a network drive due to latency issues affecting the stability of our very frequent read-write operations.
Don't install to a mapped network drive, or use a mapped network drive as Fastvue Reporter’s data path, as the assigned drive letters won't exist in the system context – only the user context. If you must use a network drive, specify a UNC path such as \servername-or-ip\fastvue. But keep in mind the performance issues mentioned above, and you'll have to configure ‘full’ permissions for the Fastvue Server’s local system account.
Install Open SSH
Ensure you can log in to your remote Linux server by installing Open SSH. For example, in Ubuntu:
sudo apt-get install openssh-server
sudo systemctl enable ssh
sudo systemctl start sshTest by logging into the system using
ssh user@server-name
# e.g.
# ssh admin@192.168.1.2Install Docker
Install Docker on your Linux distro of choice. Please refer to Docker's docs for installations instructions: https://docs.docker.com/engine/install/
⚠️ Note: Some Linux distributions such as Ubuntu provide an option to install the Docker package as part of Ubuntu install. Do NOT do this. This installs the 'snap' version of Docker which does not work for Fastvue Reporter's requirements.
Once installed, enable Docker to run at startup using the command:
sudo systemctl enable dockerInstall Docker Compose
Once Docker is installed, you now need to install Docker Compose following the instructions here: https://docs.docker.com/compose/install/
Increase the Linux host's vm.max_map_count setting
Fastvue Reporter uses Elasticsearch, which relies on memory-mapped files. On some systems, the default limit for memory mappings (vm.max_map_count) is too low, which can cause out-of-memory errors when running reports.
To avoid this, first check the current value with:
cat /proc/sys/vm/max_map_countIf the returned value is less than 262144, open /etc/sysctl.conf as root in a text editor and update the setting. To do this:
sudo nano /etc/sysctl.confAdd the following line to the end of the file:
vm.max_map_count=262144Save the file and exit the editor (^O, ^X). Then run:
sudo sysctl -pConfirm the setting has saved by re-running cat /proc/sys/vm/max_map_count
Load the Fastvue Reporter Docker image
Once you have downloaded the Fastvue Reporter Docker image from the Fastvue website (create an account or log in to access the Downloads page), copy it to the Linux host and load the image in Docker.
Note: The words
firewall-xyzand{product-name}in the commands and examples below should be replaced with your Fastvue Reporter's product/brand name.
Copy image to host
Copy the downloaded Docker image to your Linux host using scp.
scp <image-filename> user@ip:~
# e.g.
# scp fastvue-reporter-for-firewall-xyz.img admin@192.168.1.2:~Load the image
ℹ️ The following commands need to be run as root. Switch to root with
sudo suor addsudobefore all commands.
Load the Docker image using:
docker load -i {image-filename}
# e.g.
# docker load -i fastvue-reporter-for-firewall-xyz.img
# cc967c529ced: Loading layer 65.57MB/65.57MB
# ...
# 27f89d75f52e: Loading layer 76.31MB/76.31MB
# Loaded image: fastvue/reporter-for-firewall-xyz:latestList your images with docker image ls to confirm that it was imported;
docker image ls
REPOSITORY TAG IMAGE ID CREATED SIZE
fastvue/reporter-for-firewall-xyz latest 4328c7039e09 2 months ago 1.19 GBPrepare a data location on the host
Next, create a folder on your machine where Fastvue Reporter's settings and data will be stored. Firewalls can generate a lot of data, so make sure you supply a location with plenty of disk space.
We recommend using /opt/fastvue/reporter-for-{product-name}. Do not use spaces, and don't store it anywhere under /home.
Create the data location using
mkdir -p /opt/fastvue/reporter-for-firewall-xyzIf you happen to be doing this on a Mac, create a folder such as
/Users/<your user profile>/Documents/Fastvue/reporter-for-firewall-xyz
Deploy the container
There are two ways to deploy the Docker container. Using Docker Compose (recommended) or Docker Run
We recommend using the Docker Compose method above as the configuration of your container is saved in a docker-compose file making it easy to update and re-deploy your container in the future when updated images are released.
Using docker compose (recommended)
First, create a directory to contain your docker-compose file. The name of this directory will be used as the name of the Docker stack that gets created when you run docker-compose so give it a meaningful name, such as fastvue-reporter-for-firewall-xyz.
mkdir fastvue-reporter-for-firewall-xyzInside the directory you created, create a file named docker-compose.yml
cd fastvue-reporter-for-firewall-xyz
nano docker-compose.ymlWithin nano, paste in the following contents:
version: "3.3"
services:
fastvue-reporter:
container_name: "fastvue-reporter-for-firewall-xyz"
image: "fastvue/reporter-for-firewall-xyz:latest"
ports:
- "8080:80"
- "8443:443"
- "50514:50514/udp"
- "50514:50514/tcp"
volumes:
- /opt/fastvue/reporter-for-firewall-xyz:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
restart: alwaysThe image should be the name of the loaded image in Docker, not the name of the docker image file you downloaded from the Fastvue website.
Also ensure /opt/fastvue/reporter-for-firewall-xyz matches the data location you created above.
Definitions:
container_name: "fastvue-reporter-for-firewall-xyz"Aname to identify the Docker container.image: "fastvue/reporter-for-firewall-xyz:latest"The name of the loaded image in Docker. This is not the name of the Docker image file you downloaded from the Fastvue website.8080:80
Map port 8080 on the host to port 80 (HTTP) inside the container.8443:443
Map port 8443 on the host to port 443 (HTTPS) inside the container.50514:50514/udp
Map port 50514 (UDP) on the host to port 50514 inside the container. This is used for receiving syslog messages./opt/fastvue/reporter-for-firewall-xyz:/data
Map the path/opt/fastvue/reporter-for-firewall-xyzon the host to/datainside the container./etc/timezone:/etc/timezone:ro/etc/localtime:/etc/localtime:ro
Set the timezone in the Container to the same timezone as the Linux host.
Note: The following two lines map the Docker container's timezone to the Linux host's timezone. This only works on Linux hosts.
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:roIf you want to specify the timezone of the Docker container explicitly, or you are using Docker on Windows or MacOS, remove these two lines and replace them with
environment:
- TZ=Australia/PerthReplace Australia/Perth with the appropriate timezone from the TZ Database name column from this page: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
Write Out the file and press Enter, then exit nano with Ctrl-x.
You can now deploy the container using the following command.
docker-compose up -dThe parameters have the following meanings:
up
Instructs docker-compose to deploy the container stack.-d
Do not attach the active terminal to the container. This will cause the container to run in the background rather than taking over and being controlled by the terminal you ran thedocker-composecommand from. If this is not specified, you can pressCtrl-Zto detach from the container once it is running.
Using docker run
You can also deploy and run the image directly using the docker run command, specifying all the configuration options as parameters.
Deploy by mapping the Containers timezone to the host's timezone:
docker run -d \
-p 8080:80 \
-p 8443:443 \
-p 50514:50514/udp \
-v /opt/fastvue/reporter-for-firewall-xyz:/data \
-v /etc/timezone:/etc/timezone:ro \
-v /etc/localtime:/etc/localtime:ro \
--restart always \
fastvue/reporter-for-firewall-xyz:latestOr deploy by using the TZ environment variable to set the timezone explicitly:
docker run -d \
-p 8080:80 \
-p 8443:443 \
-p 50514:50514/udp \
-v /opt/fastvue/reporter-for-firewall-xyz:/data \
-e TZ=Australia/Perth \
--restart always \
fastvue/reporter-for-firewall-xyz:latestDefinitions:
--name
A name to identify the Docker container.-d
Do not attach the active terminal to the container. This will cause the container to run in the background rather than taking over and being controlled by the terminal you ran thedocker runcommand from.-p 8080:80
Map port 8080 on the host to port 80 (HTTP) inside the container.-p 8443:443
Map port 8443 on the host to port 443 (HTTPS) inside the container.-p 50514:50514/udp
Map port 50514 (UDP) on the host to port 50514 inside the container. This is used for receiving syslog messages.-v /opt/fastvue/reporter-for-firewall-xyz:/data
Map the path/opt/fastvue/reporter-for-firewall-xyzon the host to/datainside the container.-e TZ=Australia/Perth
Set the environment variableTZto the provided value inside the container. This will set the timezone for the container. The value specified must be one of the TZ database names at https://en.wikipedia.org/wiki/List_of_tz_database_time_zones-v /etc/timezone:/etc/timezone:ro-v /etc/localtime:/etc/localtime:ro
Set the timezone in the Container to the same timezone as the Linux host.--restart always
The container will automatically start on host boot, or if the container fails.fastvue/reporter-for-firewall-xyz:latest
The name of the loaded image in Docker. This is not the name of the Docker image file you downloaded from the Fastvue website.
For more docker run parameters and definitions, see https://docs.docker.com/engine/reference/commandline/run/
Check your container is running
You can check your container is running with docker ps
docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
75b00d26524b fastvue/reporter-for-firewall-xyz:latest "/bin/bash /opt/fast…" 2 minutes ago Up 2 minutes 514/tcp, 514/udp, 0.0.0.0:50514->50514/udp, :::50514->50514/udp, 0.0.0.0:8080->80/tcp, :::8080->80/tcp, 0.0.0.0:8443->443/tcp, :::8443->443/tcp fastvue-reporter-for-firewall-xyzReset Linux Kernel Connection Tracking
As Docker only creates the iptables rules for forwarding and masquerading incoming traffic to the container once the container is deployed, any existing connection state for the incoming syslog traffic will still be assuming the old rules, which means that your container will likely see the syslog traffic arriving with the source address set to the Docker network's gateway address.
To ensure the container sees syslog traffic arriving from your firewall instead of the Docker network's gateway address, you must reset the Linux kernel's connection tracking.
First install the conntrack tool on your host using your host distro's package manager. For Ubuntu, you can use:
apt install conntrackNow reset the Linux kernel's connection tracking using:
conntrack -FVerify Fastvue Reporter is running
Using a web browser, connect to your host on port 8080 (e.g. http://192.168.1.2:8080 ) and verify that Fastvue Reporter is running.
You can also configure Auth and SSL for the web interface by following the instructions in Apache Config. Changing this configuration does not require redeployment of the container, only a restart.
Configure Authentication and SSL in Apache (optional)
Reporter's Docker image allows for external config files to be included in the container's Apache config to add Auth and SSL configuration that persists between container runs.
These configuration files must exist under the /config/apache path in the mapped data volume.
Inside the container, the mapped data volume exists at /data so any paths that the provided config files refer to must use this as the base directory.
For example, if you store Fastvue Reporter's data at /var/fastvue/reporter-for-firewall-xyz on your host, then on the host the auth config file would be at /var/fastvue/reporter-for-firewall-xyz/config/apache/auth.conf, and the authpasswd file would exist at /var/fastvue/reporter-for-firewall-xyz/config/apache/authpasswd, but inside the container these would exist at /data/config/apache/auth.conf and /data/config/apache/authpasswd.
Configure authentication
Create a Config file in /(basepath)/config/apache/auth.conf
Where (basepath) is the Fastvue Reporter's data path on the host.
Example for Basic auth mode:
AuthType Basic
AuthName "Fastvue Reporter"
AuthUserFile /data/config/apache/authpasswd
Require valid-userThe authpasswd file contains the list of users and their hashed passwords when using Basic auth mode. This file can be created on the host and users added to it using this command.
htpasswd -c (basepath)/config/apache/authpasswd adminWhere (basepath) must be the data location on the host. The -c parameter creates the file, and must be passed only for the first user being added. The final parameter, in the example set to admin, is the username you want to create a password for. The command will ask for a password for the user.
Example for auth using LDAP integration.
AuthType Basic
AuthName "Fastvue Reporter"
AuthBasicProvider ldap
AuthLDAPURL "ldap://dc-server.domain.local:389/DC=domain,DC=local?sAMAccountName?sub?(objectClass=*)"
AuthLDAPBindDN "administrator@domain.local"
AuthLDAPBindPassword "(password)"
Require valid-userThe LDAP URL would be specific to your system configuration, but the ?sAMAccountName?sub?(objectClass=*) part is required. The AuthLDAPBindBN also must either be the FQDN of a user authorised to make auth queries, or the username in UPN syntax (user@domain).
Private Report Sharing
Allowing anonymous or alternate auth access to /_ and /p for private report sharing is supported through a secondary config file named authshared.conf. The directives in this file will only apply to the /_ and /p directories.
Example authshared.conf allowing full anonymous access to /_ and /p regardless of the site root's auth configuration;
Require all grantedIf authshared.conf is not provided, the /_ and /p directories will share the same auth config as the site root, and if the auth.conf file is not provided, the site root will default to Require all granted allowing anybody to access the site.
Configure SSL
Config file at /config/apache/ssl.conf
SSLEngine On
SSLCertificateFile /data/config/apache/sslcert.pem
SSLCertificateKeyFile /data/config/apache/sslprivate.keyThe certificate file sslcert.pem and the key file sslprivate.key can be self-signed or provided separately.
To create a self-signed certificate, the following command can be used;
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout (basepath)/config/apache/sslprivate.key -out (basepath)/config/apache/sslcert.pemWhere (basepath) must be the data location on the host. This command will ask for details for the certificate which the user must enter.
Updating an existing container
When Fastvue releases new updates, you need to update your existing container and image.
Stop and remove the existing container
To do this, first find your container's ID or Name using docker ps and then stop and remove it, using docker stop <container-name> and docker rm <container-name>
docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
480948a8931a 67cc5f1b1d11 "/bin/bash/opt/fastvue" 9 days ago Up 4 seconds 514/tcp, 514/udp, 0.0.0.0:50514->50514/udp, 0.0.0.0:8080->80/tcp, 0.0.0.0:8443->443/tcp fastvue-reporter-for-firewall-xyz
docker stop fastvue-reporter-for-firewall-xyz
fastvue-reporter-for-firewall-xyz
docker rm fastvue-reporter-for-firewall-xyz
fastvue-reporter-for-firewall-xyzStop and remove the existing image
Once the container has been removed, find the ID of the existing loaded Docker image using docker image ls, then remove it, using docker image rm <image-id>
docker image ls
REPOSITORY TAG IMAGE ID CREATED SIZE
fastvue/reporter-for-firewall-xyz latest 27d03835094b 8 days ago 1.25GB
docker image rm 27d03835094b⚠️ If you don't remove your existing image before the next step, docker will rename your old/existing image to an empty string. This can then be removed with
docker image rm <id>
Load and deploy the new image
Once the Docker container and image has been removed, replace your image file with the new one downloaded from the Fastvue website, then follow the steps above load the image and deploy your container.
Configure Palo Alto Networks Syslog Settings
Now that Fastvue Reporter for Palo Alto Networks has been installed, you need to configure your Palo Alto Networks firewall(s) to send syslog data to the Fastvue server.
This can be done directly on each Palo Alto Networks firewall, or using Panorama.
Individual Palo Alto Networks firewalls
1. Configure a Syslog Server Profile
- On your Palo Alto firewall, select Device | Server Profiles | Syslog.
- Click Add and enter a Name for the syslog profile such as Fastvue
- If the firewall has more than one virtual system (vsys), select the Location (vsys or Shared) where this profile is available.
- Click Add and enter the Fastvue server’s details:
- Name: Enter a unique name for the server profile such as ‘Fastvue Server’
- Syslog Server: IP address or fully qualified domain name (FQDN) of the Fastvue server.
- Transport: Select TCP (UDP also works if required. SSL is not supported at this stage).
- Port: The port number on which to send syslog messages (default is port 514). You must use the same port number on the Fastvue server when adding your source (see below). If 514 is already used by another application on the Fastvue server, choose a different port such as 50514.
- Format: Select BSD (the default).
- Facility: Select LOG_USER (the default)
- Click OK to save the server profile.

2. Configure a Log Forwarding Profile
- Select Objects | Log Forwarding, click Add, and enter a Name to identify the profile.
If you want the firewall to automatically assign the profile to new security rules and zones, enter default. If you don’t want a default profile, or you want to override an existing default profile, enter a Name that will help you identify the profile when assigning it to security rules and zones, such as ‘Fastvue Forwarding Profile’.
- Click Add to add a Log Forwarding Profile Match List
- Enter URL Logs as the Name, select url as the Log Type and ensure All Logs is selected as the Filter.
- Check the Syslog checkbox and click Add in the Syslog section. Add the Fastvue syslog server you defined earlier. Click OK.
- Repeat steps 2 -> 4 for each log type. The main log types Fastvue requires are Traffic, Threat, URL and WildFire.
- Click OK to save the settings.

3. Use the log forwarding profile in security rules
To trigger log generation and forwarding, your Log Forwarding Profile needs to be assigned to all the security policies you want to log/monitor.
- Select Policies | Security, edit a policy rule such as the rule that allows outbound internet traffic and select the Actions tab
- In the Log Settings section, check the Log at Session End checkbox.
- In the Log Forwarding drop down, select the Log Forwarding Profile you created above and click OK.

Panorama
1. Configure Log Forwarding to Panorama for all firewalls
First configure each Palo Alto firewall to forwarding log data to Panorama. The logs Fastvue Reporter needs are Threat, Traffic, URL and Wildfire.
Please follow the Palo Alto Networks documentation on configuring Log Forwarding to Panorama here: <a href="https://docs.paloaltonetworks.com/panorama/10-1/panorama-admin/manage-log-collection/configure-log-forwarding-to-panorama.html" target="_blank" rel="noopener noreferrer">Configure Log Forwarding to Panorama</a>
2. Configure Log Forwarding from Panorama to Fastvue Reporter
Once Panorama is receiving syslog data from all your Palo Alto firewalls, you can forward that syslog data from Panorama to the Fastvue Reporter server.
Please follow Palo Alto Networks documentation on configuring Log Forwarding from Panorama to external destinations here: <a href="https://docs.paloaltonetworks.com/panorama/10-1/panorama-admin/manage-log-collection/configure-syslog-forwarding-to-external-destinations.html" target="_blank" rel="noopener noreferrer">Configure Log Forwarding from Panorama to External Destinations</a>
Set Allowed URL Filtering Categories to Alert
To ensure traffic to all URL Categories gets logged:
- Go to Objects | URL Filtering and either edit your existing URL Filtering Profile or configure a new one.
- Ensure all Allowed categories are set to Alert. The Alert action is the same as Allow, but traffic is also logged. More information on Palo Alto Networks' URL Filtering Profile Actions.
Disable “Log Container Page Only” and Enable HTTP Header Logging
We recommend disabling the Log Container Page Only option in order to log all URLs. Fastvue Reporter's Site Clean technology will group URLs into the container page for simplified reporting without losing any bandwidth details, images, or granularity.
HTTP Header logging enables the logging of the Referer field which is valuable information for Fastvue’s Site Clean technology.
To do this:
- Go to Objects | Security Profiles | Settings
- Check the User-Agent, Referer, and X-Forwaded-For checkboxes under HTTP Header.
- Uncheck the Log Container Page Only checkbox.
Commit the changes
Don’t forget to commit your settings changes! Your Palo Alto Networks firewall should now be sending the Fastvue Reporter server the URL, Threat, Traffic and Wildfire log data.
Add a Source
Add your firewall as a Source in Fastvue Reporter. This can be done on the start page that is presented after installation, or by going to Settings | Sources and clicking Add Source.
If your firewall is sending syslog data on port 514, click into the dropdown and wait a few seconds. The dropdown will populate with the name and/or IP of the device(s) sending syslog traffic to the Fastvue Server. Simply select your firewall from the list and click Add Source.
If your firewall is sending syslog data on a different port (such as 50514 if using the Linux / Docker version), Fastvue Reporter will not automatically display your firewall in the dropdown list. In this case, manually enter your firewall's IP and your selected syslog port into the options provided, then click Add Source.
Note: If entering your firewall and port manually, make sure the IP is the one your Fastvue Server is receiving syslog data from. This could be the IP of the internal LAN interface on your firewall, or if you have intermediate devices routing syslog traffic, it could be the interface IP of the last hop.
If you're unsure, you can a 'dummy' source with an invalid name (such as 'dummy') but specify the custom syslog port your firewall is sending syslog data on. Fastvue Reporter will then start listening on the port specified. You can then click Add Source again, and the dropdown list should populate with any device sending syslog data on your custom syslog port.
It may take 10-20 seconds before the first records are imported. You can watch the records and dates imported in Settings | Sources. Once records start importing, you can go to the Dashboard tab to see your network traffic.
Enjoy
Now you can try out the many features of Fastvue Reporter!