Netbox Get Nornir Inventory Task¤
task api name:
get_nornir_inventory
This task designed to provide Nornir workers with inventory data sourced from Netbox.
How it works
Netbox NorFab workers able to talk with Netbox GraphQL and REST API. Nornir workers can be configured to request Nornir inventory from Netbox workers on startup. Netbox workers in response to such a request will be fetching devices data from Netbox and constructing Nornir inventory returning it to Nornir worker.

-
On startup Nornir worker sends
get_nornir_inventoryrequest to Netbox NorFab Workers -
Netbox worker fetches devices data from netbox - hostnames, interfaces, ip addresses, circuits, connections, configuration contexts etc.
-
Netbox worker constructs Nornir inventory and sends it back to Nornir worker
Get Nornir Inventory Sample Usage¤
NORFAB Netbox Get Nornir Inventory Command Shell Reference¤
NorFab shell supports these command options for Netbox get_nornir_inventory task:
Python API Reference¤
Retrieve and construct Nornir inventory from NetBox data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
job
|
Job
|
NorFab Job object containing relevant metadata |
required |
filters
|
list
|
List of filters to apply when retrieving devices from NetBox. |
None
|
devices
|
list
|
List of specific devices to retrieve from NetBox. |
None
|
instance
|
str
|
NetBox instance to use. |
None
|
interfaces
|
Union[dict, bool]
|
If True, include interfaces data in the inventory. If a dict, use it as arguments for the get_interfaces method. |
False
|
connections
|
Union[dict, bool]
|
If True, include connections data in the inventory. If a dict, use it as arguments for the get_connections method. |
False
|
circuits
|
Union[dict, bool]
|
If True, include circuits data in the inventory. If a dict, use it as arguments for the get_circuits method. |
False
|
nbdata
|
bool
|
If True, include a copy of NetBox device's data in the host's data. |
True
|
primary_ip
|
str
|
Specify whether to use 'ip4' or 'ip6' for the primary IP address. Defaults to 'ip4'. |
'ip4'
|
cache
|
Union[bool, str]
|
Cache usage options:
|
None
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Result
|
Nornir inventory dictionary containing hosts and their respective data. |
Source code in norfab\workers\netbox_worker\nornir_inventory_tasks.py
14 15 16 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 | |