How To Install openslp on Fedora 34

openslp is Open implementation of Service Location Protocol V2 Open implementation of Service Location Protocol V2

Introduction

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

What is openslp

Service Location Protocol is an IETF standards track protocol that provides a framework to allow networking applications to discover the existence, location, and configuration of networked services in enterprise networks. OpenSLP is an open source implementation of the SLPv2 protocol as defined by RFC 2608 and RFC 2614. openslp 2.0.0 26.fc34 x86_64 74 k openslp-2.0.0-26.fc34.src.rpm fedora Open implementation of Service Location Protocol V2 http BSD Service Location Protocol is an IETF standards track protocol that provides a framework to allow networking applications to discover the existence, location, and configuration of networked services in enterprise networks. OpenSLP is an open source implementation of the SLPv2 protocol as defined by RFC 2608 and RFC 2614.

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

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

sudo dnf -y install openslp

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

sudo yum -y install openslp

How To Uninstall openslp on Fedora 34

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

sudo dnf remove openslp

openslp Package Contents on Fedora 34

/etc/slp.conf
/usr/bin/slptool
/usr/lib/.build-id
/usr/lib/.build-id/2f
/usr/lib/.build-id/2f/4e2ddfc36b49f259d48bdaf2425343d3d762ad
/usr/lib/.build-id/46
/usr/lib/.build-id/46/c83f6cdb1964220098d31a854adb7eb2eda1af
/usr/lib64/libslp.so.1
/usr/lib64/libslp.so.1.0.0
/usr/share/doc/openslp
/usr/share/doc/openslp/AUTHORS
/usr/share/doc/openslp/COPYING
/usr/share/doc/openslp/FAQ
/usr/share/doc/openslp/NEWS
/usr/share/doc/openslp/README
/usr/share/doc/openslp/THANKS
/usr/share/man/man1/slptool.1.gz
/etc/slp.conf
/usr/bin/slptool
/usr/lib/.build-id
/usr/lib/.build-id/47
/usr/lib/.build-id/47/6768dd3a531b47aedc5c0f7131faea0e49ed79
/usr/lib/.build-id/54
/usr/lib/.build-id/54/07ffd243dabbfa12967c435b244a0383735d5f
/usr/lib/libslp.so.1
/usr/lib/libslp.so.1.0.0
/usr/share/doc/openslp
/usr/share/doc/openslp/AUTHORS
/usr/share/doc/openslp/COPYING
/usr/share/doc/openslp/FAQ
/usr/share/doc/openslp/NEWS
/usr/share/doc/openslp/README
/usr/share/doc/openslp/THANKS
/usr/share/man/man1/slptool.1.gz

References

Summary

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