How To Install radsecproxy on Fedora 34

radsecproxy is Generic RADIUS proxy with RadSec support

Introduction

In this tutorial we learn how to install radsecproxy on Fedora 34.

What is radsecproxy

radsecproxy is a generic RADIUS proxy that in addition to usual RADIUS UDP transport, also supports TLS (RadSec), as well as RADIUS over TCP and DTLS. The aim is for the proxy to have sufficient features to be flexible, while at the same time to be small, efficient and easy to configure.

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

Install radsecproxy on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo dnf -y install radsecproxy

Install radsecproxy on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo yum -y install radsecproxy

How To Uninstall radsecproxy on Fedora 34

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

sudo dnf remove radsecproxy

radsecproxy Package Contents on Fedora 34

/etc/logrotate.d/radsecproxy
/etc/pki/radsecproxy
/etc/radsecproxy.conf
/run/radsecproxy
/usr/bin/radsecproxy-conf
/usr/bin/radsecproxy-hash
/usr/lib/.build-id
/usr/lib/.build-id/0a
/usr/lib/.build-id/0a/ed0646c4cc2cd5cb571e7a3e18519b18d6e49c
/usr/lib/.build-id/2f
/usr/lib/.build-id/2f/fd73abd6acb175323cbe33011829a57b805b4a
/usr/lib/.build-id/39
/usr/lib/.build-id/39/2aed8e3b3a76d7834b5d294c9283534c1d758a
/usr/lib/systemd/system/radsecproxy.service
/usr/lib/tmpfiles.d/radsecproxy.conf
/usr/sbin/radsecproxy
/usr/share/doc/radsecproxy
/usr/share/doc/radsecproxy/AUTHORS
/usr/share/doc/radsecproxy/ChangeLog
/usr/share/doc/radsecproxy/THANKS
/usr/share/doc/radsecproxy/radsecproxy.conf-example
/usr/share/doc/radsecproxy/tools
/usr/share/doc/radsecproxy/tools/README
/usr/share/doc/radsecproxy/tools/naptr-eduroam.sh
/usr/share/doc/radsecproxy/tools/radsec-dynsrv.sh
/usr/share/licenses/radsecproxy
/usr/share/licenses/radsecproxy/LICENSE
/usr/share/man/man5/radsecproxy.conf.5.gz
/usr/share/man/man8/radsecproxy-hash.8.gz
/usr/share/man/man8/radsecproxy.8.gz
/var/lib/radsecproxy
/var/log/radsecproxy
/etc/logrotate.d/radsecproxy
/etc/pki/radsecproxy
/etc/radsecproxy.conf
/run/radsecproxy
/usr/bin/radsecproxy-conf
/usr/bin/radsecproxy-hash
/usr/lib/.build-id
/usr/lib/.build-id/37
/usr/lib/.build-id/37/e1a6b1ae8ee96f0bbc1173fbeb02360a12b536
/usr/lib/.build-id/78
/usr/lib/.build-id/78/0346a0f45879ef612add02253b6160163985eb
/usr/lib/.build-id/a7
/usr/lib/.build-id/a7/cb3dafea083c050edbbfad762c67bea4c7bb1e
/usr/lib/systemd/system/radsecproxy.service
/usr/lib/tmpfiles.d/radsecproxy.conf
/usr/sbin/radsecproxy
/usr/share/doc/radsecproxy
/usr/share/doc/radsecproxy/AUTHORS
/usr/share/doc/radsecproxy/ChangeLog
/usr/share/doc/radsecproxy/THANKS
/usr/share/doc/radsecproxy/radsecproxy.conf-example
/usr/share/doc/radsecproxy/tools
/usr/share/doc/radsecproxy/tools/README
/usr/share/doc/radsecproxy/tools/naptr-eduroam.sh
/usr/share/doc/radsecproxy/tools/radsec-dynsrv.sh
/usr/share/licenses/radsecproxy
/usr/share/licenses/radsecproxy/LICENSE
/usr/share/man/man1/radsecproxy-hash.1.gz
/usr/share/man/man1/radsecproxy.1.gz
/usr/share/man/man5/radsecproxy.conf.5.gz
/var/lib/radsecproxy
/var/log/radsecproxy

References

Summary

In this tutorial we learn how to install radsecproxy on Fedora 34 using yum and dnf.