create_vlan
Add a new VLAN to a specified interface with a VLAN tag, optional description, and Priority Code Point on the OPNSense MCP Server for streamlined network segmentation.
Instructions
Create a new VLAN
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | VLAN description | |
| interface | Yes | Physical interface (e.g., igc3) | |
| pcp | No | Priority Code Point (0-7) | 0 |
| tag | Yes | VLAN tag (1-4094) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "VLAN description",
"type": "string"
},
"interface": {
"description": "Physical interface (e.g., igc3)",
"type": "string"
},
"pcp": {
"default": "0",
"description": "Priority Code Point (0-7)",
"type": "string"
},
"tag": {
"description": "VLAN tag (1-4094)",
"type": "string"
}
},
"required": [
"interface",
"tag"
],
"type": "object"
}