-
Notifications
You must be signed in to change notification settings - Fork 57
installation_notes
This page describes downloading, installing, setting up, and using the open source elements of the HIRS framework.
The HIRS Attestation Certificate Authority (ACA) currently supports package based installation on
- Redhat OS versions 8 (latest) and 9
- Rocky OS versions 8 (latest) and 9
- Ubuntu 22 LTS with limited support
The HIRS_Provisioner.NET currently supports package based installation on
- Redhat OS versions 8 (latest) and 9
- Rocky OS versions 8 (latest) and 9
- Ubuntu 22 LTS with limited support
- Windows 10 (latest)
- Windows 11
Confirm that the target environments for both the ACA and the Provisioner (which may be the same) meet the below requirements:
-
The OS must be installed and configured for networking prior to installation. This should include:
- An administrative account that will be used for installing HIRS.
- A Fully Qualified Domain Name (FQDN) be assigned to the server running the ACA and
- A DNS system will resolve the name to an address. The certificate verification will not be able to complete successfully if the FQDN is not resolvable by DNS.
-
The hardware must meet the HIRS minimum requirements.
- HIRS ACA may be a virtual machine or physical device
- A Supported OS (see list above)
- 50GB HD space
- 6GB RAM
- The Client device must have a TPM 2.0. The TPM must be enabled in the BIOS/UEFI setup (typically enabled by default). The BIOS/UEFI setup application is specific to the platform hosting the TPM. Refer to the server/desktop user manuals for instruction on how to enable/clear the TPM.
- HIRS ACA may be a virtual machine or physical device
-
The Provisioner will need connectivity to the ACA. Check that any firewalls between the ACA server and Provisioner have port 8443 enabled.
-
Set up an OS repository for the device. The HIRS installation package will attempt to install its dependencies for the system local software repository if they are not currently installed. It is highly suggested that a repository be set up prior to avoid dependency issues.
There are several options for installing and running a HIRS ACA:
There are several prerequisites required to run the ACA (Note: this section is not required when running an ACA Docker image). To install the prerequisites: On RHEL based systems:
sudo dnf install java-1.17.0 wget tpm2-tools mariadb-server
On Debian based systems
sudo apt-get install openjdk-17-jdk git tpm2-tools mariadb-server
An ACA Docker image is now automatically created for each release. This is the preferred way to run/test an ACA. See the packages page for a complete list of published ACA Docker images.
To download and run the ACA image (can take several minutes):
docker run --name=aca -p 8443:8443 ghcr.io/nsacyber/hirs/aca:latest
To check the container is running:
docker ps
To pull updated ACA images:
docker pull ghcr.io/nsacyber/hirs/aca:latest
Use the following URL for viewing the ACA Portal:
https:localhost:8443/
To install the ACA on Redhat or Rocky Linux, download the latest rpm from the release page, then run the command
sudo dnf install HIRS_AttestationCA*.rpm
To install the ACA on Ubuntu Linux, download the latest rpm from the release page, then run the command
sudo apt-get install ./hirs-attestationca*.deb
Follow the instructions from the HIRS build guide to build the HIRS ACA package. When built, the ACA install packages can be found in HIRS_AttestationPortal\build\distributions.
Navigate to the HIRS project folder. Run the following command:
sudo dnf install HIRS_AttestationPortal\build\distributions\HIRS_AttestationCA*.rpm
To install the HIRS_Provisioner.NET on Redhat or Rocky Linux, download the latest rpm package from the release page, then open a terminal and run the command
sudo dnf install HIRS_Provisioner.NET.*.rpm
To install the HIRS_Provisioner.NET on Ubuntu Linux, download the latest deb package from the release page, then open a terminal and run the command
sudo apt-get install ./HIRS_Provisioner.NET.*.deb
To install the HIRS_Provisioner.NET on Windows, download the latest msi package from the release page, then open a Windows PowerShell as an administrator and run the command
msiexec /package HIRS_Provisioner.NET.*.msi /quiet
Follow the instructions for setting up the HIRS_Provisioner.NET in the HIRS_Provisioner.NET Readme.
In your browser, navigate to the ACA Portal URL:
https://<ACAserveraddress>:8443/HIRS_AttestationCAPortal
On installation, the ACA creates an SSL certificate chain. This may produce a warning in your browser. Once you acknowledge the warning, and perhaps configure an exception, the following page should appear: Note that there may be delay after installing the ACA RPM as it starts up for the first time. The ACA portal will shortly be available via the browser.
On Linux: To kick off a provision on the client, open a terminal and run the command
sudo tpm_aca_provision
On Windows: Open a PowerShell terminal as an administrator and enter the command
tpm_aca_provision
Refresh the ACA and view the validation reports page:
https://<ACAserveraddress>:8443/HIRS_AttestationCAPortal/portal/validation-reports
The status on the page will reflect the ACA policy settings. Please refer to the Getting Started Guide for further details on using the ACA and the ACA policy settings.