block_multiple_domains
Block multiple domains simultaneously on OPNSense firewalls using a straightforward input of domain lists. Enhances network security by restricting unwanted access with minimal configuration.
Instructions
Block multiple domains at once
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Optional description for the blocks | |
domains | Yes | List of domains to block |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Optional description for the blocks",
"type": "string"
},
"domains": {
"description": "List of domains to block",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"domains"
],
"type": "object"
}