find_devices_on_vlan
Identify connected devices on a specific VLAN using the VLAN tag number. Simplifies network management by providing clear insights into device presence within designated VLANs.
Instructions
Find devices on specific VLAN
Input Schema
Name | Required | Description | Default |
---|---|---|---|
vlanTag | Yes | VLAN tag number (e.g., "6" for DMZ) |
Input Schema (JSON Schema)
{
"properties": {
"vlanTag": {
"description": "VLAN tag number (e.g., \"6\" for DMZ)",
"type": "string"
}
},
"required": [
"vlanTag"
],
"type": "object"
}