Create Rear_port
netbox_create_rear_portAdds a rear port to a NetBox device with required name, type, and device ID. Accepts optional fields for positions, color, tags, and custom fields.
Instructions
Create a new rear_port 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 |
|---|---|---|---|
| name | Yes | Rear port name (required). | |
| tags | No | Optional array of tag slugs to apply to the object. | |
| type | Yes | Port type slug, e.g. '8p8c', 'lc', 'lc-pc', 'sc', 'st', 'mpo', 'fc', 'splice'. (required). | |
| color | No | Hex color without '#'. | |
| label | No | ||
| device_id | Yes | Device id (required). Exposed as device_id (not device) for the remote-devices bridge; mapped to the API field device on write. | |
| positions | No | Number of front ports mappable (default 1). | |
| description | No | ||
| custom_fields | No | Optional object of custom-field slugs -> values. Only include fields defined on your NetBox instance. | |
| mark_connected | No | ||
| response_format | No | Output format: 'markdown' (default, human-readable) or 'json' (full structured payload). Use 'json' when chaining follow-up tool calls. | markdown |