How To Install tncfhh on CentOS 7

In this tutorial we learn how to install tncfhh on CentOS 7. tncfhh is An open source implementation of the Trusted Network Connect (TNC)

Introduction

In this tutorial we learn how to install tncfhh on CentOS 7.

What is tncfhh

The TNC@FHH project is an open source implementation of the Trusted Network Connect (TNC) framework, which is specified by the Trusted Computing Group (TCG). TNC@FHH allows you to provision access to a network based upon factors like the user credentials and the requesting endpoint’s integrity state. The following TNC components and their respective interfaces are implemented by TNC@FHH (IF-TNCCS 1.1), NAA (IF-T EAP 1.1). The TNC@FHH project is an open source implementation of the Trusted Network Connect (TNC) framework, which is specified by the Trusted Computing Group (TCG). TNC@FHH allows you to provision access to a network based upon factors like the user credentials and the requesting endpoint’s integrity state. The following TNC components and their respective interfaces are implemented by TNC@FHH (IF-TNCCS 1.1), NAA (IF-T EAP 1.1).

We can use yum or dnf to install tncfhh on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install tncfhh.

Install tncfhh on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install tncfhh using yum by running the following command:

sudo yum -y install tncfhh

Install tncfhh on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install tncfhh using dnf by running the following command:

sudo dnf -y install tncfhh

How To Uninstall tncfhh on CentOS 7

To uninstall only the tncfhh package we can use the following command:

sudo dnf remove tncfhh

References

Summary

In this tutorial we learn how to install tncfhh on CentOS 7 using yum and dnf.