How To Install rtpproxy on Fedora 34

rtpproxy is A symmetric RTP proxy

Introduction

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

What is rtpproxy

This is symmetric RTP proxy designed to be used in conjunction with the SIP Express Router (SER) or any other SIP proxy capable of rewriting SDP bodies in SIP messages that it processes.

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

Install rtpproxy 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 rtpproxy using dnf by running the following command:

sudo dnf -y install rtpproxy

Install rtpproxy 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 rtpproxy using yum by running the following command:

sudo yum -y install rtpproxy

How To Uninstall rtpproxy on Fedora 34

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

sudo dnf remove rtpproxy

rtpproxy Package Contents on Fedora 34

/etc/sysconfig/rtpproxy
/usr/bin/makeann
/usr/bin/rtpproxy
/usr/lib/.build-id
/usr/lib/.build-id/85
/usr/lib/.build-id/85/2600be0e532981e38c9ec4695e4f8abb90eb3e
/usr/lib/.build-id/d4
/usr/lib/.build-id/d4/6b7644861fd9f4ec3c2c0a11cc3444aec4bca1
/usr/lib/.build-id/d9
/usr/lib/.build-id/d9/a92d3e17cbccdbd13f3af999e56e588b8515ea
/usr/lib/systemd/system/rtpproxy.service
/usr/lib/systemd/system/rtpproxy.socket
/usr/lib/tmpfiles.d/rtpproxy.conf
/usr/share/doc/rtpproxy
/usr/share/doc/rtpproxy/AUTHORS
/usr/share/doc/rtpproxy/README.md
/usr/share/doc/rtpproxy/README.remote
/usr/share/licenses/rtpproxy
/usr/share/licenses/rtpproxy/LICENSE
/usr/share/man/man8/rtpproxy.8.gz
/var/lib/rtpproxy
/var/run/rtpproxy

References

Summary

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