How To Install ipset on Fedora 36
Introduction
In this tutorial we learn how to install ipset
on Fedora 36.
What is ipset
IP sets are a framework inside the Linux kernel since version 2.4.x, which can be administered by the ipset utility. Depending on the type, currently an IP set may store IP addresses, (TCP/UDP) port numbers or IP addresses with MAC addresses in a way, which ensures lightning speed when matching an entry against a set. If you want to - store multiple IP addresses or port numbers and match against the collection by iptables at one swoop; - dynamically update iptables rules against IP addresses or ports without performance penalty; - express complex IP address and ports based rulesets with one single iptables rule and benefit from the speed of IP sets then ipset may be the proper tool for you.
We can use yum
or dnf
to install ipset
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install ipset.
Install ipset on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install ipset
using dnf
by running the following command:
sudo dnf -y install ipset
Install ipset on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install ipset
using yum
by running the following command:
sudo yum -y install ipset
How To Uninstall ipset on Fedora 36
To uninstall only the ipset
package we can use the following command:
sudo dnf remove ipset
ipset Package Contents on Fedora 36
/usr/lib/.build-id
/usr/lib/.build-id/60
/usr/lib/.build-id/60/41ace66b16d40ebbf94bddfec9b42fab5eb030
/usr/sbin/ipset
/usr/sbin/ipset-translate
/usr/share/doc/ipset
/usr/share/doc/ipset/ChangeLog
/usr/share/licenses/ipset
/usr/share/licenses/ipset/COPYING
/usr/share/man/man8/ipset-translate.8.gz
/usr/share/man/man8/ipset.8.gz
References
Summary
In this tutorial we learn how to install ipset
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).