How to Install and Uninstall perl-Net-CIDR-Set Package on openSuSE Tumbleweed

Last updated: May 19,2024

1. Install "perl-Net-CIDR-Set" package

Please follow the guidelines below to install perl-Net-CIDR-Set on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Net-CIDR-Set

2. Uninstall "perl-Net-CIDR-Set" package

In this section, we are going to explain the necessary steps to uninstall perl-Net-CIDR-Set on openSuSE Tumbleweed:

$ sudo zypper remove perl-Net-CIDR-Set

3. Information about the perl-Net-CIDR-Set package on openSuSE Tumbleweed

Information for package perl-Net-CIDR-Set:
------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Net-CIDR-Set
Version : 0.13-1.29
Arch : noarch
Vendor : openSUSE
Installed Size : 35.5 KiB
Installed : No
Status : not installed
Source package : perl-Net-CIDR-Set-0.13-1.29.src
Upstream URL : http://search.cpan.org/dist/Net-CIDR-Set/
Summary : Manipulate sets of IP addresses
Description :
'Net::CIDR::Set' represents sets of IP addresses and allows standard set
operations (union, intersection, membership test etc) to be performed on
them.
In spite of the name it can work with sets consisting of arbitrary ranges
of IP addresses - not just CIDR blocks.
Both IPv4 and IPv6 addresses are handled - but they may not be mixed in the
same set. You may explicitly set the personality of a set:
my $ip4set = Net::CIDR::Set->new({ type => 'ipv4 }, '10.0.0.0/8');
Normally this isn't necessary - the set will guess its personality from the
first data that is added to it.