update_vlan
Modify VLAN descriptions on OPNSense firewalls using the provided VLAN tag and new description for accurate network configuration and management.
Instructions
Update VLAN description
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | New description | |
tag | Yes | VLAN tag |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "New description",
"type": "string"
},
"tag": {
"description": "VLAN tag",
"type": "string"
}
},
"required": [
"tag",
"description"
],
"type": "object"
}