apply_blocklist_category
Block domains within predefined categories like adult, malware, ads, or social using OPNsense firewall management for enhanced network security and control.
Instructions
Apply a predefined category of domain blocks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Category of domains to block |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Category of domains to block",
"enum": [
"adult",
"malware",
"ads",
"social"
],
"type": "string"
}
},
"required": [
"category"
],
"type": "object"
}