The nftables that is used for firewall rules gets 2 new sets. These are used to block incoming and outgoing traffic to select IP addresses.
11 lines
182 B
Ruby
11 lines
182 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "../model"
|
|
|
|
class GloballyBlockedDnsname < Sequel::Model
|
|
include ResourceMethods
|
|
|
|
def self.ubid_type
|
|
UBID::TYPE_ETC
|
|
end
|
|
end
|