Netbox Create IP Task¤
task api name:
create_ip
Task to create next available IP from prefix or get existing IP address.
Netbox service create_ip task integrated with Nornir service and can be called
using netbox.create_ip Jinja2 filter,
allowing to allocate IP addresses in Netbox on the fly while rendering configuration templates.
Branching Support¤
Create IP task is branch aware and can create IP addresses within the branch. Netbox Branching Plugin need to be installed on Netbox instance.
NORFAB Netbox Create IP Command Shell Reference¤
NorFab shell supports these command options for Netbox create_ip task:
nf#man tree netbox.create.ip
root
└── netbox: Netbox service
└── create: Create objects in Netbox
├── timeout: Job timeout
├── workers: Filter worker to target, default 'any'
├── verbose-result: Control output details, default 'False'
├── progress: Display progress events, default 'True'
├── instance: Netbox instance name to target
├── dry-run: Do not commit to database
├── *prefix: Prefix to allocate IP address from, can also provide prefix name or filters
├── device: Device name to associate IP address with
├── interface: Device interface name to associate IP address with
├── description: IP address description
├── vrf: VRF to associate with IP address
├── tags: Tags to add to IP address
├── dns_name: IP address DNS name
├── tenant: Tenant name to associate with IP address
├── comments: IP address comments field
├── role: IP address functional role
└── branch: Branching plugin branch name to use
nf#
Python API Reference¤
Allocate the next available IP address from a given subnet.
This task finds or creates an IP address in NetBox, updates its metadata, optionally links it to a device/interface, and supports a dry run mode for previewing changes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prefix
|
str
|
The prefix from which to allocate the IP address, could be:
|
required |
description
|
str
|
A description for the allocated IP address. |
None
|
device
|
str
|
The device associated with the IP address. |
None
|
interface
|
str
|
The interface associated with the IP address. |
None
|
vrf
|
str
|
The VRF (Virtual Routing and Forwarding) instance. |
None
|
tags
|
list
|
A list of tags to associate with the IP address. |
None
|
dns_name
|
str
|
The DNS name for the IP address. |
None
|
tenant
|
str
|
The tenant associated with the IP address. |
None
|
comments
|
str
|
Additional comments for the IP address. |
None
|
instance
|
str
|
The NetBox instance to use. |
None
|
dry_run
|
bool
|
If True, do not actually allocate the IP address. |
False
|
branch
|
str
|
Branch name to use, need to have branching plugin installed, automatically creates branch if it does not exist in Netbox. |
None
|
mask_len
|
int
|
mask length to use for IP address on creation or to
update existing IP address. On new IP address creation will create child
subnet of |
None
|
create_peer_ip
|
bool
|
If True creates IP address for link peer - remote device interface connected to requested device and interface |
True
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Result
|
A dictionary containing the result of the IP allocation. |
Tasks execution follow these steps:
-
Tries to find an existing IP in NetBox matching the device/interface/description. If found, uses it; otherwise, proceeds to create a new IP.
-
If prefix is a string, determines if it's an IP network or a description. Builds a filter dictionary for NetBox queries, optionally including VRF.
-
Queries NetBox for the prefix using the constructed filter.
-
If dry_run is True, fetches the next available IP but doesn't create it.
-
If not a dry run, creates the next available IP in the prefix.
-
Updates IP attributes (description, VRF, tenant, DNS name, comments, role, tags) if provided and different from current values. Handles interface assignment and can set the IP as primary for the device.
-
If changes were made and not a dry run, saves the IP and device updates to NetBox.
Source code in norfab\workers\netbox_worker\ip_tasks.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 | |