Infoblox::DHCP::FilterRule::Fingerprint - DHCP Fingerprint Filter Rule object.
DHCP Fingerprint Filter Rule object.
my $filter_rule = Infoblox::DHCP::FilterRule::Fingerprint->new( filter_name => $string, #Required permission => "grant" | "deny", #Required );
The following functions are available to apply to a DHCP Fingerprint Filter Rule object.
Use this method to add a DHCP fingerprint Filter Rule object to the DHCP Range on the Infoblox appliance. See Infoblox::DHCP::Range->filters() for parameters and return values.
#Construct a DHCP Fingerprint Filter Rule object my $filter_rule = Infoblox::DHCP::FilterRule::Fingerprint->new( filter_name => "filter", permission => "grant", );
#Add Fingerprint Filter Rule to the DHCP Range object. my $response = $dhcp_range->filters([$filter_rule]);
Use this method to add a DHCP fingerprint Filter Rule object to the DHCP Range Template on the Infoblox appliance. See Infoblox::DHCP::RangeTemplate->filters() for parameters and return values.
#Construct a DHCP Fingerprint Filter Rule object my $filter_rule = Infoblox::DHCP::FilterRule::Fingerprint->new( filter_name => "filter", permission => "grant", );
#Add Fingerprint Filter Rule to the DHCP Range Template object. my $response = $dhcp_range_template->filters([$filter_rule]);
This section describes all the methods that can be used to set and retrieve the attribute values of a DHCP Fingerprint Filter Rule object.
Use this method to set or retrieve the filter_name of a DHCP Fingerprint Filter Rule object.
Include the specified parameter to set the attribute value. Omit the parameter to retrieve the attribute value.
Name of the DHCP Fingerprint filter. Maximum length up to 1024 bytes is supported.
If you specified a parameter, the method returns true when the modification succeeds, and returns false when the operation fails.
If you did not specify a parameter, the method returns the attribute value.
#Get filter_name my $filter_name = $filter_rule->filter_name(); #Modify filter_name $filter_rule->filter_name("fingerprint filter");
Use this method to set or retrieve the permission of a DHCP Fingerprint Filter Rule object.
Include the specified parameter to set the attribute value. Omit the parameter to retrieve the attribute value.
Specify the permission in string format. The permission can be either "grant" or "deny".
If you specified a parameter, the method returns true when the modification succeeds, and returns false when the operation fails.
If you did not specify a parameter, the method returns the attribute value.
#Get permission my $permission = $filter_rule->permission(); #Modify permission $filter_rule->permission("deny");
Infoblox Inc. http://www.infoblox.com/
Infoblox::DHCP::Fingerprint, Infoblox::DHCP::Filter::Fingerprint, Infoblox::DHCP::Range, Infoblox::DHCP::RangeTemplate
Copyright (c) 2017 Infoblox Inc.