Create Vm_interface
netbox_create_vm_interfaceCreate a new virtual machine interface in NetBox, specifying the virtual machine ID and interface name, with optional parameters like MTU, VLANs, and tags.
Instructions
Create a new vm_interface in NetBox.
This adds a new row to NetBox. Ask before calling if the user wanted a dry-run.
Returns: Markdown summary of the newly created object (default) or JSON with the full NetBox response.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mtu | No | ||
| vrf | No | ||
| mode | No | ||
| name | Yes | Interface name (required). | |
| tags | No | Optional array of tag slugs to apply to the object. | |
| bridge | No | ||
| parent | No | ||
| enabled | No | ||
| description | No | ||
| tagged_vlans | No | ||
| custom_fields | No | Optional object of custom-field slugs -> values. Only include fields defined on your NetBox instance. | |
| untagged_vlan | No | ||
| response_format | No | Output format: 'markdown' (default, human-readable) or 'json' (full structured payload). Use 'json' when chaining follow-up tool calls. | markdown |
| virtual_machine | Yes | Virtual machine id (required). |