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\netbox_worker.py
3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 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 | |