Create Ip_address
netbox_create_ip_addressCreate a new IP address entry in NetBox, specifying address in CIDR notation, status, and optional assignment to an interface.
Instructions
Create a new ip_address 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 | ||
| role | No | ||
| tags | No | Optional array of tag slugs to apply to the object. | |
| status | No | active | |
| tenant | No | ||
| address | Yes | Address in CIDR notation, e.g. '10.0.0.5/24' or '2001:db8::1/64' (required). | |
| comments | No | ||
| dns_name | No | ||
| nat_inside | No | Numeric id of the inside (private) IP. | |
| description | No | ||
| custom_fields | No | Optional object of custom-field slugs -> values. Only include fields defined on your NetBox instance. | |
| response_format | No | Output format: 'markdown' (default, human-readable) or 'json' (full structured payload). Use 'json' when chaining follow-up tool calls. | markdown |
| assigned_object_id | No | Numeric id of the interface/VM-interface when assigning. | |
| assigned_object_type | No | Set together with assigned_object_id to attach to an interface. |