
ipset
List of commands for ipset:
-
ipset:tldr:05d4a ipset: Add an IP address to a specific set.$ ipset add ${set_name} ${192-168-1-25}try on your machineexplain this command
-
ipset:tldr:19664 ipset: Save an IP set.$ ipset save ${set_name} > ${path-to-ip_set}try on your machineexplain this command
-
ipset:tldr:1f316 ipset: Destroy a specific IP set.$ ipset destroy ${set_name}try on your machineexplain this command
-
ipset:tldr:44548 ipset: Delete a specific IP address from a set.$ ipset del ${set_name} ${192-168-1-25}try on your machineexplain this command
-
ipset:tldr:ff9ca ipset: Create an empty IP set which will contain IP addresses.$ ipset create ${set_name} hash:iptry on your machineexplain this command