Netbox Create Prefix Task¤
task api name:
create_prefix
Task to create next available prefix of given prefix length within parent prefix or get existing prefix. By default prefix length is 30 resulting in ptp subnet allocation.
Netbox service create_prefix task integrated with Nornir service and can be called
using netbox.create_prefix Jinja2 filter,
allowing to allocate prefixes in Netbox on the fly while rendering configuration templates.
Warning
Netbox create_prefix task uses prefix description argument to deduplicate prefixes, calls to create_prefix task should contain identical prefix description value for same prefix.
Branching Support¤
Create Prefix 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 Prefix Command Shell Reference¤
NorFab shell supports these command options for Netbox create_prefix task:
nf#man tree netbox.create.prefix
root
└── netbox: Netbox service
└── create: Create objects in Netbox
├── instance: Netbox instance name to target
├── dry-run: Do not commit to database
├── *parent: Parent prefix to allocate new prefix from
├── *description: Description for new prefix
├── prefixlen: The prefix length of the new prefix, default '30'
├── vrf: Name of the VRF to associate with the prefix
├── tags: List of tags to assign to the prefix
├── tenant: Name of the tenant to associate with the prefix
├── comments: Comments for the prefix
├── role: Role to assign to the prefix
├── site: Name of the site to associate with the prefix
├── status: Status of the prefix
├── branch: Branching plugin branch name to use
├── timeout: Job timeout
├── workers: Filter worker to target, default 'any'
├── verbose-result: Control output details, default 'False'
└── progress: Display progress events, default 'True'
nf#
Python API Reference¤
Creates a new IP prefix in NetBox or updates an existing one.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
parent
|
Union[str, dict]
|
Parent prefix to allocate new prefix from, could be:
|
required |
description
|
str
|
Description for the new prefix, prefix description used for deduplication to source existing prefixes. |
None
|
prefixlen
|
int
|
The prefix length of the new prefix to create, by default allocates next available /30 point-to-point prefix. |
30
|
vrf
|
str
|
Name of the VRF to associate with the prefix. |
None
|
tags
|
Union[None, list]
|
List of tags to assign to the prefix. |
None
|
tenant
|
str
|
Name of the tenant to associate with the prefix. |
None
|
comments
|
str
|
Comments for the prefix. |
None
|
role
|
str
|
Role to assign to the prefix. |
None
|
site
|
str
|
Name of the site to associate with the prefix. |
None
|
status
|
str
|
Status of the prefix. |
None
|
instance
|
Union[None, str]
|
NetBox instance identifier. |
None
|
dry_run
|
bool
|
If True, simulates the creation without making changes. |
False
|
branch
|
str
|
Branch name to use, need to have branching plugin installed, automatically creates branch if it does not exist in Netbox. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
Result |
Result
|
An object containing the outcome, including status, details of the prefix, and resources used. |
Source code in norfab\workers\netbox_worker.py
3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 | |