Create Ip_range
netbox_create_ip_rangeCreate a new IP range in NetBox by providing start and end addresses, with optional VRF, role, tags, status, and custom fields.
Instructions
Create a new ip_range 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 |
|---|---|---|---|
| vrf | No | VRF id; omit for the global table. | |
| role | No | IPAM role id. | |
| tags | No | Optional array of tag slugs to apply to the object. | |
| status | No | active | |
| tenant | No | ||
| comments | No | ||
| description | No | ||
| end_address | Yes | Last address with mask, e.g. '10.0.0.20/24' (required). | |
| custom_fields | No | Optional object of custom-field slugs -> values. Only include fields defined on your NetBox instance. | |
| mark_utilized | No | Treat the entire range as fully utilized. | |
| start_address | Yes | First address with mask, e.g. '10.0.0.10/24' (required). | |
| response_format | No | Output format: 'markdown' (default, human-readable) or 'json' (full structured payload). Use 'json' when chaining follow-up tool calls. | markdown |