nautobot 1.6.31__py3-none-any.whl → 1.6.32__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/circuits/forms.py +6 -0
- nautobot/circuits/views.py +1 -0
- nautobot/core/graphql/schema.py +3 -1
- nautobot/core/graphql/types.py +10 -0
- nautobot/core/models/__init__.py +2 -0
- nautobot/core/templates/generic/object_list.html +1 -1
- nautobot/core/tests/test_views.py +73 -0
- nautobot/core/urls.py +3 -3
- nautobot/core/views/__init__.py +21 -0
- nautobot/dcim/forms.py +29 -0
- nautobot/dcim/models/device_component_templates.py +4 -0
- nautobot/dcim/models/device_components.py +4 -0
- nautobot/dcim/models/devices.py +2 -0
- nautobot/dcim/views.py +4 -0
- nautobot/extras/forms/forms.py +12 -0
- nautobot/extras/models/customfields.py +2 -0
- nautobot/extras/models/datasources.py +2 -0
- nautobot/extras/models/groups.py +8 -0
- nautobot/extras/models/jobs.py +10 -0
- nautobot/extras/models/models.py +2 -0
- nautobot/extras/models/secrets.py +8 -2
- nautobot/extras/secrets/__init__.py +14 -0
- nautobot/extras/tests/test_models.py +26 -0
- nautobot/extras/views.py +1 -0
- nautobot/ipam/filters.py +1 -1
- nautobot/ipam/forms.py +6 -0
- nautobot/ipam/models.py +8 -0
- nautobot/ipam/views.py +1 -0
- nautobot/project-static/docs/404.html +62 -0
- nautobot/project-static/docs/additional-features/caching.html +62 -0
- nautobot/project-static/docs/additional-features/change-logging.html +62 -0
- nautobot/project-static/docs/additional-features/config-contexts.html +62 -0
- nautobot/project-static/docs/additional-features/graphql.html +62 -0
- nautobot/project-static/docs/additional-features/healthcheck.html +62 -0
- nautobot/project-static/docs/additional-features/job-scheduling-and-approvals.html +63 -1
- nautobot/project-static/docs/additional-features/jobs.html +62 -0
- nautobot/project-static/docs/additional-features/napalm.html +62 -0
- nautobot/project-static/docs/additional-features/prometheus-metrics.html +62 -0
- nautobot/project-static/docs/additional-features/template-filters.html +62 -0
- nautobot/project-static/docs/administration/celery-queues.html +63 -1
- nautobot/project-static/docs/administration/nautobot-server.html +62 -0
- nautobot/project-static/docs/administration/nautobot-shell.html +62 -0
- nautobot/project-static/docs/administration/permissions.html +62 -0
- nautobot/project-static/docs/administration/replicating-nautobot.html +62 -0
- nautobot/project-static/docs/administration/request-profiling.html +62 -0
- nautobot/project-static/docs/administration/security/index.html +4407 -0
- nautobot/project-static/docs/administration/security/notices.html +4797 -0
- nautobot/project-static/docs/apps/index.html +62 -0
- nautobot/project-static/docs/apps/nautobot-apps.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +83 -21
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +67 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +140 -52
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +3203 -3101
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +210 -148
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +62 -0
- nautobot/project-static/docs/configuration/authentication/ldap.html +62 -0
- nautobot/project-static/docs/configuration/authentication/remote.html +62 -0
- nautobot/project-static/docs/configuration/authentication/sso.html +62 -0
- nautobot/project-static/docs/configuration/index.html +62 -0
- nautobot/project-static/docs/configuration/optional-settings.html +67 -5
- nautobot/project-static/docs/configuration/required-settings.html +62 -0
- nautobot/project-static/docs/core-functionality/circuits.html +62 -0
- nautobot/project-static/docs/core-functionality/device-types.html +62 -0
- nautobot/project-static/docs/core-functionality/devices.html +62 -0
- nautobot/project-static/docs/core-functionality/ipam.html +62 -0
- nautobot/project-static/docs/core-functionality/power.html +62 -0
- nautobot/project-static/docs/core-functionality/secrets.html +62 -0
- nautobot/project-static/docs/core-functionality/services.html +62 -0
- nautobot/project-static/docs/core-functionality/sites-and-racks.html +62 -0
- nautobot/project-static/docs/core-functionality/tenancy.html +62 -0
- nautobot/project-static/docs/core-functionality/virtualization.html +62 -0
- nautobot/project-static/docs/core-functionality/vlans.html +62 -0
- nautobot/project-static/docs/development/application-registry.html +62 -0
- nautobot/project-static/docs/development/best-practices.html +62 -0
- nautobot/project-static/docs/development/docker-compose-advanced-use-cases.html +62 -0
- nautobot/project-static/docs/development/extending-models.html +62 -0
- nautobot/project-static/docs/development/generic-views.html +62 -0
- nautobot/project-static/docs/development/getting-started.html +63 -1
- nautobot/project-static/docs/development/homepage.html +62 -0
- nautobot/project-static/docs/development/index.html +62 -0
- nautobot/project-static/docs/development/navigation-menu.html +62 -0
- nautobot/project-static/docs/development/release-checklist.html +62 -0
- nautobot/project-static/docs/development/style-guide.html +62 -0
- nautobot/project-static/docs/development/templates.html +62 -0
- nautobot/project-static/docs/development/testing.html +62 -0
- nautobot/project-static/docs/development/user-preferences.html +62 -0
- nautobot/project-static/docs/docker/index.html +62 -0
- nautobot/project-static/docs/index.html +62 -0
- nautobot/project-static/docs/installation/centos.html +62 -0
- nautobot/project-static/docs/installation/external-authentication.html +62 -0
- nautobot/project-static/docs/installation/http-server.html +62 -0
- nautobot/project-static/docs/installation/index.html +62 -0
- nautobot/project-static/docs/installation/migrating-from-netbox.html +62 -0
- nautobot/project-static/docs/installation/migrating-from-postgresql.html +62 -0
- nautobot/project-static/docs/installation/nautobot.html +62 -0
- nautobot/project-static/docs/installation/selinux-troubleshooting.html +62 -0
- nautobot/project-static/docs/installation/services.html +62 -0
- nautobot/project-static/docs/installation/ubuntu.html +62 -0
- nautobot/project-static/docs/installation/upgrading.html +62 -0
- nautobot/project-static/docs/models/circuits/circuit.html +62 -0
- nautobot/project-static/docs/models/circuits/circuittermination.html +62 -0
- nautobot/project-static/docs/models/circuits/circuittype.html +62 -0
- nautobot/project-static/docs/models/circuits/provider.html +62 -0
- nautobot/project-static/docs/models/circuits/providernetwork.html +62 -0
- nautobot/project-static/docs/models/dcim/cable.html +62 -0
- nautobot/project-static/docs/models/dcim/consoleport.html +62 -0
- nautobot/project-static/docs/models/dcim/consoleporttemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/consoleserverport.html +62 -0
- nautobot/project-static/docs/models/dcim/consoleserverporttemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/device.html +62 -0
- nautobot/project-static/docs/models/dcim/devicebay.html +62 -0
- nautobot/project-static/docs/models/dcim/devicebaytemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/deviceredundancygroup.html +62 -0
- nautobot/project-static/docs/models/dcim/devicerole.html +62 -0
- nautobot/project-static/docs/models/dcim/devicetype.html +62 -0
- nautobot/project-static/docs/models/dcim/frontport.html +62 -0
- nautobot/project-static/docs/models/dcim/frontporttemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/interface.html +62 -0
- nautobot/project-static/docs/models/dcim/interfaceredundancygroup.html +62 -0
- nautobot/project-static/docs/models/dcim/interfacetemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/inventoryitem.html +62 -0
- nautobot/project-static/docs/models/dcim/location.html +62 -0
- nautobot/project-static/docs/models/dcim/locationtype.html +62 -0
- nautobot/project-static/docs/models/dcim/manufacturer.html +62 -0
- nautobot/project-static/docs/models/dcim/platform.html +62 -0
- nautobot/project-static/docs/models/dcim/powerfeed.html +62 -0
- nautobot/project-static/docs/models/dcim/poweroutlet.html +62 -0
- nautobot/project-static/docs/models/dcim/poweroutlettemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/powerpanel.html +62 -0
- nautobot/project-static/docs/models/dcim/powerport.html +62 -0
- nautobot/project-static/docs/models/dcim/powerporttemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/rack.html +62 -0
- nautobot/project-static/docs/models/dcim/rackgroup.html +62 -0
- nautobot/project-static/docs/models/dcim/rackreservation.html +62 -0
- nautobot/project-static/docs/models/dcim/rackrole.html +62 -0
- nautobot/project-static/docs/models/dcim/rearport.html +62 -0
- nautobot/project-static/docs/models/dcim/rearporttemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/region.html +62 -0
- nautobot/project-static/docs/models/dcim/site.html +62 -0
- nautobot/project-static/docs/models/dcim/virtualchassis.html +62 -0
- nautobot/project-static/docs/models/extras/computedfield.html +63 -1
- nautobot/project-static/docs/models/extras/configcontext.html +62 -0
- nautobot/project-static/docs/models/extras/configcontextschema.html +62 -0
- nautobot/project-static/docs/models/extras/customfield.html +62 -0
- nautobot/project-static/docs/models/extras/customlink.html +63 -1
- nautobot/project-static/docs/models/extras/dynamicgroup.html +62 -0
- nautobot/project-static/docs/models/extras/exporttemplate.html +62 -0
- nautobot/project-static/docs/models/extras/gitrepository.html +62 -0
- nautobot/project-static/docs/models/extras/graphqlquery.html +62 -0
- nautobot/project-static/docs/models/extras/imageattachment.html +62 -0
- nautobot/project-static/docs/models/extras/job.html +62 -0
- nautobot/project-static/docs/models/extras/jobbutton.html +63 -1
- nautobot/project-static/docs/models/extras/jobhook.html +62 -0
- nautobot/project-static/docs/models/extras/joblogentry.html +62 -0
- nautobot/project-static/docs/models/extras/jobresult.html +62 -0
- nautobot/project-static/docs/models/extras/note.html +62 -0
- nautobot/project-static/docs/models/extras/relationship.html +62 -0
- nautobot/project-static/docs/models/extras/secret.html +62 -0
- nautobot/project-static/docs/models/extras/secretsgroup.html +62 -0
- nautobot/project-static/docs/models/extras/status.html +62 -0
- nautobot/project-static/docs/models/extras/tag.html +62 -0
- nautobot/project-static/docs/models/extras/webhook.html +62 -0
- nautobot/project-static/docs/models/ipam/aggregate.html +62 -0
- nautobot/project-static/docs/models/ipam/ipaddress.html +62 -0
- nautobot/project-static/docs/models/ipam/prefix.html +62 -0
- nautobot/project-static/docs/models/ipam/rir.html +62 -0
- nautobot/project-static/docs/models/ipam/role.html +62 -0
- nautobot/project-static/docs/models/ipam/routetarget.html +62 -0
- nautobot/project-static/docs/models/ipam/service.html +62 -0
- nautobot/project-static/docs/models/ipam/vlan.html +62 -0
- nautobot/project-static/docs/models/ipam/vlangroup.html +62 -0
- nautobot/project-static/docs/models/ipam/vrf.html +62 -0
- nautobot/project-static/docs/models/tenancy/tenant.html +62 -0
- nautobot/project-static/docs/models/tenancy/tenantgroup.html +62 -0
- nautobot/project-static/docs/models/users/objectpermission.html +62 -0
- nautobot/project-static/docs/models/users/token.html +62 -0
- nautobot/project-static/docs/models/virtualization/cluster.html +62 -0
- nautobot/project-static/docs/models/virtualization/clustergroup.html +62 -0
- nautobot/project-static/docs/models/virtualization/clustertype.html +62 -0
- nautobot/project-static/docs/models/virtualization/virtualmachine.html +62 -0
- nautobot/project-static/docs/models/virtualization/vminterface.html +62 -0
- nautobot/project-static/docs/plugins/development.html +63 -1
- nautobot/project-static/docs/plugins/index.html +62 -0
- nautobot/project-static/docs/plugins/porting-from-netbox.html +62 -0
- nautobot/project-static/docs/release-notes/index.html +62 -0
- nautobot/project-static/docs/release-notes/version-1.0.html +62 -0
- nautobot/project-static/docs/release-notes/version-1.1.html +64 -2
- nautobot/project-static/docs/release-notes/version-1.2.html +63 -1
- nautobot/project-static/docs/release-notes/version-1.3.html +62 -0
- nautobot/project-static/docs/release-notes/version-1.4.html +62 -0
- nautobot/project-static/docs/release-notes/version-1.5.html +62 -0
- nautobot/project-static/docs/release-notes/version-1.6.html +354 -188
- nautobot/project-static/docs/rest-api/authentication.html +62 -0
- nautobot/project-static/docs/rest-api/filtering.html +62 -0
- nautobot/project-static/docs/rest-api/overview.html +62 -0
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +197 -187
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guides/custom-fields.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/creating-devices.html +63 -1
- nautobot/project-static/docs/user-guides/getting-started/index.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/interfaces.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/ipam.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/platforms.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/regions.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/search-bar.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/tenants.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/vlans-and-vlan-groups.html +63 -1
- nautobot/project-static/docs/user-guides/git-data-source.html +62 -0
- nautobot/project-static/docs/user-guides/graphql.html +62 -0
- nautobot/project-static/docs/user-guides/relationships.html +62 -0
- nautobot/project-static/docs/user-guides/s3-django-storage.html +62 -0
- nautobot/tenancy/forms.py +10 -0
- nautobot/tenancy/views.py +1 -0
- nautobot/users/models.py +4 -0
- nautobot/utilities/testing/views.py +17 -1
- nautobot/utilities/tests/test_jinja_filters.py +26 -2
- nautobot/utilities/utils.py +14 -0
- nautobot/virtualization/forms.py +12 -0
- nautobot/virtualization/views.py +2 -0
- {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/METADATA +1 -1
- {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/RECORD +235 -233
- {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/LICENSE.txt +0 -0
- {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/NOTICE +0 -0
- {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/WHEEL +0 -0
- {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,4797 @@
|
|
|
1
|
+
|
|
2
|
+
<!doctype html>
|
|
3
|
+
<html lang="en" class="no-js">
|
|
4
|
+
<head>
|
|
5
|
+
|
|
6
|
+
<meta charset="utf-8">
|
|
7
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
<link rel="canonical" href="https://docs.nautobot.com/projects/core/en/stable/administration/security/notices.html">
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
<link rel="prev" href="index.html">
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
<link rel="next" href="../../user-guides/getting-started/creating-devices.html">
|
|
18
|
+
|
|
19
|
+
<link rel="icon" href="../../assets/favicon.ico">
|
|
20
|
+
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.1.21">
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
<title>Notices - Nautobot Documentation</title>
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
<link rel="stylesheet" href="../../assets/stylesheets/main.eebd395e.min.css">
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
<link rel="stylesheet" href="../../assets/stylesheets/palette.ecc896b0.min.css">
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
42
|
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
|
|
43
|
+
<style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
<link rel="stylesheet" href="../../assets/_mkdocstrings.css">
|
|
48
|
+
|
|
49
|
+
<link rel="stylesheet" href="../../assets/extra.css">
|
|
50
|
+
|
|
51
|
+
<script>__md_scope=new URL("../..",location),__md_hash=e=>[...e].reduce((e,_)=>(e<<5)-e+_.charCodeAt(0),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
</head>
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
<body dir="ltr" data-md-color-scheme="default" data-md-color-primary="black" data-md-color-accent="indigo">
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
<script>var palette=__md_get("__palette");if(palette&&"object"==typeof palette.color)for(var key of Object.keys(palette.color))document.body.setAttribute("data-md-color-"+key,palette.color[key])</script>
|
|
73
|
+
|
|
74
|
+
<input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
|
|
75
|
+
<input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
|
|
76
|
+
<label class="md-overlay" for="__drawer"></label>
|
|
77
|
+
<div data-md-component="skip">
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
<a href="#nautobot-security-notices" class="md-skip">
|
|
81
|
+
Skip to content
|
|
82
|
+
</a>
|
|
83
|
+
|
|
84
|
+
</div>
|
|
85
|
+
<div data-md-component="announce">
|
|
86
|
+
|
|
87
|
+
</div>
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
<header class="md-header md-header--shadow md-header--lifted" data-md-component="header">
|
|
95
|
+
<nav class="md-header__inner md-grid" aria-label="Header">
|
|
96
|
+
<a href="../../index.html" title="Nautobot Documentation" class="md-header__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
|
|
97
|
+
|
|
98
|
+
<img src="../../assets/nautobot_logo.svg" alt="logo">
|
|
99
|
+
|
|
100
|
+
</a>
|
|
101
|
+
<label class="md-header__button md-icon" for="__drawer">
|
|
102
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2Z"/></svg>
|
|
103
|
+
</label>
|
|
104
|
+
<div class="md-header__title" data-md-component="header-title">
|
|
105
|
+
<div class="md-header__ellipsis">
|
|
106
|
+
<div class="md-header__topic">
|
|
107
|
+
<span class="md-ellipsis">
|
|
108
|
+
Nautobot Documentation
|
|
109
|
+
</span>
|
|
110
|
+
</div>
|
|
111
|
+
<div class="md-header__topic" data-md-component="header-topic">
|
|
112
|
+
<span class="md-ellipsis">
|
|
113
|
+
|
|
114
|
+
Notices
|
|
115
|
+
|
|
116
|
+
</span>
|
|
117
|
+
</div>
|
|
118
|
+
</div>
|
|
119
|
+
</div>
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
<form class="md-header__option" data-md-component="palette">
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
<input class="md-option" data-md-color-media="(prefers-color-scheme: light)" data-md-color-scheme="default" data-md-color-primary="black" data-md-color-accent="indigo" aria-label="Switch to dark mode" type="radio" name="__palette" id="__palette_1">
|
|
128
|
+
|
|
129
|
+
<label class="md-header__button md-icon" title="Switch to dark mode" for="__palette_2" hidden>
|
|
130
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m0-7 2.39 3.42C13.65 5.15 12.84 5 12 5c-.84 0-1.65.15-2.39.42L12 2M3.34 7l4.16-.35A7.2 7.2 0 0 0 5.94 8.5c-.44.74-.69 1.5-.83 2.29L3.34 7m.02 10 1.76-3.77a7.131 7.131 0 0 0 2.38 4.14L3.36 17M20.65 7l-1.77 3.79a7.023 7.023 0 0 0-2.38-4.15l4.15.36m-.01 10-4.14.36c.59-.51 1.12-1.14 1.54-1.86.42-.73.69-1.5.83-2.29L20.64 17M12 22l-2.41-3.44c.74.27 1.55.44 2.41.44.82 0 1.63-.17 2.37-.44L12 22Z"/></svg>
|
|
131
|
+
</label>
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
<input class="md-option" data-md-color-media="(prefers-color-scheme: dark)" data-md-color-scheme="slate" data-md-color-primary="black" data-md-color-accent="indigo" aria-label="Switch to light mode" type="radio" name="__palette" id="__palette_2">
|
|
138
|
+
|
|
139
|
+
<label class="md-header__button md-icon" title="Switch to light mode" for="__palette_1" hidden>
|
|
140
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.75 4.09-2.53 1.94.91 3.06-2.63-1.81-2.63 1.81.91-3.06-2.53-1.94L12.44 4l1.06-3 1.06 3 3.19.09m3.5 6.91-1.64 1.25.59 1.98-1.7-1.17-1.7 1.17.59-1.98L15.75 11l2.06-.05L18.5 9l.69 1.95 2.06.05m-2.28 4.95c.83-.08 1.72 1.1 1.19 1.85-.32.45-.66.87-1.08 1.27C15.17 23 8.84 23 4.94 19.07c-3.91-3.9-3.91-10.24 0-14.14.4-.4.82-.76 1.27-1.08.75-.53 1.93.36 1.85 1.19-.27 2.86.69 5.83 2.89 8.02a9.96 9.96 0 0 0 8.02 2.89m-1.64 2.02a12.08 12.08 0 0 1-7.8-3.47c-2.17-2.19-3.33-5-3.49-7.82-2.81 3.14-2.7 7.96.31 10.98 3.02 3.01 7.84 3.12 10.98.31Z"/></svg>
|
|
141
|
+
</label>
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
</form>
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
<label class="md-header__button md-icon" for="__search">
|
|
150
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>
|
|
151
|
+
</label>
|
|
152
|
+
<div class="md-search" data-md-component="search" role="dialog">
|
|
153
|
+
<label class="md-search__overlay" for="__search"></label>
|
|
154
|
+
<div class="md-search__inner" role="search">
|
|
155
|
+
<form class="md-search__form" name="search">
|
|
156
|
+
<input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
|
|
157
|
+
<label class="md-search__icon md-icon" for="__search">
|
|
158
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>
|
|
159
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12Z"/></svg>
|
|
160
|
+
</label>
|
|
161
|
+
<nav class="md-search__options" aria-label="Search">
|
|
162
|
+
|
|
163
|
+
<a href="javascript:void(0)" class="md-search__icon md-icon" title="Share" aria-label="Share" data-clipboard data-clipboard-text="" data-md-component="search-share" tabindex="-1">
|
|
164
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7 0-.24-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9a3 3 0 0 0-3 3 3 3 0 0 0 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.15c-.05.21-.08.43-.08.66 0 1.61 1.31 2.91 2.92 2.91 1.61 0 2.92-1.3 2.92-2.91A2.92 2.92 0 0 0 18 16.08Z"/></svg>
|
|
165
|
+
</a>
|
|
166
|
+
|
|
167
|
+
<button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
|
|
168
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41Z"/></svg>
|
|
169
|
+
</button>
|
|
170
|
+
</nav>
|
|
171
|
+
|
|
172
|
+
<div class="md-search__suggest" data-md-component="search-suggest"></div>
|
|
173
|
+
|
|
174
|
+
</form>
|
|
175
|
+
<div class="md-search__output">
|
|
176
|
+
<div class="md-search__scrollwrap" data-md-scrollfix>
|
|
177
|
+
<div class="md-search-result" data-md-component="search-result">
|
|
178
|
+
<div class="md-search-result__meta">
|
|
179
|
+
Initializing search
|
|
180
|
+
</div>
|
|
181
|
+
<ol class="md-search-result__list" role="presentation"></ol>
|
|
182
|
+
</div>
|
|
183
|
+
</div>
|
|
184
|
+
</div>
|
|
185
|
+
</div>
|
|
186
|
+
</div>
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
<div class="md-header__source">
|
|
190
|
+
<a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
|
|
191
|
+
<div class="md-source__icon md-icon">
|
|
192
|
+
|
|
193
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
|
|
194
|
+
</div>
|
|
195
|
+
<div class="md-source__repository">
|
|
196
|
+
GitHub
|
|
197
|
+
</div>
|
|
198
|
+
</a>
|
|
199
|
+
</div>
|
|
200
|
+
|
|
201
|
+
</nav>
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
<nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
|
|
206
|
+
<div class="md-grid">
|
|
207
|
+
<ul class="md-tabs__list">
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
<li class="md-tabs__item">
|
|
215
|
+
<a href="../../index.html" class="md-tabs__link">
|
|
216
|
+
Overview
|
|
217
|
+
</a>
|
|
218
|
+
</li>
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
<li class="md-tabs__item">
|
|
237
|
+
<a href="../../installation/index.html" class="md-tabs__link md-tabs__link--active">
|
|
238
|
+
Documentation
|
|
239
|
+
</a>
|
|
240
|
+
</li>
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
<li class="md-tabs__item">
|
|
255
|
+
<a href="../../plugins/development.html" class="md-tabs__link">
|
|
256
|
+
App Developer Guide
|
|
257
|
+
</a>
|
|
258
|
+
</li>
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
<li class="md-tabs__item">
|
|
271
|
+
<a href="../../development/index.html" class="md-tabs__link">
|
|
272
|
+
Core Developer Guide
|
|
273
|
+
</a>
|
|
274
|
+
</li>
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
<li class="md-tabs__item">
|
|
287
|
+
<a href="../../release-notes/index.html" class="md-tabs__link">
|
|
288
|
+
Release Notes
|
|
289
|
+
</a>
|
|
290
|
+
</li>
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
<li class="md-tabs__item">
|
|
303
|
+
<a href="../../apps/index.html" class="md-tabs__link">
|
|
304
|
+
Nautobot Apps
|
|
305
|
+
</a>
|
|
306
|
+
</li>
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
<li class="md-tabs__item">
|
|
316
|
+
<a href="https://docs.nautobot.com/" class="md-tabs__link">
|
|
317
|
+
Nautobot Docs Home ↗︎
|
|
318
|
+
</a>
|
|
319
|
+
</li>
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
</ul>
|
|
323
|
+
</div>
|
|
324
|
+
</nav>
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
</header>
|
|
328
|
+
|
|
329
|
+
<div class="md-container" data-md-component="container">
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
<main class="md-main" data-md-component="main">
|
|
335
|
+
<div class="md-main__inner md-grid">
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
<div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
|
|
340
|
+
<div class="md-sidebar__scrollwrap">
|
|
341
|
+
<div class="md-sidebar__inner">
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
<nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
|
|
348
|
+
<label class="md-nav__title" for="__drawer">
|
|
349
|
+
<a href="../../index.html" title="Nautobot Documentation" class="md-nav__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
|
|
350
|
+
|
|
351
|
+
<img src="../../assets/nautobot_logo.svg" alt="logo">
|
|
352
|
+
|
|
353
|
+
</a>
|
|
354
|
+
Nautobot Documentation
|
|
355
|
+
</label>
|
|
356
|
+
|
|
357
|
+
<div class="md-nav__source">
|
|
358
|
+
<a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
|
|
359
|
+
<div class="md-source__icon md-icon">
|
|
360
|
+
|
|
361
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
|
|
362
|
+
</div>
|
|
363
|
+
<div class="md-source__repository">
|
|
364
|
+
GitHub
|
|
365
|
+
</div>
|
|
366
|
+
</a>
|
|
367
|
+
</div>
|
|
368
|
+
|
|
369
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
<li class="md-nav__item">
|
|
379
|
+
<a href="../../index.html" class="md-nav__link">
|
|
380
|
+
Overview
|
|
381
|
+
</a>
|
|
382
|
+
</li>
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
<label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="0">
|
|
406
|
+
Documentation
|
|
407
|
+
<span class="md-nav__icon md-icon"></span>
|
|
408
|
+
</label>
|
|
409
|
+
|
|
410
|
+
<nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="true">
|
|
411
|
+
<label class="md-nav__title" for="__nav_2">
|
|
412
|
+
<span class="md-nav__icon md-icon"></span>
|
|
413
|
+
Documentation
|
|
414
|
+
</label>
|
|
415
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1" >
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
<label class="md-nav__link" for="__nav_2_1" id="__nav_2_1_label" tabindex="0">
|
|
433
|
+
Installation
|
|
434
|
+
<span class="md-nav__icon md-icon"></span>
|
|
435
|
+
</label>
|
|
436
|
+
|
|
437
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_1_label" aria-expanded="false">
|
|
438
|
+
<label class="md-nav__title" for="__nav_2_1">
|
|
439
|
+
<span class="md-nav__icon md-icon"></span>
|
|
440
|
+
Installation
|
|
441
|
+
</label>
|
|
442
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
<li class="md-nav__item">
|
|
450
|
+
<a href="../../installation/index.html" class="md-nav__link">
|
|
451
|
+
Installing Prerequisites
|
|
452
|
+
</a>
|
|
453
|
+
</li>
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
<li class="md-nav__item">
|
|
464
|
+
<a href="../../installation/nautobot.html" class="md-nav__link">
|
|
465
|
+
Installing Nautobot
|
|
466
|
+
</a>
|
|
467
|
+
</li>
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
<li class="md-nav__item">
|
|
478
|
+
<a href="../../installation/services.html" class="md-nav__link">
|
|
479
|
+
Deploying Nautobot Services
|
|
480
|
+
</a>
|
|
481
|
+
</li>
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
<li class="md-nav__item">
|
|
492
|
+
<a href="../../installation/http-server.html" class="md-nav__link">
|
|
493
|
+
Configuring an HTTP Server
|
|
494
|
+
</a>
|
|
495
|
+
</li>
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
<li class="md-nav__item">
|
|
506
|
+
<a href="../../installation/external-authentication.html" class="md-nav__link">
|
|
507
|
+
External Authentication (Optional)
|
|
508
|
+
</a>
|
|
509
|
+
</li>
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
<li class="md-nav__item">
|
|
520
|
+
<a href="../../docker/index.html" class="md-nav__link">
|
|
521
|
+
Nautobot Docker Images
|
|
522
|
+
</a>
|
|
523
|
+
</li>
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
</ul>
|
|
529
|
+
</nav>
|
|
530
|
+
</li>
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" >
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
<label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
|
|
551
|
+
Migration
|
|
552
|
+
<span class="md-nav__icon md-icon"></span>
|
|
553
|
+
</label>
|
|
554
|
+
|
|
555
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
|
|
556
|
+
<label class="md-nav__title" for="__nav_2_2">
|
|
557
|
+
<span class="md-nav__icon md-icon"></span>
|
|
558
|
+
Migration
|
|
559
|
+
</label>
|
|
560
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
<li class="md-nav__item">
|
|
568
|
+
<a href="../../installation/migrating-from-netbox.html" class="md-nav__link">
|
|
569
|
+
Migrating from NetBox
|
|
570
|
+
</a>
|
|
571
|
+
</li>
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
|
|
581
|
+
<li class="md-nav__item">
|
|
582
|
+
<a href="../../installation/upgrading.html" class="md-nav__link">
|
|
583
|
+
Upgrading Nautobot
|
|
584
|
+
</a>
|
|
585
|
+
</li>
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
|
|
595
|
+
<li class="md-nav__item">
|
|
596
|
+
<a href="../../installation/migrating-from-postgresql.html" class="md-nav__link">
|
|
597
|
+
Migrating from PostgreSQL to MySQL
|
|
598
|
+
</a>
|
|
599
|
+
</li>
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
</ul>
|
|
605
|
+
</nav>
|
|
606
|
+
</li>
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3" >
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
<label class="md-nav__link" for="__nav_2_3" id="__nav_2_3_label" tabindex="0">
|
|
627
|
+
Configuration
|
|
628
|
+
<span class="md-nav__icon md-icon"></span>
|
|
629
|
+
</label>
|
|
630
|
+
|
|
631
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
|
|
632
|
+
<label class="md-nav__title" for="__nav_2_3">
|
|
633
|
+
<span class="md-nav__icon md-icon"></span>
|
|
634
|
+
Configuration
|
|
635
|
+
</label>
|
|
636
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
<li class="md-nav__item">
|
|
644
|
+
<a href="../../configuration/index.html" class="md-nav__link">
|
|
645
|
+
Configuring Nautobot
|
|
646
|
+
</a>
|
|
647
|
+
</li>
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
|
|
654
|
+
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
<li class="md-nav__item">
|
|
658
|
+
<a href="../../configuration/required-settings.html" class="md-nav__link">
|
|
659
|
+
Required Settings
|
|
660
|
+
</a>
|
|
661
|
+
</li>
|
|
662
|
+
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
|
|
667
|
+
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
<li class="md-nav__item">
|
|
672
|
+
<a href="../../configuration/optional-settings.html" class="md-nav__link">
|
|
673
|
+
Optional Settings
|
|
674
|
+
</a>
|
|
675
|
+
</li>
|
|
676
|
+
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
</ul>
|
|
681
|
+
</nav>
|
|
682
|
+
</li>
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
|
|
698
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" >
|
|
699
|
+
|
|
700
|
+
|
|
701
|
+
|
|
702
|
+
<label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
|
|
703
|
+
External Authentication
|
|
704
|
+
<span class="md-nav__icon md-icon"></span>
|
|
705
|
+
</label>
|
|
706
|
+
|
|
707
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="false">
|
|
708
|
+
<label class="md-nav__title" for="__nav_2_4">
|
|
709
|
+
<span class="md-nav__icon md-icon"></span>
|
|
710
|
+
External Authentication
|
|
711
|
+
</label>
|
|
712
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
713
|
+
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
|
|
719
|
+
<li class="md-nav__item">
|
|
720
|
+
<a href="../../configuration/authentication/ldap.html" class="md-nav__link">
|
|
721
|
+
LDAP
|
|
722
|
+
</a>
|
|
723
|
+
</li>
|
|
724
|
+
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
|
|
733
|
+
<li class="md-nav__item">
|
|
734
|
+
<a href="../../configuration/authentication/sso.html" class="md-nav__link">
|
|
735
|
+
SSO
|
|
736
|
+
</a>
|
|
737
|
+
</li>
|
|
738
|
+
|
|
739
|
+
|
|
740
|
+
|
|
741
|
+
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
|
|
746
|
+
|
|
747
|
+
<li class="md-nav__item">
|
|
748
|
+
<a href="../../configuration/authentication/remote.html" class="md-nav__link">
|
|
749
|
+
Remote Header
|
|
750
|
+
</a>
|
|
751
|
+
</li>
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
|
|
756
|
+
</ul>
|
|
757
|
+
</nav>
|
|
758
|
+
</li>
|
|
759
|
+
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
|
|
763
|
+
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
772
|
+
|
|
773
|
+
|
|
774
|
+
|
|
775
|
+
|
|
776
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5" checked>
|
|
777
|
+
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
<label class="md-nav__link" for="__nav_2_5" id="__nav_2_5_label" tabindex="0">
|
|
781
|
+
Administration
|
|
782
|
+
<span class="md-nav__icon md-icon"></span>
|
|
783
|
+
</label>
|
|
784
|
+
|
|
785
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_5_label" aria-expanded="true">
|
|
786
|
+
<label class="md-nav__title" for="__nav_2_5">
|
|
787
|
+
<span class="md-nav__icon md-icon"></span>
|
|
788
|
+
Administration
|
|
789
|
+
</label>
|
|
790
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
<li class="md-nav__item">
|
|
798
|
+
<a href="../nautobot-server.html" class="md-nav__link">
|
|
799
|
+
Nautobot Server
|
|
800
|
+
</a>
|
|
801
|
+
</li>
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
|
|
805
|
+
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
|
|
810
|
+
|
|
811
|
+
<li class="md-nav__item">
|
|
812
|
+
<a href="../nautobot-shell.html" class="md-nav__link">
|
|
813
|
+
Nautobot Shell
|
|
814
|
+
</a>
|
|
815
|
+
</li>
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
|
|
825
|
+
<li class="md-nav__item">
|
|
826
|
+
<a href="../permissions.html" class="md-nav__link">
|
|
827
|
+
Permissions
|
|
828
|
+
</a>
|
|
829
|
+
</li>
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
|
|
838
|
+
|
|
839
|
+
<li class="md-nav__item">
|
|
840
|
+
<a href="../request-profiling.html" class="md-nav__link">
|
|
841
|
+
Request Profiling
|
|
842
|
+
</a>
|
|
843
|
+
</li>
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
|
|
853
|
+
<li class="md-nav__item">
|
|
854
|
+
<a href="../replicating-nautobot.html" class="md-nav__link">
|
|
855
|
+
Replicating Nautobot
|
|
856
|
+
</a>
|
|
857
|
+
</li>
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
<li class="md-nav__item">
|
|
868
|
+
<a href="../celery-queues.html" class="md-nav__link">
|
|
869
|
+
Task Queues
|
|
870
|
+
</a>
|
|
871
|
+
</li>
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
|
|
876
|
+
|
|
877
|
+
|
|
878
|
+
|
|
879
|
+
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
|
|
883
|
+
|
|
884
|
+
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" checked>
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
|
|
893
|
+
<label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
|
|
894
|
+
Security
|
|
895
|
+
<span class="md-nav__icon md-icon"></span>
|
|
896
|
+
</label>
|
|
897
|
+
|
|
898
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="true">
|
|
899
|
+
<label class="md-nav__title" for="__nav_2_5_7">
|
|
900
|
+
<span class="md-nav__icon md-icon"></span>
|
|
901
|
+
Security
|
|
902
|
+
</label>
|
|
903
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
<li class="md-nav__item">
|
|
911
|
+
<a href="index.html" class="md-nav__link">
|
|
912
|
+
Nautobot Security
|
|
913
|
+
</a>
|
|
914
|
+
</li>
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
|
|
924
|
+
|
|
925
|
+
|
|
926
|
+
<li class="md-nav__item md-nav__item--active">
|
|
927
|
+
|
|
928
|
+
<input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
|
|
929
|
+
|
|
930
|
+
|
|
931
|
+
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
<label class="md-nav__link md-nav__link--active" for="__toc">
|
|
935
|
+
Notices
|
|
936
|
+
<span class="md-nav__icon md-icon"></span>
|
|
937
|
+
</label>
|
|
938
|
+
|
|
939
|
+
<a href="notices.html" class="md-nav__link md-nav__link--active">
|
|
940
|
+
Notices
|
|
941
|
+
</a>
|
|
942
|
+
|
|
943
|
+
|
|
944
|
+
|
|
945
|
+
<nav class="md-nav md-nav--secondary" aria-label="Table of contents">
|
|
946
|
+
|
|
947
|
+
|
|
948
|
+
|
|
949
|
+
|
|
950
|
+
|
|
951
|
+
|
|
952
|
+
<label class="md-nav__title" for="__toc">
|
|
953
|
+
<span class="md-nav__icon md-icon"></span>
|
|
954
|
+
Table of contents
|
|
955
|
+
</label>
|
|
956
|
+
<ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
|
|
957
|
+
|
|
958
|
+
<li class="md-nav__item">
|
|
959
|
+
<a href="#cve-2025-49142" class="md-nav__link">
|
|
960
|
+
CVE-2025-49142
|
|
961
|
+
</a>
|
|
962
|
+
|
|
963
|
+
</li>
|
|
964
|
+
|
|
965
|
+
<li class="md-nav__item">
|
|
966
|
+
<a href="#cve-2025-49143" class="md-nav__link">
|
|
967
|
+
CVE-2025-49143
|
|
968
|
+
</a>
|
|
969
|
+
|
|
970
|
+
</li>
|
|
971
|
+
|
|
972
|
+
<li class="md-nav__item">
|
|
973
|
+
<a href="#cve-2024-36112" class="md-nav__link">
|
|
974
|
+
CVE-2024-36112
|
|
975
|
+
</a>
|
|
976
|
+
|
|
977
|
+
</li>
|
|
978
|
+
|
|
979
|
+
<li class="md-nav__item">
|
|
980
|
+
<a href="#cve-2024-34707" class="md-nav__link">
|
|
981
|
+
CVE-2024-34707
|
|
982
|
+
</a>
|
|
983
|
+
|
|
984
|
+
</li>
|
|
985
|
+
|
|
986
|
+
<li class="md-nav__item">
|
|
987
|
+
<a href="#cve-2024-32979" class="md-nav__link">
|
|
988
|
+
CVE-2024-32979
|
|
989
|
+
</a>
|
|
990
|
+
|
|
991
|
+
</li>
|
|
992
|
+
|
|
993
|
+
<li class="md-nav__item">
|
|
994
|
+
<a href="#cve-2024-29199" class="md-nav__link">
|
|
995
|
+
CVE-2024-29199
|
|
996
|
+
</a>
|
|
997
|
+
|
|
998
|
+
</li>
|
|
999
|
+
|
|
1000
|
+
<li class="md-nav__item">
|
|
1001
|
+
<a href="#cve-2024-23345" class="md-nav__link">
|
|
1002
|
+
CVE-2024-23345
|
|
1003
|
+
</a>
|
|
1004
|
+
|
|
1005
|
+
</li>
|
|
1006
|
+
|
|
1007
|
+
<li class="md-nav__item">
|
|
1008
|
+
<a href="#cve-2023-51649" class="md-nav__link">
|
|
1009
|
+
CVE-2023-51649
|
|
1010
|
+
</a>
|
|
1011
|
+
|
|
1012
|
+
</li>
|
|
1013
|
+
|
|
1014
|
+
<li class="md-nav__item">
|
|
1015
|
+
<a href="#cve-2023-50263" class="md-nav__link">
|
|
1016
|
+
CVE-2023-50263
|
|
1017
|
+
</a>
|
|
1018
|
+
|
|
1019
|
+
</li>
|
|
1020
|
+
|
|
1021
|
+
<li class="md-nav__item">
|
|
1022
|
+
<a href="#cve-2023-48705" class="md-nav__link">
|
|
1023
|
+
CVE-2023-48705
|
|
1024
|
+
</a>
|
|
1025
|
+
|
|
1026
|
+
</li>
|
|
1027
|
+
|
|
1028
|
+
<li class="md-nav__item">
|
|
1029
|
+
<a href="#cve-2023-46128" class="md-nav__link">
|
|
1030
|
+
CVE-2023-46128
|
|
1031
|
+
</a>
|
|
1032
|
+
|
|
1033
|
+
</li>
|
|
1034
|
+
|
|
1035
|
+
<li class="md-nav__item">
|
|
1036
|
+
<a href="#cve-2023-25657" class="md-nav__link">
|
|
1037
|
+
CVE-2023-25657
|
|
1038
|
+
</a>
|
|
1039
|
+
|
|
1040
|
+
</li>
|
|
1041
|
+
|
|
1042
|
+
</ul>
|
|
1043
|
+
|
|
1044
|
+
</nav>
|
|
1045
|
+
|
|
1046
|
+
</li>
|
|
1047
|
+
|
|
1048
|
+
|
|
1049
|
+
|
|
1050
|
+
|
|
1051
|
+
</ul>
|
|
1052
|
+
</nav>
|
|
1053
|
+
</li>
|
|
1054
|
+
|
|
1055
|
+
|
|
1056
|
+
|
|
1057
|
+
|
|
1058
|
+
</ul>
|
|
1059
|
+
</nav>
|
|
1060
|
+
</li>
|
|
1061
|
+
|
|
1062
|
+
|
|
1063
|
+
|
|
1064
|
+
|
|
1065
|
+
|
|
1066
|
+
|
|
1067
|
+
|
|
1068
|
+
|
|
1069
|
+
|
|
1070
|
+
|
|
1071
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
1072
|
+
|
|
1073
|
+
|
|
1074
|
+
|
|
1075
|
+
|
|
1076
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_6" >
|
|
1077
|
+
|
|
1078
|
+
|
|
1079
|
+
|
|
1080
|
+
<label class="md-nav__link" for="__nav_2_6" id="__nav_2_6_label" tabindex="0">
|
|
1081
|
+
User Guides
|
|
1082
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1083
|
+
</label>
|
|
1084
|
+
|
|
1085
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_6_label" aria-expanded="false">
|
|
1086
|
+
<label class="md-nav__title" for="__nav_2_6">
|
|
1087
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1088
|
+
User Guides
|
|
1089
|
+
</label>
|
|
1090
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
1091
|
+
|
|
1092
|
+
|
|
1093
|
+
|
|
1094
|
+
|
|
1095
|
+
|
|
1096
|
+
|
|
1097
|
+
<li class="md-nav__item">
|
|
1098
|
+
<a href="../../user-guides/getting-started/creating-devices.html" class="md-nav__link">
|
|
1099
|
+
Creating Devices
|
|
1100
|
+
</a>
|
|
1101
|
+
</li>
|
|
1102
|
+
|
|
1103
|
+
|
|
1104
|
+
|
|
1105
|
+
|
|
1106
|
+
|
|
1107
|
+
|
|
1108
|
+
|
|
1109
|
+
|
|
1110
|
+
|
|
1111
|
+
<li class="md-nav__item">
|
|
1112
|
+
<a href="../../user-guides/custom-fields.html" class="md-nav__link">
|
|
1113
|
+
Custom Fields
|
|
1114
|
+
</a>
|
|
1115
|
+
</li>
|
|
1116
|
+
|
|
1117
|
+
|
|
1118
|
+
|
|
1119
|
+
|
|
1120
|
+
|
|
1121
|
+
|
|
1122
|
+
|
|
1123
|
+
|
|
1124
|
+
|
|
1125
|
+
<li class="md-nav__item">
|
|
1126
|
+
<a href="../../user-guides/getting-started/index.html" class="md-nav__link">
|
|
1127
|
+
Getting Started In the Web UI
|
|
1128
|
+
</a>
|
|
1129
|
+
</li>
|
|
1130
|
+
|
|
1131
|
+
|
|
1132
|
+
|
|
1133
|
+
|
|
1134
|
+
|
|
1135
|
+
|
|
1136
|
+
|
|
1137
|
+
|
|
1138
|
+
|
|
1139
|
+
<li class="md-nav__item">
|
|
1140
|
+
<a href="../../user-guides/git-data-source.html" class="md-nav__link">
|
|
1141
|
+
Git as a Data Source
|
|
1142
|
+
</a>
|
|
1143
|
+
</li>
|
|
1144
|
+
|
|
1145
|
+
|
|
1146
|
+
|
|
1147
|
+
|
|
1148
|
+
|
|
1149
|
+
|
|
1150
|
+
|
|
1151
|
+
|
|
1152
|
+
|
|
1153
|
+
<li class="md-nav__item">
|
|
1154
|
+
<a href="../../user-guides/graphql.html" class="md-nav__link">
|
|
1155
|
+
GraphQL
|
|
1156
|
+
</a>
|
|
1157
|
+
</li>
|
|
1158
|
+
|
|
1159
|
+
|
|
1160
|
+
|
|
1161
|
+
|
|
1162
|
+
|
|
1163
|
+
|
|
1164
|
+
|
|
1165
|
+
|
|
1166
|
+
|
|
1167
|
+
<li class="md-nav__item">
|
|
1168
|
+
<a href="../../user-guides/getting-started/interfaces.html" class="md-nav__link">
|
|
1169
|
+
Interfaces
|
|
1170
|
+
</a>
|
|
1171
|
+
</li>
|
|
1172
|
+
|
|
1173
|
+
|
|
1174
|
+
|
|
1175
|
+
|
|
1176
|
+
|
|
1177
|
+
|
|
1178
|
+
|
|
1179
|
+
|
|
1180
|
+
|
|
1181
|
+
<li class="md-nav__item">
|
|
1182
|
+
<a href="../../user-guides/getting-started/ipam.html" class="md-nav__link">
|
|
1183
|
+
IP Address Management
|
|
1184
|
+
</a>
|
|
1185
|
+
</li>
|
|
1186
|
+
|
|
1187
|
+
|
|
1188
|
+
|
|
1189
|
+
|
|
1190
|
+
|
|
1191
|
+
|
|
1192
|
+
|
|
1193
|
+
|
|
1194
|
+
|
|
1195
|
+
<li class="md-nav__item">
|
|
1196
|
+
<a href="../../user-guides/getting-started/platforms.html" class="md-nav__link">
|
|
1197
|
+
Platforms
|
|
1198
|
+
</a>
|
|
1199
|
+
</li>
|
|
1200
|
+
|
|
1201
|
+
|
|
1202
|
+
|
|
1203
|
+
|
|
1204
|
+
|
|
1205
|
+
|
|
1206
|
+
|
|
1207
|
+
|
|
1208
|
+
|
|
1209
|
+
<li class="md-nav__item">
|
|
1210
|
+
<a href="../../user-guides/getting-started/regions.html" class="md-nav__link">
|
|
1211
|
+
Regions
|
|
1212
|
+
</a>
|
|
1213
|
+
</li>
|
|
1214
|
+
|
|
1215
|
+
|
|
1216
|
+
|
|
1217
|
+
|
|
1218
|
+
|
|
1219
|
+
|
|
1220
|
+
|
|
1221
|
+
|
|
1222
|
+
|
|
1223
|
+
<li class="md-nav__item">
|
|
1224
|
+
<a href="../../user-guides/getting-started/tenants.html" class="md-nav__link">
|
|
1225
|
+
Tenants
|
|
1226
|
+
</a>
|
|
1227
|
+
</li>
|
|
1228
|
+
|
|
1229
|
+
|
|
1230
|
+
|
|
1231
|
+
|
|
1232
|
+
|
|
1233
|
+
|
|
1234
|
+
|
|
1235
|
+
|
|
1236
|
+
|
|
1237
|
+
<li class="md-nav__item">
|
|
1238
|
+
<a href="../../user-guides/getting-started/search-bar.html" class="md-nav__link">
|
|
1239
|
+
The Search Bar
|
|
1240
|
+
</a>
|
|
1241
|
+
</li>
|
|
1242
|
+
|
|
1243
|
+
|
|
1244
|
+
|
|
1245
|
+
|
|
1246
|
+
|
|
1247
|
+
|
|
1248
|
+
|
|
1249
|
+
|
|
1250
|
+
|
|
1251
|
+
<li class="md-nav__item">
|
|
1252
|
+
<a href="../../user-guides/git-data-source.html" class="md-nav__link">
|
|
1253
|
+
Git as a Data Source
|
|
1254
|
+
</a>
|
|
1255
|
+
</li>
|
|
1256
|
+
|
|
1257
|
+
|
|
1258
|
+
|
|
1259
|
+
|
|
1260
|
+
|
|
1261
|
+
|
|
1262
|
+
|
|
1263
|
+
|
|
1264
|
+
|
|
1265
|
+
<li class="md-nav__item">
|
|
1266
|
+
<a href="../../user-guides/graphql.html" class="md-nav__link">
|
|
1267
|
+
GraphQL
|
|
1268
|
+
</a>
|
|
1269
|
+
</li>
|
|
1270
|
+
|
|
1271
|
+
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
|
|
1275
|
+
|
|
1276
|
+
|
|
1277
|
+
|
|
1278
|
+
|
|
1279
|
+
<li class="md-nav__item">
|
|
1280
|
+
<a href="../../user-guides/relationships.html" class="md-nav__link">
|
|
1281
|
+
Relationships
|
|
1282
|
+
</a>
|
|
1283
|
+
</li>
|
|
1284
|
+
|
|
1285
|
+
|
|
1286
|
+
|
|
1287
|
+
|
|
1288
|
+
|
|
1289
|
+
|
|
1290
|
+
|
|
1291
|
+
|
|
1292
|
+
|
|
1293
|
+
<li class="md-nav__item">
|
|
1294
|
+
<a href="../../user-guides/s3-django-storage.html" class="md-nav__link">
|
|
1295
|
+
Django Storages with S3
|
|
1296
|
+
</a>
|
|
1297
|
+
</li>
|
|
1298
|
+
|
|
1299
|
+
|
|
1300
|
+
|
|
1301
|
+
|
|
1302
|
+
|
|
1303
|
+
|
|
1304
|
+
|
|
1305
|
+
|
|
1306
|
+
|
|
1307
|
+
<li class="md-nav__item">
|
|
1308
|
+
<a href="../../user-guides/getting-started/vlans-and-vlan-groups.html" class="md-nav__link">
|
|
1309
|
+
VLANS and VLAN Groups
|
|
1310
|
+
</a>
|
|
1311
|
+
</li>
|
|
1312
|
+
|
|
1313
|
+
|
|
1314
|
+
|
|
1315
|
+
|
|
1316
|
+
</ul>
|
|
1317
|
+
</nav>
|
|
1318
|
+
</li>
|
|
1319
|
+
|
|
1320
|
+
|
|
1321
|
+
|
|
1322
|
+
|
|
1323
|
+
|
|
1324
|
+
|
|
1325
|
+
|
|
1326
|
+
|
|
1327
|
+
|
|
1328
|
+
|
|
1329
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
1330
|
+
|
|
1331
|
+
|
|
1332
|
+
|
|
1333
|
+
|
|
1334
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_7" >
|
|
1335
|
+
|
|
1336
|
+
|
|
1337
|
+
|
|
1338
|
+
<label class="md-nav__link" for="__nav_2_7" id="__nav_2_7_label" tabindex="0">
|
|
1339
|
+
Core Functionality
|
|
1340
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1341
|
+
</label>
|
|
1342
|
+
|
|
1343
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_7_label" aria-expanded="false">
|
|
1344
|
+
<label class="md-nav__title" for="__nav_2_7">
|
|
1345
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1346
|
+
Core Functionality
|
|
1347
|
+
</label>
|
|
1348
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
1349
|
+
|
|
1350
|
+
|
|
1351
|
+
|
|
1352
|
+
|
|
1353
|
+
|
|
1354
|
+
|
|
1355
|
+
<li class="md-nav__item">
|
|
1356
|
+
<a href="../../core-functionality/circuits.html" class="md-nav__link">
|
|
1357
|
+
Circuits
|
|
1358
|
+
</a>
|
|
1359
|
+
</li>
|
|
1360
|
+
|
|
1361
|
+
|
|
1362
|
+
|
|
1363
|
+
|
|
1364
|
+
|
|
1365
|
+
|
|
1366
|
+
|
|
1367
|
+
|
|
1368
|
+
|
|
1369
|
+
<li class="md-nav__item">
|
|
1370
|
+
<a href="../../core-functionality/devices.html" class="md-nav__link">
|
|
1371
|
+
Devices and Cabling
|
|
1372
|
+
</a>
|
|
1373
|
+
</li>
|
|
1374
|
+
|
|
1375
|
+
|
|
1376
|
+
|
|
1377
|
+
|
|
1378
|
+
|
|
1379
|
+
|
|
1380
|
+
|
|
1381
|
+
|
|
1382
|
+
|
|
1383
|
+
<li class="md-nav__item">
|
|
1384
|
+
<a href="../../core-functionality/device-types.html" class="md-nav__link">
|
|
1385
|
+
Device Types
|
|
1386
|
+
</a>
|
|
1387
|
+
</li>
|
|
1388
|
+
|
|
1389
|
+
|
|
1390
|
+
|
|
1391
|
+
|
|
1392
|
+
|
|
1393
|
+
|
|
1394
|
+
|
|
1395
|
+
|
|
1396
|
+
|
|
1397
|
+
<li class="md-nav__item">
|
|
1398
|
+
<a href="../../core-functionality/ipam.html" class="md-nav__link">
|
|
1399
|
+
IP Address Management
|
|
1400
|
+
</a>
|
|
1401
|
+
</li>
|
|
1402
|
+
|
|
1403
|
+
|
|
1404
|
+
|
|
1405
|
+
|
|
1406
|
+
|
|
1407
|
+
|
|
1408
|
+
|
|
1409
|
+
|
|
1410
|
+
|
|
1411
|
+
<li class="md-nav__item">
|
|
1412
|
+
<a href="../../core-functionality/power.html" class="md-nav__link">
|
|
1413
|
+
Power Tracking
|
|
1414
|
+
</a>
|
|
1415
|
+
</li>
|
|
1416
|
+
|
|
1417
|
+
|
|
1418
|
+
|
|
1419
|
+
|
|
1420
|
+
|
|
1421
|
+
|
|
1422
|
+
|
|
1423
|
+
|
|
1424
|
+
|
|
1425
|
+
<li class="md-nav__item">
|
|
1426
|
+
<a href="../../core-functionality/secrets.html" class="md-nav__link">
|
|
1427
|
+
Secrets
|
|
1428
|
+
</a>
|
|
1429
|
+
</li>
|
|
1430
|
+
|
|
1431
|
+
|
|
1432
|
+
|
|
1433
|
+
|
|
1434
|
+
|
|
1435
|
+
|
|
1436
|
+
|
|
1437
|
+
|
|
1438
|
+
|
|
1439
|
+
<li class="md-nav__item">
|
|
1440
|
+
<a href="../../core-functionality/services.html" class="md-nav__link">
|
|
1441
|
+
Service Mapping
|
|
1442
|
+
</a>
|
|
1443
|
+
</li>
|
|
1444
|
+
|
|
1445
|
+
|
|
1446
|
+
|
|
1447
|
+
|
|
1448
|
+
|
|
1449
|
+
|
|
1450
|
+
|
|
1451
|
+
|
|
1452
|
+
|
|
1453
|
+
<li class="md-nav__item">
|
|
1454
|
+
<a href="../../core-functionality/sites-and-racks.html" class="md-nav__link">
|
|
1455
|
+
Sites, Locations, and Racks
|
|
1456
|
+
</a>
|
|
1457
|
+
</li>
|
|
1458
|
+
|
|
1459
|
+
|
|
1460
|
+
|
|
1461
|
+
|
|
1462
|
+
|
|
1463
|
+
|
|
1464
|
+
|
|
1465
|
+
|
|
1466
|
+
|
|
1467
|
+
<li class="md-nav__item">
|
|
1468
|
+
<a href="../../core-functionality/tenancy.html" class="md-nav__link">
|
|
1469
|
+
Tenancy
|
|
1470
|
+
</a>
|
|
1471
|
+
</li>
|
|
1472
|
+
|
|
1473
|
+
|
|
1474
|
+
|
|
1475
|
+
|
|
1476
|
+
|
|
1477
|
+
|
|
1478
|
+
|
|
1479
|
+
|
|
1480
|
+
|
|
1481
|
+
<li class="md-nav__item">
|
|
1482
|
+
<a href="../../core-functionality/virtualization.html" class="md-nav__link">
|
|
1483
|
+
Virtualization
|
|
1484
|
+
</a>
|
|
1485
|
+
</li>
|
|
1486
|
+
|
|
1487
|
+
|
|
1488
|
+
|
|
1489
|
+
|
|
1490
|
+
|
|
1491
|
+
|
|
1492
|
+
|
|
1493
|
+
|
|
1494
|
+
|
|
1495
|
+
<li class="md-nav__item">
|
|
1496
|
+
<a href="../../core-functionality/vlans.html" class="md-nav__link">
|
|
1497
|
+
VLAN Management
|
|
1498
|
+
</a>
|
|
1499
|
+
</li>
|
|
1500
|
+
|
|
1501
|
+
|
|
1502
|
+
|
|
1503
|
+
|
|
1504
|
+
</ul>
|
|
1505
|
+
</nav>
|
|
1506
|
+
</li>
|
|
1507
|
+
|
|
1508
|
+
|
|
1509
|
+
|
|
1510
|
+
|
|
1511
|
+
|
|
1512
|
+
|
|
1513
|
+
|
|
1514
|
+
|
|
1515
|
+
|
|
1516
|
+
|
|
1517
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
1518
|
+
|
|
1519
|
+
|
|
1520
|
+
|
|
1521
|
+
|
|
1522
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_8" >
|
|
1523
|
+
|
|
1524
|
+
|
|
1525
|
+
|
|
1526
|
+
<label class="md-nav__link" for="__nav_2_8" id="__nav_2_8_label" tabindex="0">
|
|
1527
|
+
Model Details
|
|
1528
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1529
|
+
</label>
|
|
1530
|
+
|
|
1531
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_8_label" aria-expanded="false">
|
|
1532
|
+
<label class="md-nav__title" for="__nav_2_8">
|
|
1533
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1534
|
+
Model Details
|
|
1535
|
+
</label>
|
|
1536
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
1537
|
+
|
|
1538
|
+
|
|
1539
|
+
|
|
1540
|
+
|
|
1541
|
+
|
|
1542
|
+
|
|
1543
|
+
|
|
1544
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
1545
|
+
|
|
1546
|
+
|
|
1547
|
+
|
|
1548
|
+
|
|
1549
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_8_1" >
|
|
1550
|
+
|
|
1551
|
+
|
|
1552
|
+
|
|
1553
|
+
<label class="md-nav__link" for="__nav_2_8_1" id="__nav_2_8_1_label" tabindex="0">
|
|
1554
|
+
Circuits
|
|
1555
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1556
|
+
</label>
|
|
1557
|
+
|
|
1558
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_8_1_label" aria-expanded="false">
|
|
1559
|
+
<label class="md-nav__title" for="__nav_2_8_1">
|
|
1560
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1561
|
+
Circuits
|
|
1562
|
+
</label>
|
|
1563
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
1564
|
+
|
|
1565
|
+
|
|
1566
|
+
|
|
1567
|
+
|
|
1568
|
+
|
|
1569
|
+
|
|
1570
|
+
<li class="md-nav__item">
|
|
1571
|
+
<a href="../../models/circuits/circuit.html" class="md-nav__link">
|
|
1572
|
+
Circuit
|
|
1573
|
+
</a>
|
|
1574
|
+
</li>
|
|
1575
|
+
|
|
1576
|
+
|
|
1577
|
+
|
|
1578
|
+
|
|
1579
|
+
|
|
1580
|
+
|
|
1581
|
+
|
|
1582
|
+
|
|
1583
|
+
|
|
1584
|
+
<li class="md-nav__item">
|
|
1585
|
+
<a href="../../models/circuits/circuittermination.html" class="md-nav__link">
|
|
1586
|
+
Circuit Termination
|
|
1587
|
+
</a>
|
|
1588
|
+
</li>
|
|
1589
|
+
|
|
1590
|
+
|
|
1591
|
+
|
|
1592
|
+
|
|
1593
|
+
|
|
1594
|
+
|
|
1595
|
+
|
|
1596
|
+
|
|
1597
|
+
|
|
1598
|
+
<li class="md-nav__item">
|
|
1599
|
+
<a href="../../models/circuits/circuittype.html" class="md-nav__link">
|
|
1600
|
+
Circuit Type
|
|
1601
|
+
</a>
|
|
1602
|
+
</li>
|
|
1603
|
+
|
|
1604
|
+
|
|
1605
|
+
|
|
1606
|
+
|
|
1607
|
+
|
|
1608
|
+
|
|
1609
|
+
|
|
1610
|
+
|
|
1611
|
+
|
|
1612
|
+
<li class="md-nav__item">
|
|
1613
|
+
<a href="../../models/circuits/provider.html" class="md-nav__link">
|
|
1614
|
+
Circuit Provider
|
|
1615
|
+
</a>
|
|
1616
|
+
</li>
|
|
1617
|
+
|
|
1618
|
+
|
|
1619
|
+
|
|
1620
|
+
|
|
1621
|
+
|
|
1622
|
+
|
|
1623
|
+
|
|
1624
|
+
|
|
1625
|
+
|
|
1626
|
+
<li class="md-nav__item">
|
|
1627
|
+
<a href="../../models/circuits/providernetwork.html" class="md-nav__link">
|
|
1628
|
+
Circuit Provider Network
|
|
1629
|
+
</a>
|
|
1630
|
+
</li>
|
|
1631
|
+
|
|
1632
|
+
|
|
1633
|
+
|
|
1634
|
+
|
|
1635
|
+
</ul>
|
|
1636
|
+
</nav>
|
|
1637
|
+
</li>
|
|
1638
|
+
|
|
1639
|
+
|
|
1640
|
+
|
|
1641
|
+
|
|
1642
|
+
|
|
1643
|
+
|
|
1644
|
+
|
|
1645
|
+
|
|
1646
|
+
|
|
1647
|
+
|
|
1648
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
1649
|
+
|
|
1650
|
+
|
|
1651
|
+
|
|
1652
|
+
|
|
1653
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_8_2" >
|
|
1654
|
+
|
|
1655
|
+
|
|
1656
|
+
|
|
1657
|
+
<label class="md-nav__link" for="__nav_2_8_2" id="__nav_2_8_2_label" tabindex="0">
|
|
1658
|
+
DCIM
|
|
1659
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1660
|
+
</label>
|
|
1661
|
+
|
|
1662
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_8_2_label" aria-expanded="false">
|
|
1663
|
+
<label class="md-nav__title" for="__nav_2_8_2">
|
|
1664
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1665
|
+
DCIM
|
|
1666
|
+
</label>
|
|
1667
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
1668
|
+
|
|
1669
|
+
|
|
1670
|
+
|
|
1671
|
+
|
|
1672
|
+
|
|
1673
|
+
|
|
1674
|
+
<li class="md-nav__item">
|
|
1675
|
+
<a href="../../models/dcim/cable.html" class="md-nav__link">
|
|
1676
|
+
Cable
|
|
1677
|
+
</a>
|
|
1678
|
+
</li>
|
|
1679
|
+
|
|
1680
|
+
|
|
1681
|
+
|
|
1682
|
+
|
|
1683
|
+
|
|
1684
|
+
|
|
1685
|
+
|
|
1686
|
+
|
|
1687
|
+
|
|
1688
|
+
<li class="md-nav__item">
|
|
1689
|
+
<a href="../../models/dcim/consoleport.html" class="md-nav__link">
|
|
1690
|
+
Console Port
|
|
1691
|
+
</a>
|
|
1692
|
+
</li>
|
|
1693
|
+
|
|
1694
|
+
|
|
1695
|
+
|
|
1696
|
+
|
|
1697
|
+
|
|
1698
|
+
|
|
1699
|
+
|
|
1700
|
+
|
|
1701
|
+
|
|
1702
|
+
<li class="md-nav__item">
|
|
1703
|
+
<a href="../../models/dcim/consoleporttemplate.html" class="md-nav__link">
|
|
1704
|
+
Console Port Template
|
|
1705
|
+
</a>
|
|
1706
|
+
</li>
|
|
1707
|
+
|
|
1708
|
+
|
|
1709
|
+
|
|
1710
|
+
|
|
1711
|
+
|
|
1712
|
+
|
|
1713
|
+
|
|
1714
|
+
|
|
1715
|
+
|
|
1716
|
+
<li class="md-nav__item">
|
|
1717
|
+
<a href="../../models/dcim/consoleserverport.html" class="md-nav__link">
|
|
1718
|
+
Console Server Port
|
|
1719
|
+
</a>
|
|
1720
|
+
</li>
|
|
1721
|
+
|
|
1722
|
+
|
|
1723
|
+
|
|
1724
|
+
|
|
1725
|
+
|
|
1726
|
+
|
|
1727
|
+
|
|
1728
|
+
|
|
1729
|
+
|
|
1730
|
+
<li class="md-nav__item">
|
|
1731
|
+
<a href="../../models/dcim/consoleserverporttemplate.html" class="md-nav__link">
|
|
1732
|
+
Console Server Port Template
|
|
1733
|
+
</a>
|
|
1734
|
+
</li>
|
|
1735
|
+
|
|
1736
|
+
|
|
1737
|
+
|
|
1738
|
+
|
|
1739
|
+
|
|
1740
|
+
|
|
1741
|
+
|
|
1742
|
+
|
|
1743
|
+
|
|
1744
|
+
<li class="md-nav__item">
|
|
1745
|
+
<a href="../../models/dcim/device.html" class="md-nav__link">
|
|
1746
|
+
Device
|
|
1747
|
+
</a>
|
|
1748
|
+
</li>
|
|
1749
|
+
|
|
1750
|
+
|
|
1751
|
+
|
|
1752
|
+
|
|
1753
|
+
|
|
1754
|
+
|
|
1755
|
+
|
|
1756
|
+
|
|
1757
|
+
|
|
1758
|
+
<li class="md-nav__item">
|
|
1759
|
+
<a href="../../models/dcim/devicebay.html" class="md-nav__link">
|
|
1760
|
+
Device Bay
|
|
1761
|
+
</a>
|
|
1762
|
+
</li>
|
|
1763
|
+
|
|
1764
|
+
|
|
1765
|
+
|
|
1766
|
+
|
|
1767
|
+
|
|
1768
|
+
|
|
1769
|
+
|
|
1770
|
+
|
|
1771
|
+
|
|
1772
|
+
<li class="md-nav__item">
|
|
1773
|
+
<a href="../../models/dcim/devicebaytemplate.html" class="md-nav__link">
|
|
1774
|
+
Device Bay Template
|
|
1775
|
+
</a>
|
|
1776
|
+
</li>
|
|
1777
|
+
|
|
1778
|
+
|
|
1779
|
+
|
|
1780
|
+
|
|
1781
|
+
|
|
1782
|
+
|
|
1783
|
+
|
|
1784
|
+
|
|
1785
|
+
|
|
1786
|
+
<li class="md-nav__item">
|
|
1787
|
+
<a href="../../models/dcim/deviceredundancygroup.html" class="md-nav__link">
|
|
1788
|
+
Device Redundancy Group
|
|
1789
|
+
</a>
|
|
1790
|
+
</li>
|
|
1791
|
+
|
|
1792
|
+
|
|
1793
|
+
|
|
1794
|
+
|
|
1795
|
+
|
|
1796
|
+
|
|
1797
|
+
|
|
1798
|
+
|
|
1799
|
+
|
|
1800
|
+
<li class="md-nav__item">
|
|
1801
|
+
<a href="../../models/dcim/devicerole.html" class="md-nav__link">
|
|
1802
|
+
Device Role
|
|
1803
|
+
</a>
|
|
1804
|
+
</li>
|
|
1805
|
+
|
|
1806
|
+
|
|
1807
|
+
|
|
1808
|
+
|
|
1809
|
+
|
|
1810
|
+
|
|
1811
|
+
|
|
1812
|
+
|
|
1813
|
+
|
|
1814
|
+
<li class="md-nav__item">
|
|
1815
|
+
<a href="../../models/dcim/devicetype.html" class="md-nav__link">
|
|
1816
|
+
Device Type
|
|
1817
|
+
</a>
|
|
1818
|
+
</li>
|
|
1819
|
+
|
|
1820
|
+
|
|
1821
|
+
|
|
1822
|
+
|
|
1823
|
+
|
|
1824
|
+
|
|
1825
|
+
|
|
1826
|
+
|
|
1827
|
+
|
|
1828
|
+
<li class="md-nav__item">
|
|
1829
|
+
<a href="../../models/dcim/frontport.html" class="md-nav__link">
|
|
1830
|
+
Front Port
|
|
1831
|
+
</a>
|
|
1832
|
+
</li>
|
|
1833
|
+
|
|
1834
|
+
|
|
1835
|
+
|
|
1836
|
+
|
|
1837
|
+
|
|
1838
|
+
|
|
1839
|
+
|
|
1840
|
+
|
|
1841
|
+
|
|
1842
|
+
<li class="md-nav__item">
|
|
1843
|
+
<a href="../../models/dcim/frontporttemplate.html" class="md-nav__link">
|
|
1844
|
+
Front Port Template
|
|
1845
|
+
</a>
|
|
1846
|
+
</li>
|
|
1847
|
+
|
|
1848
|
+
|
|
1849
|
+
|
|
1850
|
+
|
|
1851
|
+
|
|
1852
|
+
|
|
1853
|
+
|
|
1854
|
+
|
|
1855
|
+
|
|
1856
|
+
<li class="md-nav__item">
|
|
1857
|
+
<a href="../../models/dcim/interface.html" class="md-nav__link">
|
|
1858
|
+
Interface
|
|
1859
|
+
</a>
|
|
1860
|
+
</li>
|
|
1861
|
+
|
|
1862
|
+
|
|
1863
|
+
|
|
1864
|
+
|
|
1865
|
+
|
|
1866
|
+
|
|
1867
|
+
|
|
1868
|
+
|
|
1869
|
+
|
|
1870
|
+
<li class="md-nav__item">
|
|
1871
|
+
<a href="../../models/dcim/interfaceredundancygroup.html" class="md-nav__link">
|
|
1872
|
+
Interface Redundancy Group
|
|
1873
|
+
</a>
|
|
1874
|
+
</li>
|
|
1875
|
+
|
|
1876
|
+
|
|
1877
|
+
|
|
1878
|
+
|
|
1879
|
+
|
|
1880
|
+
|
|
1881
|
+
|
|
1882
|
+
|
|
1883
|
+
|
|
1884
|
+
<li class="md-nav__item">
|
|
1885
|
+
<a href="../../models/dcim/interfacetemplate.html" class="md-nav__link">
|
|
1886
|
+
Interface Template
|
|
1887
|
+
</a>
|
|
1888
|
+
</li>
|
|
1889
|
+
|
|
1890
|
+
|
|
1891
|
+
|
|
1892
|
+
|
|
1893
|
+
|
|
1894
|
+
|
|
1895
|
+
|
|
1896
|
+
|
|
1897
|
+
|
|
1898
|
+
<li class="md-nav__item">
|
|
1899
|
+
<a href="../../models/dcim/inventoryitem.html" class="md-nav__link">
|
|
1900
|
+
Inventory Item
|
|
1901
|
+
</a>
|
|
1902
|
+
</li>
|
|
1903
|
+
|
|
1904
|
+
|
|
1905
|
+
|
|
1906
|
+
|
|
1907
|
+
|
|
1908
|
+
|
|
1909
|
+
|
|
1910
|
+
|
|
1911
|
+
|
|
1912
|
+
<li class="md-nav__item">
|
|
1913
|
+
<a href="../../models/dcim/location.html" class="md-nav__link">
|
|
1914
|
+
Location
|
|
1915
|
+
</a>
|
|
1916
|
+
</li>
|
|
1917
|
+
|
|
1918
|
+
|
|
1919
|
+
|
|
1920
|
+
|
|
1921
|
+
|
|
1922
|
+
|
|
1923
|
+
|
|
1924
|
+
|
|
1925
|
+
|
|
1926
|
+
<li class="md-nav__item">
|
|
1927
|
+
<a href="../../models/dcim/locationtype.html" class="md-nav__link">
|
|
1928
|
+
Location Type
|
|
1929
|
+
</a>
|
|
1930
|
+
</li>
|
|
1931
|
+
|
|
1932
|
+
|
|
1933
|
+
|
|
1934
|
+
|
|
1935
|
+
|
|
1936
|
+
|
|
1937
|
+
|
|
1938
|
+
|
|
1939
|
+
|
|
1940
|
+
<li class="md-nav__item">
|
|
1941
|
+
<a href="../../models/dcim/manufacturer.html" class="md-nav__link">
|
|
1942
|
+
Manufacturer
|
|
1943
|
+
</a>
|
|
1944
|
+
</li>
|
|
1945
|
+
|
|
1946
|
+
|
|
1947
|
+
|
|
1948
|
+
|
|
1949
|
+
|
|
1950
|
+
|
|
1951
|
+
|
|
1952
|
+
|
|
1953
|
+
|
|
1954
|
+
<li class="md-nav__item">
|
|
1955
|
+
<a href="../../models/dcim/platform.html" class="md-nav__link">
|
|
1956
|
+
Platform
|
|
1957
|
+
</a>
|
|
1958
|
+
</li>
|
|
1959
|
+
|
|
1960
|
+
|
|
1961
|
+
|
|
1962
|
+
|
|
1963
|
+
|
|
1964
|
+
|
|
1965
|
+
|
|
1966
|
+
|
|
1967
|
+
|
|
1968
|
+
<li class="md-nav__item">
|
|
1969
|
+
<a href="../../models/dcim/powerfeed.html" class="md-nav__link">
|
|
1970
|
+
Power Feed
|
|
1971
|
+
</a>
|
|
1972
|
+
</li>
|
|
1973
|
+
|
|
1974
|
+
|
|
1975
|
+
|
|
1976
|
+
|
|
1977
|
+
|
|
1978
|
+
|
|
1979
|
+
|
|
1980
|
+
|
|
1981
|
+
|
|
1982
|
+
<li class="md-nav__item">
|
|
1983
|
+
<a href="../../models/dcim/poweroutlet.html" class="md-nav__link">
|
|
1984
|
+
Power Outlet
|
|
1985
|
+
</a>
|
|
1986
|
+
</li>
|
|
1987
|
+
|
|
1988
|
+
|
|
1989
|
+
|
|
1990
|
+
|
|
1991
|
+
|
|
1992
|
+
|
|
1993
|
+
|
|
1994
|
+
|
|
1995
|
+
|
|
1996
|
+
<li class="md-nav__item">
|
|
1997
|
+
<a href="../../models/dcim/poweroutlettemplate.html" class="md-nav__link">
|
|
1998
|
+
Power Outlet Template
|
|
1999
|
+
</a>
|
|
2000
|
+
</li>
|
|
2001
|
+
|
|
2002
|
+
|
|
2003
|
+
|
|
2004
|
+
|
|
2005
|
+
|
|
2006
|
+
|
|
2007
|
+
|
|
2008
|
+
|
|
2009
|
+
|
|
2010
|
+
<li class="md-nav__item">
|
|
2011
|
+
<a href="../../models/dcim/powerpanel.html" class="md-nav__link">
|
|
2012
|
+
Power Panel
|
|
2013
|
+
</a>
|
|
2014
|
+
</li>
|
|
2015
|
+
|
|
2016
|
+
|
|
2017
|
+
|
|
2018
|
+
|
|
2019
|
+
|
|
2020
|
+
|
|
2021
|
+
|
|
2022
|
+
|
|
2023
|
+
|
|
2024
|
+
<li class="md-nav__item">
|
|
2025
|
+
<a href="../../models/dcim/powerport.html" class="md-nav__link">
|
|
2026
|
+
Power Port
|
|
2027
|
+
</a>
|
|
2028
|
+
</li>
|
|
2029
|
+
|
|
2030
|
+
|
|
2031
|
+
|
|
2032
|
+
|
|
2033
|
+
|
|
2034
|
+
|
|
2035
|
+
|
|
2036
|
+
|
|
2037
|
+
|
|
2038
|
+
<li class="md-nav__item">
|
|
2039
|
+
<a href="../../models/dcim/powerporttemplate.html" class="md-nav__link">
|
|
2040
|
+
Power Port Template
|
|
2041
|
+
</a>
|
|
2042
|
+
</li>
|
|
2043
|
+
|
|
2044
|
+
|
|
2045
|
+
|
|
2046
|
+
|
|
2047
|
+
|
|
2048
|
+
|
|
2049
|
+
|
|
2050
|
+
|
|
2051
|
+
|
|
2052
|
+
<li class="md-nav__item">
|
|
2053
|
+
<a href="../../models/dcim/rack.html" class="md-nav__link">
|
|
2054
|
+
Rack
|
|
2055
|
+
</a>
|
|
2056
|
+
</li>
|
|
2057
|
+
|
|
2058
|
+
|
|
2059
|
+
|
|
2060
|
+
|
|
2061
|
+
|
|
2062
|
+
|
|
2063
|
+
|
|
2064
|
+
|
|
2065
|
+
|
|
2066
|
+
<li class="md-nav__item">
|
|
2067
|
+
<a href="../../models/dcim/rackgroup.html" class="md-nav__link">
|
|
2068
|
+
Rack Group
|
|
2069
|
+
</a>
|
|
2070
|
+
</li>
|
|
2071
|
+
|
|
2072
|
+
|
|
2073
|
+
|
|
2074
|
+
|
|
2075
|
+
|
|
2076
|
+
|
|
2077
|
+
|
|
2078
|
+
|
|
2079
|
+
|
|
2080
|
+
<li class="md-nav__item">
|
|
2081
|
+
<a href="../../models/dcim/rackreservation.html" class="md-nav__link">
|
|
2082
|
+
Rack Reservation
|
|
2083
|
+
</a>
|
|
2084
|
+
</li>
|
|
2085
|
+
|
|
2086
|
+
|
|
2087
|
+
|
|
2088
|
+
|
|
2089
|
+
|
|
2090
|
+
|
|
2091
|
+
|
|
2092
|
+
|
|
2093
|
+
|
|
2094
|
+
<li class="md-nav__item">
|
|
2095
|
+
<a href="../../models/dcim/rackrole.html" class="md-nav__link">
|
|
2096
|
+
Rack Role
|
|
2097
|
+
</a>
|
|
2098
|
+
</li>
|
|
2099
|
+
|
|
2100
|
+
|
|
2101
|
+
|
|
2102
|
+
|
|
2103
|
+
|
|
2104
|
+
|
|
2105
|
+
|
|
2106
|
+
|
|
2107
|
+
|
|
2108
|
+
<li class="md-nav__item">
|
|
2109
|
+
<a href="../../models/dcim/rearport.html" class="md-nav__link">
|
|
2110
|
+
Rear Port
|
|
2111
|
+
</a>
|
|
2112
|
+
</li>
|
|
2113
|
+
|
|
2114
|
+
|
|
2115
|
+
|
|
2116
|
+
|
|
2117
|
+
|
|
2118
|
+
|
|
2119
|
+
|
|
2120
|
+
|
|
2121
|
+
|
|
2122
|
+
<li class="md-nav__item">
|
|
2123
|
+
<a href="../../models/dcim/rearporttemplate.html" class="md-nav__link">
|
|
2124
|
+
Rear Port Template
|
|
2125
|
+
</a>
|
|
2126
|
+
</li>
|
|
2127
|
+
|
|
2128
|
+
|
|
2129
|
+
|
|
2130
|
+
|
|
2131
|
+
|
|
2132
|
+
|
|
2133
|
+
|
|
2134
|
+
|
|
2135
|
+
|
|
2136
|
+
<li class="md-nav__item">
|
|
2137
|
+
<a href="../../models/dcim/region.html" class="md-nav__link">
|
|
2138
|
+
Region
|
|
2139
|
+
</a>
|
|
2140
|
+
</li>
|
|
2141
|
+
|
|
2142
|
+
|
|
2143
|
+
|
|
2144
|
+
|
|
2145
|
+
|
|
2146
|
+
|
|
2147
|
+
|
|
2148
|
+
|
|
2149
|
+
|
|
2150
|
+
<li class="md-nav__item">
|
|
2151
|
+
<a href="../../models/dcim/site.html" class="md-nav__link">
|
|
2152
|
+
Site
|
|
2153
|
+
</a>
|
|
2154
|
+
</li>
|
|
2155
|
+
|
|
2156
|
+
|
|
2157
|
+
|
|
2158
|
+
|
|
2159
|
+
|
|
2160
|
+
|
|
2161
|
+
|
|
2162
|
+
|
|
2163
|
+
|
|
2164
|
+
<li class="md-nav__item">
|
|
2165
|
+
<a href="../../models/dcim/virtualchassis.html" class="md-nav__link">
|
|
2166
|
+
Virtual Chassis
|
|
2167
|
+
</a>
|
|
2168
|
+
</li>
|
|
2169
|
+
|
|
2170
|
+
|
|
2171
|
+
|
|
2172
|
+
|
|
2173
|
+
</ul>
|
|
2174
|
+
</nav>
|
|
2175
|
+
</li>
|
|
2176
|
+
|
|
2177
|
+
|
|
2178
|
+
|
|
2179
|
+
|
|
2180
|
+
|
|
2181
|
+
|
|
2182
|
+
|
|
2183
|
+
|
|
2184
|
+
|
|
2185
|
+
|
|
2186
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
2187
|
+
|
|
2188
|
+
|
|
2189
|
+
|
|
2190
|
+
|
|
2191
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_8_3" >
|
|
2192
|
+
|
|
2193
|
+
|
|
2194
|
+
|
|
2195
|
+
<label class="md-nav__link" for="__nav_2_8_3" id="__nav_2_8_3_label" tabindex="0">
|
|
2196
|
+
Extras
|
|
2197
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2198
|
+
</label>
|
|
2199
|
+
|
|
2200
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_8_3_label" aria-expanded="false">
|
|
2201
|
+
<label class="md-nav__title" for="__nav_2_8_3">
|
|
2202
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2203
|
+
Extras
|
|
2204
|
+
</label>
|
|
2205
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
2206
|
+
|
|
2207
|
+
|
|
2208
|
+
|
|
2209
|
+
|
|
2210
|
+
|
|
2211
|
+
|
|
2212
|
+
<li class="md-nav__item">
|
|
2213
|
+
<a href="../../models/extras/configcontext.html" class="md-nav__link">
|
|
2214
|
+
Config Context
|
|
2215
|
+
</a>
|
|
2216
|
+
</li>
|
|
2217
|
+
|
|
2218
|
+
|
|
2219
|
+
|
|
2220
|
+
|
|
2221
|
+
|
|
2222
|
+
|
|
2223
|
+
|
|
2224
|
+
|
|
2225
|
+
|
|
2226
|
+
<li class="md-nav__item">
|
|
2227
|
+
<a href="../../models/extras/configcontextschema.html" class="md-nav__link">
|
|
2228
|
+
Config Context Schema
|
|
2229
|
+
</a>
|
|
2230
|
+
</li>
|
|
2231
|
+
|
|
2232
|
+
|
|
2233
|
+
|
|
2234
|
+
|
|
2235
|
+
|
|
2236
|
+
|
|
2237
|
+
|
|
2238
|
+
|
|
2239
|
+
|
|
2240
|
+
<li class="md-nav__item">
|
|
2241
|
+
<a href="../../models/extras/graphqlquery.html" class="md-nav__link">
|
|
2242
|
+
GraphQL Query
|
|
2243
|
+
</a>
|
|
2244
|
+
</li>
|
|
2245
|
+
|
|
2246
|
+
|
|
2247
|
+
|
|
2248
|
+
|
|
2249
|
+
|
|
2250
|
+
|
|
2251
|
+
|
|
2252
|
+
|
|
2253
|
+
|
|
2254
|
+
<li class="md-nav__item">
|
|
2255
|
+
<a href="../../models/extras/imageattachment.html" class="md-nav__link">
|
|
2256
|
+
Image Attachment
|
|
2257
|
+
</a>
|
|
2258
|
+
</li>
|
|
2259
|
+
|
|
2260
|
+
|
|
2261
|
+
|
|
2262
|
+
|
|
2263
|
+
|
|
2264
|
+
|
|
2265
|
+
|
|
2266
|
+
|
|
2267
|
+
|
|
2268
|
+
<li class="md-nav__item">
|
|
2269
|
+
<a href="../../models/extras/job.html" class="md-nav__link">
|
|
2270
|
+
Job
|
|
2271
|
+
</a>
|
|
2272
|
+
</li>
|
|
2273
|
+
|
|
2274
|
+
|
|
2275
|
+
|
|
2276
|
+
|
|
2277
|
+
|
|
2278
|
+
|
|
2279
|
+
|
|
2280
|
+
|
|
2281
|
+
|
|
2282
|
+
<li class="md-nav__item">
|
|
2283
|
+
<a href="../../models/extras/joblogentry.html" class="md-nav__link">
|
|
2284
|
+
Job Log Entry
|
|
2285
|
+
</a>
|
|
2286
|
+
</li>
|
|
2287
|
+
|
|
2288
|
+
|
|
2289
|
+
|
|
2290
|
+
|
|
2291
|
+
|
|
2292
|
+
|
|
2293
|
+
|
|
2294
|
+
|
|
2295
|
+
|
|
2296
|
+
<li class="md-nav__item">
|
|
2297
|
+
<a href="../../models/extras/jobresult.html" class="md-nav__link">
|
|
2298
|
+
Job Result
|
|
2299
|
+
</a>
|
|
2300
|
+
</li>
|
|
2301
|
+
|
|
2302
|
+
|
|
2303
|
+
|
|
2304
|
+
|
|
2305
|
+
|
|
2306
|
+
|
|
2307
|
+
|
|
2308
|
+
|
|
2309
|
+
|
|
2310
|
+
<li class="md-nav__item">
|
|
2311
|
+
<a href="../../models/extras/secret.html" class="md-nav__link">
|
|
2312
|
+
Secret
|
|
2313
|
+
</a>
|
|
2314
|
+
</li>
|
|
2315
|
+
|
|
2316
|
+
|
|
2317
|
+
|
|
2318
|
+
|
|
2319
|
+
|
|
2320
|
+
|
|
2321
|
+
|
|
2322
|
+
|
|
2323
|
+
|
|
2324
|
+
<li class="md-nav__item">
|
|
2325
|
+
<a href="../../models/extras/secretsgroup.html" class="md-nav__link">
|
|
2326
|
+
Secrets group
|
|
2327
|
+
</a>
|
|
2328
|
+
</li>
|
|
2329
|
+
|
|
2330
|
+
|
|
2331
|
+
|
|
2332
|
+
|
|
2333
|
+
</ul>
|
|
2334
|
+
</nav>
|
|
2335
|
+
</li>
|
|
2336
|
+
|
|
2337
|
+
|
|
2338
|
+
|
|
2339
|
+
|
|
2340
|
+
|
|
2341
|
+
|
|
2342
|
+
|
|
2343
|
+
|
|
2344
|
+
|
|
2345
|
+
|
|
2346
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
2347
|
+
|
|
2348
|
+
|
|
2349
|
+
|
|
2350
|
+
|
|
2351
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_8_4" >
|
|
2352
|
+
|
|
2353
|
+
|
|
2354
|
+
|
|
2355
|
+
<label class="md-nav__link" for="__nav_2_8_4" id="__nav_2_8_4_label" tabindex="0">
|
|
2356
|
+
IPAM
|
|
2357
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2358
|
+
</label>
|
|
2359
|
+
|
|
2360
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_8_4_label" aria-expanded="false">
|
|
2361
|
+
<label class="md-nav__title" for="__nav_2_8_4">
|
|
2362
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2363
|
+
IPAM
|
|
2364
|
+
</label>
|
|
2365
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
2366
|
+
|
|
2367
|
+
|
|
2368
|
+
|
|
2369
|
+
|
|
2370
|
+
|
|
2371
|
+
|
|
2372
|
+
<li class="md-nav__item">
|
|
2373
|
+
<a href="../../models/ipam/aggregate.html" class="md-nav__link">
|
|
2374
|
+
Aggregate
|
|
2375
|
+
</a>
|
|
2376
|
+
</li>
|
|
2377
|
+
|
|
2378
|
+
|
|
2379
|
+
|
|
2380
|
+
|
|
2381
|
+
|
|
2382
|
+
|
|
2383
|
+
|
|
2384
|
+
|
|
2385
|
+
|
|
2386
|
+
<li class="md-nav__item">
|
|
2387
|
+
<a href="../../models/ipam/ipaddress.html" class="md-nav__link">
|
|
2388
|
+
IP Address
|
|
2389
|
+
</a>
|
|
2390
|
+
</li>
|
|
2391
|
+
|
|
2392
|
+
|
|
2393
|
+
|
|
2394
|
+
|
|
2395
|
+
|
|
2396
|
+
|
|
2397
|
+
|
|
2398
|
+
|
|
2399
|
+
|
|
2400
|
+
<li class="md-nav__item">
|
|
2401
|
+
<a href="../../models/ipam/prefix.html" class="md-nav__link">
|
|
2402
|
+
Prefix
|
|
2403
|
+
</a>
|
|
2404
|
+
</li>
|
|
2405
|
+
|
|
2406
|
+
|
|
2407
|
+
|
|
2408
|
+
|
|
2409
|
+
|
|
2410
|
+
|
|
2411
|
+
|
|
2412
|
+
|
|
2413
|
+
|
|
2414
|
+
<li class="md-nav__item">
|
|
2415
|
+
<a href="../../models/ipam/rir.html" class="md-nav__link">
|
|
2416
|
+
Rir
|
|
2417
|
+
</a>
|
|
2418
|
+
</li>
|
|
2419
|
+
|
|
2420
|
+
|
|
2421
|
+
|
|
2422
|
+
|
|
2423
|
+
|
|
2424
|
+
|
|
2425
|
+
|
|
2426
|
+
|
|
2427
|
+
|
|
2428
|
+
<li class="md-nav__item">
|
|
2429
|
+
<a href="../../models/ipam/role.html" class="md-nav__link">
|
|
2430
|
+
Role
|
|
2431
|
+
</a>
|
|
2432
|
+
</li>
|
|
2433
|
+
|
|
2434
|
+
|
|
2435
|
+
|
|
2436
|
+
|
|
2437
|
+
|
|
2438
|
+
|
|
2439
|
+
|
|
2440
|
+
|
|
2441
|
+
|
|
2442
|
+
<li class="md-nav__item">
|
|
2443
|
+
<a href="../../models/ipam/routetarget.html" class="md-nav__link">
|
|
2444
|
+
Route Target
|
|
2445
|
+
</a>
|
|
2446
|
+
</li>
|
|
2447
|
+
|
|
2448
|
+
|
|
2449
|
+
|
|
2450
|
+
|
|
2451
|
+
|
|
2452
|
+
|
|
2453
|
+
|
|
2454
|
+
|
|
2455
|
+
|
|
2456
|
+
<li class="md-nav__item">
|
|
2457
|
+
<a href="../../models/ipam/service.html" class="md-nav__link">
|
|
2458
|
+
Service
|
|
2459
|
+
</a>
|
|
2460
|
+
</li>
|
|
2461
|
+
|
|
2462
|
+
|
|
2463
|
+
|
|
2464
|
+
|
|
2465
|
+
|
|
2466
|
+
|
|
2467
|
+
|
|
2468
|
+
|
|
2469
|
+
|
|
2470
|
+
<li class="md-nav__item">
|
|
2471
|
+
<a href="../../models/ipam/vlan.html" class="md-nav__link">
|
|
2472
|
+
VLAN
|
|
2473
|
+
</a>
|
|
2474
|
+
</li>
|
|
2475
|
+
|
|
2476
|
+
|
|
2477
|
+
|
|
2478
|
+
|
|
2479
|
+
|
|
2480
|
+
|
|
2481
|
+
|
|
2482
|
+
|
|
2483
|
+
|
|
2484
|
+
<li class="md-nav__item">
|
|
2485
|
+
<a href="../../models/ipam/vlangroup.html" class="md-nav__link">
|
|
2486
|
+
VLAN Group
|
|
2487
|
+
</a>
|
|
2488
|
+
</li>
|
|
2489
|
+
|
|
2490
|
+
|
|
2491
|
+
|
|
2492
|
+
|
|
2493
|
+
|
|
2494
|
+
|
|
2495
|
+
|
|
2496
|
+
|
|
2497
|
+
|
|
2498
|
+
<li class="md-nav__item">
|
|
2499
|
+
<a href="../../models/ipam/vrf.html" class="md-nav__link">
|
|
2500
|
+
VRF
|
|
2501
|
+
</a>
|
|
2502
|
+
</li>
|
|
2503
|
+
|
|
2504
|
+
|
|
2505
|
+
|
|
2506
|
+
|
|
2507
|
+
</ul>
|
|
2508
|
+
</nav>
|
|
2509
|
+
</li>
|
|
2510
|
+
|
|
2511
|
+
|
|
2512
|
+
|
|
2513
|
+
|
|
2514
|
+
|
|
2515
|
+
|
|
2516
|
+
|
|
2517
|
+
|
|
2518
|
+
|
|
2519
|
+
|
|
2520
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
2521
|
+
|
|
2522
|
+
|
|
2523
|
+
|
|
2524
|
+
|
|
2525
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_8_5" >
|
|
2526
|
+
|
|
2527
|
+
|
|
2528
|
+
|
|
2529
|
+
<label class="md-nav__link" for="__nav_2_8_5" id="__nav_2_8_5_label" tabindex="0">
|
|
2530
|
+
Tenancy
|
|
2531
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2532
|
+
</label>
|
|
2533
|
+
|
|
2534
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_8_5_label" aria-expanded="false">
|
|
2535
|
+
<label class="md-nav__title" for="__nav_2_8_5">
|
|
2536
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2537
|
+
Tenancy
|
|
2538
|
+
</label>
|
|
2539
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
2540
|
+
|
|
2541
|
+
|
|
2542
|
+
|
|
2543
|
+
|
|
2544
|
+
|
|
2545
|
+
|
|
2546
|
+
<li class="md-nav__item">
|
|
2547
|
+
<a href="../../models/tenancy/tenant.html" class="md-nav__link">
|
|
2548
|
+
Tenant
|
|
2549
|
+
</a>
|
|
2550
|
+
</li>
|
|
2551
|
+
|
|
2552
|
+
|
|
2553
|
+
|
|
2554
|
+
|
|
2555
|
+
|
|
2556
|
+
|
|
2557
|
+
|
|
2558
|
+
|
|
2559
|
+
|
|
2560
|
+
<li class="md-nav__item">
|
|
2561
|
+
<a href="../../models/tenancy/tenantgroup.html" class="md-nav__link">
|
|
2562
|
+
Tenant Group
|
|
2563
|
+
</a>
|
|
2564
|
+
</li>
|
|
2565
|
+
|
|
2566
|
+
|
|
2567
|
+
|
|
2568
|
+
|
|
2569
|
+
</ul>
|
|
2570
|
+
</nav>
|
|
2571
|
+
</li>
|
|
2572
|
+
|
|
2573
|
+
|
|
2574
|
+
|
|
2575
|
+
|
|
2576
|
+
|
|
2577
|
+
|
|
2578
|
+
|
|
2579
|
+
|
|
2580
|
+
|
|
2581
|
+
|
|
2582
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
2583
|
+
|
|
2584
|
+
|
|
2585
|
+
|
|
2586
|
+
|
|
2587
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_8_6" >
|
|
2588
|
+
|
|
2589
|
+
|
|
2590
|
+
|
|
2591
|
+
<label class="md-nav__link" for="__nav_2_8_6" id="__nav_2_8_6_label" tabindex="0">
|
|
2592
|
+
Users
|
|
2593
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2594
|
+
</label>
|
|
2595
|
+
|
|
2596
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_8_6_label" aria-expanded="false">
|
|
2597
|
+
<label class="md-nav__title" for="__nav_2_8_6">
|
|
2598
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2599
|
+
Users
|
|
2600
|
+
</label>
|
|
2601
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
2602
|
+
|
|
2603
|
+
|
|
2604
|
+
|
|
2605
|
+
|
|
2606
|
+
|
|
2607
|
+
|
|
2608
|
+
<li class="md-nav__item">
|
|
2609
|
+
<a href="../../models/users/objectpermission.html" class="md-nav__link">
|
|
2610
|
+
Object Permission
|
|
2611
|
+
</a>
|
|
2612
|
+
</li>
|
|
2613
|
+
|
|
2614
|
+
|
|
2615
|
+
|
|
2616
|
+
|
|
2617
|
+
|
|
2618
|
+
|
|
2619
|
+
|
|
2620
|
+
|
|
2621
|
+
|
|
2622
|
+
<li class="md-nav__item">
|
|
2623
|
+
<a href="../../models/users/token.html" class="md-nav__link">
|
|
2624
|
+
Token
|
|
2625
|
+
</a>
|
|
2626
|
+
</li>
|
|
2627
|
+
|
|
2628
|
+
|
|
2629
|
+
|
|
2630
|
+
|
|
2631
|
+
</ul>
|
|
2632
|
+
</nav>
|
|
2633
|
+
</li>
|
|
2634
|
+
|
|
2635
|
+
|
|
2636
|
+
|
|
2637
|
+
|
|
2638
|
+
|
|
2639
|
+
|
|
2640
|
+
|
|
2641
|
+
|
|
2642
|
+
|
|
2643
|
+
|
|
2644
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
2645
|
+
|
|
2646
|
+
|
|
2647
|
+
|
|
2648
|
+
|
|
2649
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_8_7" >
|
|
2650
|
+
|
|
2651
|
+
|
|
2652
|
+
|
|
2653
|
+
<label class="md-nav__link" for="__nav_2_8_7" id="__nav_2_8_7_label" tabindex="0">
|
|
2654
|
+
Virtualization
|
|
2655
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2656
|
+
</label>
|
|
2657
|
+
|
|
2658
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_8_7_label" aria-expanded="false">
|
|
2659
|
+
<label class="md-nav__title" for="__nav_2_8_7">
|
|
2660
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2661
|
+
Virtualization
|
|
2662
|
+
</label>
|
|
2663
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
2664
|
+
|
|
2665
|
+
|
|
2666
|
+
|
|
2667
|
+
|
|
2668
|
+
|
|
2669
|
+
|
|
2670
|
+
<li class="md-nav__item">
|
|
2671
|
+
<a href="../../models/virtualization/cluster.html" class="md-nav__link">
|
|
2672
|
+
Cluster
|
|
2673
|
+
</a>
|
|
2674
|
+
</li>
|
|
2675
|
+
|
|
2676
|
+
|
|
2677
|
+
|
|
2678
|
+
|
|
2679
|
+
|
|
2680
|
+
|
|
2681
|
+
|
|
2682
|
+
|
|
2683
|
+
|
|
2684
|
+
<li class="md-nav__item">
|
|
2685
|
+
<a href="../../models/virtualization/clustergroup.html" class="md-nav__link">
|
|
2686
|
+
Cluster Group
|
|
2687
|
+
</a>
|
|
2688
|
+
</li>
|
|
2689
|
+
|
|
2690
|
+
|
|
2691
|
+
|
|
2692
|
+
|
|
2693
|
+
|
|
2694
|
+
|
|
2695
|
+
|
|
2696
|
+
|
|
2697
|
+
|
|
2698
|
+
<li class="md-nav__item">
|
|
2699
|
+
<a href="../../models/virtualization/clustertype.html" class="md-nav__link">
|
|
2700
|
+
Cluster Type
|
|
2701
|
+
</a>
|
|
2702
|
+
</li>
|
|
2703
|
+
|
|
2704
|
+
|
|
2705
|
+
|
|
2706
|
+
|
|
2707
|
+
|
|
2708
|
+
|
|
2709
|
+
|
|
2710
|
+
|
|
2711
|
+
|
|
2712
|
+
<li class="md-nav__item">
|
|
2713
|
+
<a href="../../models/virtualization/virtualmachine.html" class="md-nav__link">
|
|
2714
|
+
Virtual Machine
|
|
2715
|
+
</a>
|
|
2716
|
+
</li>
|
|
2717
|
+
|
|
2718
|
+
|
|
2719
|
+
|
|
2720
|
+
|
|
2721
|
+
|
|
2722
|
+
|
|
2723
|
+
|
|
2724
|
+
|
|
2725
|
+
|
|
2726
|
+
<li class="md-nav__item">
|
|
2727
|
+
<a href="../../models/virtualization/vminterface.html" class="md-nav__link">
|
|
2728
|
+
VM Interface
|
|
2729
|
+
</a>
|
|
2730
|
+
</li>
|
|
2731
|
+
|
|
2732
|
+
|
|
2733
|
+
|
|
2734
|
+
|
|
2735
|
+
</ul>
|
|
2736
|
+
</nav>
|
|
2737
|
+
</li>
|
|
2738
|
+
|
|
2739
|
+
|
|
2740
|
+
|
|
2741
|
+
|
|
2742
|
+
</ul>
|
|
2743
|
+
</nav>
|
|
2744
|
+
</li>
|
|
2745
|
+
|
|
2746
|
+
|
|
2747
|
+
|
|
2748
|
+
|
|
2749
|
+
|
|
2750
|
+
|
|
2751
|
+
|
|
2752
|
+
|
|
2753
|
+
|
|
2754
|
+
|
|
2755
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
2756
|
+
|
|
2757
|
+
|
|
2758
|
+
|
|
2759
|
+
|
|
2760
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_9" >
|
|
2761
|
+
|
|
2762
|
+
|
|
2763
|
+
|
|
2764
|
+
<label class="md-nav__link" for="__nav_2_9" id="__nav_2_9_label" tabindex="0">
|
|
2765
|
+
Additional Features
|
|
2766
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2767
|
+
</label>
|
|
2768
|
+
|
|
2769
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_9_label" aria-expanded="false">
|
|
2770
|
+
<label class="md-nav__title" for="__nav_2_9">
|
|
2771
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2772
|
+
Additional Features
|
|
2773
|
+
</label>
|
|
2774
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
2775
|
+
|
|
2776
|
+
|
|
2777
|
+
|
|
2778
|
+
|
|
2779
|
+
|
|
2780
|
+
|
|
2781
|
+
<li class="md-nav__item">
|
|
2782
|
+
<a href="../../additional-features/caching.html" class="md-nav__link">
|
|
2783
|
+
Caching
|
|
2784
|
+
</a>
|
|
2785
|
+
</li>
|
|
2786
|
+
|
|
2787
|
+
|
|
2788
|
+
|
|
2789
|
+
|
|
2790
|
+
|
|
2791
|
+
|
|
2792
|
+
|
|
2793
|
+
|
|
2794
|
+
|
|
2795
|
+
<li class="md-nav__item">
|
|
2796
|
+
<a href="../../additional-features/change-logging.html" class="md-nav__link">
|
|
2797
|
+
Change Logging
|
|
2798
|
+
</a>
|
|
2799
|
+
</li>
|
|
2800
|
+
|
|
2801
|
+
|
|
2802
|
+
|
|
2803
|
+
|
|
2804
|
+
|
|
2805
|
+
|
|
2806
|
+
|
|
2807
|
+
|
|
2808
|
+
|
|
2809
|
+
<li class="md-nav__item">
|
|
2810
|
+
<a href="../../models/extras/computedfield.html" class="md-nav__link">
|
|
2811
|
+
Computed Fields
|
|
2812
|
+
</a>
|
|
2813
|
+
</li>
|
|
2814
|
+
|
|
2815
|
+
|
|
2816
|
+
|
|
2817
|
+
|
|
2818
|
+
|
|
2819
|
+
|
|
2820
|
+
|
|
2821
|
+
|
|
2822
|
+
|
|
2823
|
+
<li class="md-nav__item">
|
|
2824
|
+
<a href="../../additional-features/config-contexts.html" class="md-nav__link">
|
|
2825
|
+
Context Data
|
|
2826
|
+
</a>
|
|
2827
|
+
</li>
|
|
2828
|
+
|
|
2829
|
+
|
|
2830
|
+
|
|
2831
|
+
|
|
2832
|
+
|
|
2833
|
+
|
|
2834
|
+
|
|
2835
|
+
|
|
2836
|
+
|
|
2837
|
+
<li class="md-nav__item">
|
|
2838
|
+
<a href="../../models/extras/customfield.html" class="md-nav__link">
|
|
2839
|
+
Custom Fields
|
|
2840
|
+
</a>
|
|
2841
|
+
</li>
|
|
2842
|
+
|
|
2843
|
+
|
|
2844
|
+
|
|
2845
|
+
|
|
2846
|
+
|
|
2847
|
+
|
|
2848
|
+
|
|
2849
|
+
|
|
2850
|
+
|
|
2851
|
+
<li class="md-nav__item">
|
|
2852
|
+
<a href="../../models/extras/customlink.html" class="md-nav__link">
|
|
2853
|
+
Custom Links
|
|
2854
|
+
</a>
|
|
2855
|
+
</li>
|
|
2856
|
+
|
|
2857
|
+
|
|
2858
|
+
|
|
2859
|
+
|
|
2860
|
+
|
|
2861
|
+
|
|
2862
|
+
|
|
2863
|
+
|
|
2864
|
+
|
|
2865
|
+
<li class="md-nav__item">
|
|
2866
|
+
<a href="../../models/extras/dynamicgroup.html" class="md-nav__link">
|
|
2867
|
+
Dynamic Groups
|
|
2868
|
+
</a>
|
|
2869
|
+
</li>
|
|
2870
|
+
|
|
2871
|
+
|
|
2872
|
+
|
|
2873
|
+
|
|
2874
|
+
|
|
2875
|
+
|
|
2876
|
+
|
|
2877
|
+
|
|
2878
|
+
|
|
2879
|
+
<li class="md-nav__item">
|
|
2880
|
+
<a href="../../models/extras/exporttemplate.html" class="md-nav__link">
|
|
2881
|
+
Export Templates
|
|
2882
|
+
</a>
|
|
2883
|
+
</li>
|
|
2884
|
+
|
|
2885
|
+
|
|
2886
|
+
|
|
2887
|
+
|
|
2888
|
+
|
|
2889
|
+
|
|
2890
|
+
|
|
2891
|
+
|
|
2892
|
+
|
|
2893
|
+
<li class="md-nav__item">
|
|
2894
|
+
<a href="../../models/extras/gitrepository.html" class="md-nav__link">
|
|
2895
|
+
Git Repositories
|
|
2896
|
+
</a>
|
|
2897
|
+
</li>
|
|
2898
|
+
|
|
2899
|
+
|
|
2900
|
+
|
|
2901
|
+
|
|
2902
|
+
|
|
2903
|
+
|
|
2904
|
+
|
|
2905
|
+
|
|
2906
|
+
|
|
2907
|
+
<li class="md-nav__item">
|
|
2908
|
+
<a href="../../additional-features/healthcheck.html" class="md-nav__link">
|
|
2909
|
+
Health Check
|
|
2910
|
+
</a>
|
|
2911
|
+
</li>
|
|
2912
|
+
|
|
2913
|
+
|
|
2914
|
+
|
|
2915
|
+
|
|
2916
|
+
|
|
2917
|
+
|
|
2918
|
+
|
|
2919
|
+
|
|
2920
|
+
|
|
2921
|
+
<li class="md-nav__item">
|
|
2922
|
+
<a href="../../additional-features/jobs.html" class="md-nav__link">
|
|
2923
|
+
Jobs
|
|
2924
|
+
</a>
|
|
2925
|
+
</li>
|
|
2926
|
+
|
|
2927
|
+
|
|
2928
|
+
|
|
2929
|
+
|
|
2930
|
+
|
|
2931
|
+
|
|
2932
|
+
|
|
2933
|
+
|
|
2934
|
+
|
|
2935
|
+
<li class="md-nav__item">
|
|
2936
|
+
<a href="../../models/extras/jobbutton.html" class="md-nav__link">
|
|
2937
|
+
Job Buttons
|
|
2938
|
+
</a>
|
|
2939
|
+
</li>
|
|
2940
|
+
|
|
2941
|
+
|
|
2942
|
+
|
|
2943
|
+
|
|
2944
|
+
|
|
2945
|
+
|
|
2946
|
+
|
|
2947
|
+
|
|
2948
|
+
|
|
2949
|
+
<li class="md-nav__item">
|
|
2950
|
+
<a href="../../models/extras/jobhook.html" class="md-nav__link">
|
|
2951
|
+
Job Hooks
|
|
2952
|
+
</a>
|
|
2953
|
+
</li>
|
|
2954
|
+
|
|
2955
|
+
|
|
2956
|
+
|
|
2957
|
+
|
|
2958
|
+
|
|
2959
|
+
|
|
2960
|
+
|
|
2961
|
+
|
|
2962
|
+
|
|
2963
|
+
<li class="md-nav__item">
|
|
2964
|
+
<a href="../../additional-features/job-scheduling-and-approvals.html" class="md-nav__link">
|
|
2965
|
+
Job Scheduling and Approvals
|
|
2966
|
+
</a>
|
|
2967
|
+
</li>
|
|
2968
|
+
|
|
2969
|
+
|
|
2970
|
+
|
|
2971
|
+
|
|
2972
|
+
|
|
2973
|
+
|
|
2974
|
+
|
|
2975
|
+
|
|
2976
|
+
|
|
2977
|
+
<li class="md-nav__item">
|
|
2978
|
+
<a href="../../additional-features/napalm.html" class="md-nav__link">
|
|
2979
|
+
NAPALM
|
|
2980
|
+
</a>
|
|
2981
|
+
</li>
|
|
2982
|
+
|
|
2983
|
+
|
|
2984
|
+
|
|
2985
|
+
|
|
2986
|
+
|
|
2987
|
+
|
|
2988
|
+
|
|
2989
|
+
|
|
2990
|
+
|
|
2991
|
+
<li class="md-nav__item">
|
|
2992
|
+
<a href="../../models/extras/note.html" class="md-nav__link">
|
|
2993
|
+
Notes
|
|
2994
|
+
</a>
|
|
2995
|
+
</li>
|
|
2996
|
+
|
|
2997
|
+
|
|
2998
|
+
|
|
2999
|
+
|
|
3000
|
+
|
|
3001
|
+
|
|
3002
|
+
|
|
3003
|
+
|
|
3004
|
+
|
|
3005
|
+
<li class="md-nav__item">
|
|
3006
|
+
<a href="../../additional-features/prometheus-metrics.html" class="md-nav__link">
|
|
3007
|
+
Prometheus Metrics
|
|
3008
|
+
</a>
|
|
3009
|
+
</li>
|
|
3010
|
+
|
|
3011
|
+
|
|
3012
|
+
|
|
3013
|
+
|
|
3014
|
+
|
|
3015
|
+
|
|
3016
|
+
|
|
3017
|
+
|
|
3018
|
+
|
|
3019
|
+
<li class="md-nav__item">
|
|
3020
|
+
<a href="../../models/extras/relationship.html" class="md-nav__link">
|
|
3021
|
+
Relationships
|
|
3022
|
+
</a>
|
|
3023
|
+
</li>
|
|
3024
|
+
|
|
3025
|
+
|
|
3026
|
+
|
|
3027
|
+
|
|
3028
|
+
|
|
3029
|
+
|
|
3030
|
+
|
|
3031
|
+
|
|
3032
|
+
|
|
3033
|
+
<li class="md-nav__item">
|
|
3034
|
+
<a href="../../models/extras/status.html" class="md-nav__link">
|
|
3035
|
+
Statuses
|
|
3036
|
+
</a>
|
|
3037
|
+
</li>
|
|
3038
|
+
|
|
3039
|
+
|
|
3040
|
+
|
|
3041
|
+
|
|
3042
|
+
|
|
3043
|
+
|
|
3044
|
+
|
|
3045
|
+
|
|
3046
|
+
|
|
3047
|
+
<li class="md-nav__item">
|
|
3048
|
+
<a href="../../models/extras/tag.html" class="md-nav__link">
|
|
3049
|
+
Tags
|
|
3050
|
+
</a>
|
|
3051
|
+
</li>
|
|
3052
|
+
|
|
3053
|
+
|
|
3054
|
+
|
|
3055
|
+
|
|
3056
|
+
|
|
3057
|
+
|
|
3058
|
+
|
|
3059
|
+
|
|
3060
|
+
|
|
3061
|
+
<li class="md-nav__item">
|
|
3062
|
+
<a href="../../additional-features/template-filters.html" class="md-nav__link">
|
|
3063
|
+
Template Filters
|
|
3064
|
+
</a>
|
|
3065
|
+
</li>
|
|
3066
|
+
|
|
3067
|
+
|
|
3068
|
+
|
|
3069
|
+
|
|
3070
|
+
|
|
3071
|
+
|
|
3072
|
+
|
|
3073
|
+
|
|
3074
|
+
|
|
3075
|
+
<li class="md-nav__item">
|
|
3076
|
+
<a href="../../models/extras/webhook.html" class="md-nav__link">
|
|
3077
|
+
Webhooks
|
|
3078
|
+
</a>
|
|
3079
|
+
</li>
|
|
3080
|
+
|
|
3081
|
+
|
|
3082
|
+
|
|
3083
|
+
|
|
3084
|
+
</ul>
|
|
3085
|
+
</nav>
|
|
3086
|
+
</li>
|
|
3087
|
+
|
|
3088
|
+
|
|
3089
|
+
|
|
3090
|
+
|
|
3091
|
+
|
|
3092
|
+
|
|
3093
|
+
|
|
3094
|
+
|
|
3095
|
+
|
|
3096
|
+
|
|
3097
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
3098
|
+
|
|
3099
|
+
|
|
3100
|
+
|
|
3101
|
+
|
|
3102
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_10" >
|
|
3103
|
+
|
|
3104
|
+
|
|
3105
|
+
|
|
3106
|
+
<label class="md-nav__link" for="__nav_2_10" id="__nav_2_10_label" tabindex="0">
|
|
3107
|
+
REST API
|
|
3108
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3109
|
+
</label>
|
|
3110
|
+
|
|
3111
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_10_label" aria-expanded="false">
|
|
3112
|
+
<label class="md-nav__title" for="__nav_2_10">
|
|
3113
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3114
|
+
REST API
|
|
3115
|
+
</label>
|
|
3116
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
3117
|
+
|
|
3118
|
+
|
|
3119
|
+
|
|
3120
|
+
|
|
3121
|
+
|
|
3122
|
+
|
|
3123
|
+
<li class="md-nav__item">
|
|
3124
|
+
<a href="../../rest-api/overview.html" class="md-nav__link">
|
|
3125
|
+
Overview
|
|
3126
|
+
</a>
|
|
3127
|
+
</li>
|
|
3128
|
+
|
|
3129
|
+
|
|
3130
|
+
|
|
3131
|
+
|
|
3132
|
+
|
|
3133
|
+
|
|
3134
|
+
|
|
3135
|
+
|
|
3136
|
+
|
|
3137
|
+
<li class="md-nav__item">
|
|
3138
|
+
<a href="../../rest-api/filtering.html" class="md-nav__link">
|
|
3139
|
+
Filtering
|
|
3140
|
+
</a>
|
|
3141
|
+
</li>
|
|
3142
|
+
|
|
3143
|
+
|
|
3144
|
+
|
|
3145
|
+
|
|
3146
|
+
|
|
3147
|
+
|
|
3148
|
+
|
|
3149
|
+
|
|
3150
|
+
|
|
3151
|
+
<li class="md-nav__item">
|
|
3152
|
+
<a href="../../rest-api/authentication.html" class="md-nav__link">
|
|
3153
|
+
Authentication
|
|
3154
|
+
</a>
|
|
3155
|
+
</li>
|
|
3156
|
+
|
|
3157
|
+
|
|
3158
|
+
|
|
3159
|
+
|
|
3160
|
+
</ul>
|
|
3161
|
+
</nav>
|
|
3162
|
+
</li>
|
|
3163
|
+
|
|
3164
|
+
|
|
3165
|
+
|
|
3166
|
+
|
|
3167
|
+
|
|
3168
|
+
|
|
3169
|
+
|
|
3170
|
+
|
|
3171
|
+
|
|
3172
|
+
|
|
3173
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
3174
|
+
|
|
3175
|
+
|
|
3176
|
+
|
|
3177
|
+
|
|
3178
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_11" >
|
|
3179
|
+
|
|
3180
|
+
|
|
3181
|
+
|
|
3182
|
+
<label class="md-nav__link" for="__nav_2_11" id="__nav_2_11_label" tabindex="0">
|
|
3183
|
+
GraphQL API
|
|
3184
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3185
|
+
</label>
|
|
3186
|
+
|
|
3187
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_11_label" aria-expanded="false">
|
|
3188
|
+
<label class="md-nav__title" for="__nav_2_11">
|
|
3189
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3190
|
+
GraphQL API
|
|
3191
|
+
</label>
|
|
3192
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
3193
|
+
|
|
3194
|
+
|
|
3195
|
+
|
|
3196
|
+
|
|
3197
|
+
|
|
3198
|
+
|
|
3199
|
+
<li class="md-nav__item">
|
|
3200
|
+
<a href="../../additional-features/graphql.html" class="md-nav__link">
|
|
3201
|
+
Overview
|
|
3202
|
+
</a>
|
|
3203
|
+
</li>
|
|
3204
|
+
|
|
3205
|
+
|
|
3206
|
+
|
|
3207
|
+
|
|
3208
|
+
</ul>
|
|
3209
|
+
</nav>
|
|
3210
|
+
</li>
|
|
3211
|
+
|
|
3212
|
+
|
|
3213
|
+
|
|
3214
|
+
|
|
3215
|
+
|
|
3216
|
+
|
|
3217
|
+
|
|
3218
|
+
|
|
3219
|
+
|
|
3220
|
+
<li class="md-nav__item">
|
|
3221
|
+
<a href="../../plugins/index.html" class="md-nav__link">
|
|
3222
|
+
Installing and Using Plugins
|
|
3223
|
+
</a>
|
|
3224
|
+
</li>
|
|
3225
|
+
|
|
3226
|
+
|
|
3227
|
+
|
|
3228
|
+
|
|
3229
|
+
</ul>
|
|
3230
|
+
</nav>
|
|
3231
|
+
</li>
|
|
3232
|
+
|
|
3233
|
+
|
|
3234
|
+
|
|
3235
|
+
|
|
3236
|
+
|
|
3237
|
+
|
|
3238
|
+
|
|
3239
|
+
|
|
3240
|
+
|
|
3241
|
+
|
|
3242
|
+
|
|
3243
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
3244
|
+
|
|
3245
|
+
|
|
3246
|
+
|
|
3247
|
+
|
|
3248
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" >
|
|
3249
|
+
|
|
3250
|
+
|
|
3251
|
+
|
|
3252
|
+
<label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
|
|
3253
|
+
App Developer Guide
|
|
3254
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3255
|
+
</label>
|
|
3256
|
+
|
|
3257
|
+
<nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
|
|
3258
|
+
<label class="md-nav__title" for="__nav_3">
|
|
3259
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3260
|
+
App Developer Guide
|
|
3261
|
+
</label>
|
|
3262
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
3263
|
+
|
|
3264
|
+
|
|
3265
|
+
|
|
3266
|
+
|
|
3267
|
+
|
|
3268
|
+
|
|
3269
|
+
<li class="md-nav__item">
|
|
3270
|
+
<a href="../../plugins/development.html" class="md-nav__link">
|
|
3271
|
+
Developing Apps
|
|
3272
|
+
</a>
|
|
3273
|
+
</li>
|
|
3274
|
+
|
|
3275
|
+
|
|
3276
|
+
|
|
3277
|
+
|
|
3278
|
+
|
|
3279
|
+
|
|
3280
|
+
|
|
3281
|
+
|
|
3282
|
+
|
|
3283
|
+
<li class="md-nav__item">
|
|
3284
|
+
<a href="../../plugins/porting-from-netbox.html" class="md-nav__link">
|
|
3285
|
+
Porting NetBox Plugins to Nautobot
|
|
3286
|
+
</a>
|
|
3287
|
+
</li>
|
|
3288
|
+
|
|
3289
|
+
|
|
3290
|
+
|
|
3291
|
+
|
|
3292
|
+
|
|
3293
|
+
|
|
3294
|
+
|
|
3295
|
+
|
|
3296
|
+
|
|
3297
|
+
|
|
3298
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
3299
|
+
|
|
3300
|
+
|
|
3301
|
+
|
|
3302
|
+
|
|
3303
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3" >
|
|
3304
|
+
|
|
3305
|
+
|
|
3306
|
+
|
|
3307
|
+
<label class="md-nav__link" for="__nav_3_3" id="__nav_3_3_label" tabindex="0">
|
|
3308
|
+
Code Reference
|
|
3309
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3310
|
+
</label>
|
|
3311
|
+
|
|
3312
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_3_label" aria-expanded="false">
|
|
3313
|
+
<label class="md-nav__title" for="__nav_3_3">
|
|
3314
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3315
|
+
Code Reference
|
|
3316
|
+
</label>
|
|
3317
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
3318
|
+
|
|
3319
|
+
|
|
3320
|
+
|
|
3321
|
+
|
|
3322
|
+
|
|
3323
|
+
|
|
3324
|
+
<li class="md-nav__item">
|
|
3325
|
+
<a href="../../code-reference/nautobot/apps/__init__.html" class="md-nav__link">
|
|
3326
|
+
nautobot.apps
|
|
3327
|
+
</a>
|
|
3328
|
+
</li>
|
|
3329
|
+
|
|
3330
|
+
|
|
3331
|
+
|
|
3332
|
+
|
|
3333
|
+
|
|
3334
|
+
|
|
3335
|
+
|
|
3336
|
+
|
|
3337
|
+
|
|
3338
|
+
<li class="md-nav__item">
|
|
3339
|
+
<a href="../../code-reference/nautobot/apps/admin.html" class="md-nav__link">
|
|
3340
|
+
nautobot.apps.admin
|
|
3341
|
+
</a>
|
|
3342
|
+
</li>
|
|
3343
|
+
|
|
3344
|
+
|
|
3345
|
+
|
|
3346
|
+
|
|
3347
|
+
|
|
3348
|
+
|
|
3349
|
+
|
|
3350
|
+
|
|
3351
|
+
|
|
3352
|
+
<li class="md-nav__item">
|
|
3353
|
+
<a href="../../code-reference/nautobot/apps/api.html" class="md-nav__link">
|
|
3354
|
+
nautobot.apps.api
|
|
3355
|
+
</a>
|
|
3356
|
+
</li>
|
|
3357
|
+
|
|
3358
|
+
|
|
3359
|
+
|
|
3360
|
+
|
|
3361
|
+
|
|
3362
|
+
|
|
3363
|
+
|
|
3364
|
+
|
|
3365
|
+
|
|
3366
|
+
<li class="md-nav__item">
|
|
3367
|
+
<a href="../../code-reference/nautobot/apps/choices.html" class="md-nav__link">
|
|
3368
|
+
nautobot.apps.choices
|
|
3369
|
+
</a>
|
|
3370
|
+
</li>
|
|
3371
|
+
|
|
3372
|
+
|
|
3373
|
+
|
|
3374
|
+
|
|
3375
|
+
|
|
3376
|
+
|
|
3377
|
+
|
|
3378
|
+
|
|
3379
|
+
|
|
3380
|
+
<li class="md-nav__item">
|
|
3381
|
+
<a href="../../code-reference/nautobot/apps/datasources.html" class="md-nav__link">
|
|
3382
|
+
nautobot.apps.datasources
|
|
3383
|
+
</a>
|
|
3384
|
+
</li>
|
|
3385
|
+
|
|
3386
|
+
|
|
3387
|
+
|
|
3388
|
+
|
|
3389
|
+
|
|
3390
|
+
|
|
3391
|
+
|
|
3392
|
+
|
|
3393
|
+
|
|
3394
|
+
<li class="md-nav__item">
|
|
3395
|
+
<a href="../../code-reference/nautobot/apps/filters.html" class="md-nav__link">
|
|
3396
|
+
nautobot.apps.filters
|
|
3397
|
+
</a>
|
|
3398
|
+
</li>
|
|
3399
|
+
|
|
3400
|
+
|
|
3401
|
+
|
|
3402
|
+
|
|
3403
|
+
|
|
3404
|
+
|
|
3405
|
+
|
|
3406
|
+
|
|
3407
|
+
|
|
3408
|
+
<li class="md-nav__item">
|
|
3409
|
+
<a href="../../code-reference/nautobot/apps/forms.html" class="md-nav__link">
|
|
3410
|
+
nautobot.apps.forms
|
|
3411
|
+
</a>
|
|
3412
|
+
</li>
|
|
3413
|
+
|
|
3414
|
+
|
|
3415
|
+
|
|
3416
|
+
|
|
3417
|
+
|
|
3418
|
+
|
|
3419
|
+
|
|
3420
|
+
|
|
3421
|
+
|
|
3422
|
+
<li class="md-nav__item">
|
|
3423
|
+
<a href="../../code-reference/nautobot/apps/models.html" class="md-nav__link">
|
|
3424
|
+
nautobot.apps.models
|
|
3425
|
+
</a>
|
|
3426
|
+
</li>
|
|
3427
|
+
|
|
3428
|
+
|
|
3429
|
+
|
|
3430
|
+
|
|
3431
|
+
|
|
3432
|
+
|
|
3433
|
+
|
|
3434
|
+
|
|
3435
|
+
|
|
3436
|
+
<li class="md-nav__item">
|
|
3437
|
+
<a href="../../code-reference/nautobot/apps/secrets.html" class="md-nav__link">
|
|
3438
|
+
nautobot.apps.secrets
|
|
3439
|
+
</a>
|
|
3440
|
+
</li>
|
|
3441
|
+
|
|
3442
|
+
|
|
3443
|
+
|
|
3444
|
+
|
|
3445
|
+
|
|
3446
|
+
|
|
3447
|
+
|
|
3448
|
+
|
|
3449
|
+
|
|
3450
|
+
<li class="md-nav__item">
|
|
3451
|
+
<a href="../../code-reference/nautobot/apps/tables.html" class="md-nav__link">
|
|
3452
|
+
nautobot.apps.tables
|
|
3453
|
+
</a>
|
|
3454
|
+
</li>
|
|
3455
|
+
|
|
3456
|
+
|
|
3457
|
+
|
|
3458
|
+
|
|
3459
|
+
|
|
3460
|
+
|
|
3461
|
+
|
|
3462
|
+
|
|
3463
|
+
|
|
3464
|
+
<li class="md-nav__item">
|
|
3465
|
+
<a href="../../code-reference/nautobot/apps/testing.html" class="md-nav__link">
|
|
3466
|
+
nautobot.apps.testing
|
|
3467
|
+
</a>
|
|
3468
|
+
</li>
|
|
3469
|
+
|
|
3470
|
+
|
|
3471
|
+
|
|
3472
|
+
|
|
3473
|
+
|
|
3474
|
+
|
|
3475
|
+
|
|
3476
|
+
|
|
3477
|
+
|
|
3478
|
+
<li class="md-nav__item">
|
|
3479
|
+
<a href="../../code-reference/nautobot/apps/ui.html" class="md-nav__link">
|
|
3480
|
+
nautobot.apps.ui
|
|
3481
|
+
</a>
|
|
3482
|
+
</li>
|
|
3483
|
+
|
|
3484
|
+
|
|
3485
|
+
|
|
3486
|
+
|
|
3487
|
+
|
|
3488
|
+
|
|
3489
|
+
|
|
3490
|
+
|
|
3491
|
+
|
|
3492
|
+
<li class="md-nav__item">
|
|
3493
|
+
<a href="../../code-reference/nautobot/apps/urls.html" class="md-nav__link">
|
|
3494
|
+
nautobot.apps.urls
|
|
3495
|
+
</a>
|
|
3496
|
+
</li>
|
|
3497
|
+
|
|
3498
|
+
|
|
3499
|
+
|
|
3500
|
+
|
|
3501
|
+
|
|
3502
|
+
|
|
3503
|
+
|
|
3504
|
+
|
|
3505
|
+
|
|
3506
|
+
<li class="md-nav__item">
|
|
3507
|
+
<a href="../../code-reference/nautobot/apps/utils.html" class="md-nav__link">
|
|
3508
|
+
nautobot.apps.utils
|
|
3509
|
+
</a>
|
|
3510
|
+
</li>
|
|
3511
|
+
|
|
3512
|
+
|
|
3513
|
+
|
|
3514
|
+
|
|
3515
|
+
|
|
3516
|
+
|
|
3517
|
+
|
|
3518
|
+
|
|
3519
|
+
|
|
3520
|
+
<li class="md-nav__item">
|
|
3521
|
+
<a href="../../code-reference/nautobot/apps/views.html" class="md-nav__link">
|
|
3522
|
+
nautobot.apps.views
|
|
3523
|
+
</a>
|
|
3524
|
+
</li>
|
|
3525
|
+
|
|
3526
|
+
|
|
3527
|
+
|
|
3528
|
+
|
|
3529
|
+
</ul>
|
|
3530
|
+
</nav>
|
|
3531
|
+
</li>
|
|
3532
|
+
|
|
3533
|
+
|
|
3534
|
+
|
|
3535
|
+
|
|
3536
|
+
</ul>
|
|
3537
|
+
</nav>
|
|
3538
|
+
</li>
|
|
3539
|
+
|
|
3540
|
+
|
|
3541
|
+
|
|
3542
|
+
|
|
3543
|
+
|
|
3544
|
+
|
|
3545
|
+
|
|
3546
|
+
|
|
3547
|
+
|
|
3548
|
+
|
|
3549
|
+
|
|
3550
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
3551
|
+
|
|
3552
|
+
|
|
3553
|
+
|
|
3554
|
+
|
|
3555
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_4" >
|
|
3556
|
+
|
|
3557
|
+
|
|
3558
|
+
|
|
3559
|
+
<label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
|
|
3560
|
+
Core Developer Guide
|
|
3561
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3562
|
+
</label>
|
|
3563
|
+
|
|
3564
|
+
<nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
|
|
3565
|
+
<label class="md-nav__title" for="__nav_4">
|
|
3566
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3567
|
+
Core Developer Guide
|
|
3568
|
+
</label>
|
|
3569
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
3570
|
+
|
|
3571
|
+
|
|
3572
|
+
|
|
3573
|
+
|
|
3574
|
+
|
|
3575
|
+
|
|
3576
|
+
<li class="md-nav__item">
|
|
3577
|
+
<a href="../../development/index.html" class="md-nav__link">
|
|
3578
|
+
Introduction
|
|
3579
|
+
</a>
|
|
3580
|
+
</li>
|
|
3581
|
+
|
|
3582
|
+
|
|
3583
|
+
|
|
3584
|
+
|
|
3585
|
+
|
|
3586
|
+
|
|
3587
|
+
|
|
3588
|
+
|
|
3589
|
+
|
|
3590
|
+
<li class="md-nav__item">
|
|
3591
|
+
<a href="../../development/getting-started.html" class="md-nav__link">
|
|
3592
|
+
Getting Started
|
|
3593
|
+
</a>
|
|
3594
|
+
</li>
|
|
3595
|
+
|
|
3596
|
+
|
|
3597
|
+
|
|
3598
|
+
|
|
3599
|
+
|
|
3600
|
+
|
|
3601
|
+
|
|
3602
|
+
|
|
3603
|
+
|
|
3604
|
+
<li class="md-nav__item">
|
|
3605
|
+
<a href="../../development/docker-compose-advanced-use-cases.html" class="md-nav__link">
|
|
3606
|
+
Advanced Docker Compose Usage
|
|
3607
|
+
</a>
|
|
3608
|
+
</li>
|
|
3609
|
+
|
|
3610
|
+
|
|
3611
|
+
|
|
3612
|
+
|
|
3613
|
+
|
|
3614
|
+
|
|
3615
|
+
|
|
3616
|
+
|
|
3617
|
+
|
|
3618
|
+
<li class="md-nav__item">
|
|
3619
|
+
<a href="../../development/best-practices.html" class="md-nav__link">
|
|
3620
|
+
Best Practices
|
|
3621
|
+
</a>
|
|
3622
|
+
</li>
|
|
3623
|
+
|
|
3624
|
+
|
|
3625
|
+
|
|
3626
|
+
|
|
3627
|
+
|
|
3628
|
+
|
|
3629
|
+
|
|
3630
|
+
|
|
3631
|
+
|
|
3632
|
+
<li class="md-nav__item">
|
|
3633
|
+
<a href="../../development/style-guide.html" class="md-nav__link">
|
|
3634
|
+
Style Guide
|
|
3635
|
+
</a>
|
|
3636
|
+
</li>
|
|
3637
|
+
|
|
3638
|
+
|
|
3639
|
+
|
|
3640
|
+
|
|
3641
|
+
|
|
3642
|
+
|
|
3643
|
+
|
|
3644
|
+
|
|
3645
|
+
|
|
3646
|
+
<li class="md-nav__item">
|
|
3647
|
+
<a href="../../development/extending-models.html" class="md-nav__link">
|
|
3648
|
+
Extending Models
|
|
3649
|
+
</a>
|
|
3650
|
+
</li>
|
|
3651
|
+
|
|
3652
|
+
|
|
3653
|
+
|
|
3654
|
+
|
|
3655
|
+
|
|
3656
|
+
|
|
3657
|
+
|
|
3658
|
+
|
|
3659
|
+
|
|
3660
|
+
<li class="md-nav__item">
|
|
3661
|
+
<a href="../../development/generic-views.html" class="md-nav__link">
|
|
3662
|
+
Generic Views
|
|
3663
|
+
</a>
|
|
3664
|
+
</li>
|
|
3665
|
+
|
|
3666
|
+
|
|
3667
|
+
|
|
3668
|
+
|
|
3669
|
+
|
|
3670
|
+
|
|
3671
|
+
|
|
3672
|
+
|
|
3673
|
+
|
|
3674
|
+
<li class="md-nav__item">
|
|
3675
|
+
<a href="../../development/testing.html" class="md-nav__link">
|
|
3676
|
+
Testing
|
|
3677
|
+
</a>
|
|
3678
|
+
</li>
|
|
3679
|
+
|
|
3680
|
+
|
|
3681
|
+
|
|
3682
|
+
|
|
3683
|
+
|
|
3684
|
+
|
|
3685
|
+
|
|
3686
|
+
|
|
3687
|
+
|
|
3688
|
+
<li class="md-nav__item">
|
|
3689
|
+
<a href="../../development/application-registry.html" class="md-nav__link">
|
|
3690
|
+
Application Registry
|
|
3691
|
+
</a>
|
|
3692
|
+
</li>
|
|
3693
|
+
|
|
3694
|
+
|
|
3695
|
+
|
|
3696
|
+
|
|
3697
|
+
|
|
3698
|
+
|
|
3699
|
+
|
|
3700
|
+
|
|
3701
|
+
|
|
3702
|
+
<li class="md-nav__item">
|
|
3703
|
+
<a href="../../development/templates.html" class="md-nav__link">
|
|
3704
|
+
Page Templates
|
|
3705
|
+
</a>
|
|
3706
|
+
</li>
|
|
3707
|
+
|
|
3708
|
+
|
|
3709
|
+
|
|
3710
|
+
|
|
3711
|
+
|
|
3712
|
+
|
|
3713
|
+
|
|
3714
|
+
|
|
3715
|
+
|
|
3716
|
+
<li class="md-nav__item">
|
|
3717
|
+
<a href="../../development/navigation-menu.html" class="md-nav__link">
|
|
3718
|
+
Navigation Menu
|
|
3719
|
+
</a>
|
|
3720
|
+
</li>
|
|
3721
|
+
|
|
3722
|
+
|
|
3723
|
+
|
|
3724
|
+
|
|
3725
|
+
|
|
3726
|
+
|
|
3727
|
+
|
|
3728
|
+
|
|
3729
|
+
|
|
3730
|
+
<li class="md-nav__item">
|
|
3731
|
+
<a href="../../development/homepage.html" class="md-nav__link">
|
|
3732
|
+
Home Page Panels
|
|
3733
|
+
</a>
|
|
3734
|
+
</li>
|
|
3735
|
+
|
|
3736
|
+
|
|
3737
|
+
|
|
3738
|
+
|
|
3739
|
+
|
|
3740
|
+
|
|
3741
|
+
|
|
3742
|
+
|
|
3743
|
+
|
|
3744
|
+
<li class="md-nav__item">
|
|
3745
|
+
<a href="../../development/user-preferences.html" class="md-nav__link">
|
|
3746
|
+
User Preferences
|
|
3747
|
+
</a>
|
|
3748
|
+
</li>
|
|
3749
|
+
|
|
3750
|
+
|
|
3751
|
+
|
|
3752
|
+
|
|
3753
|
+
|
|
3754
|
+
|
|
3755
|
+
|
|
3756
|
+
|
|
3757
|
+
|
|
3758
|
+
<li class="md-nav__item">
|
|
3759
|
+
<a href="../../development/release-checklist.html" class="md-nav__link">
|
|
3760
|
+
Release Checklist
|
|
3761
|
+
</a>
|
|
3762
|
+
</li>
|
|
3763
|
+
|
|
3764
|
+
|
|
3765
|
+
|
|
3766
|
+
|
|
3767
|
+
</ul>
|
|
3768
|
+
</nav>
|
|
3769
|
+
</li>
|
|
3770
|
+
|
|
3771
|
+
|
|
3772
|
+
|
|
3773
|
+
|
|
3774
|
+
|
|
3775
|
+
|
|
3776
|
+
|
|
3777
|
+
|
|
3778
|
+
|
|
3779
|
+
|
|
3780
|
+
|
|
3781
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
3782
|
+
|
|
3783
|
+
|
|
3784
|
+
|
|
3785
|
+
|
|
3786
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
|
|
3787
|
+
|
|
3788
|
+
|
|
3789
|
+
|
|
3790
|
+
<label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
|
|
3791
|
+
Release Notes
|
|
3792
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3793
|
+
</label>
|
|
3794
|
+
|
|
3795
|
+
<nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
|
|
3796
|
+
<label class="md-nav__title" for="__nav_5">
|
|
3797
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3798
|
+
Release Notes
|
|
3799
|
+
</label>
|
|
3800
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
3801
|
+
|
|
3802
|
+
|
|
3803
|
+
|
|
3804
|
+
|
|
3805
|
+
|
|
3806
|
+
|
|
3807
|
+
<li class="md-nav__item">
|
|
3808
|
+
<a href="../../release-notes/index.html" class="md-nav__link">
|
|
3809
|
+
Overview
|
|
3810
|
+
</a>
|
|
3811
|
+
</li>
|
|
3812
|
+
|
|
3813
|
+
|
|
3814
|
+
|
|
3815
|
+
|
|
3816
|
+
|
|
3817
|
+
|
|
3818
|
+
|
|
3819
|
+
|
|
3820
|
+
|
|
3821
|
+
<li class="md-nav__item">
|
|
3822
|
+
<a href="../../release-notes/version-1.6.html" class="md-nav__link">
|
|
3823
|
+
Version 1.6
|
|
3824
|
+
</a>
|
|
3825
|
+
</li>
|
|
3826
|
+
|
|
3827
|
+
|
|
3828
|
+
|
|
3829
|
+
|
|
3830
|
+
|
|
3831
|
+
|
|
3832
|
+
|
|
3833
|
+
|
|
3834
|
+
|
|
3835
|
+
<li class="md-nav__item">
|
|
3836
|
+
<a href="../../release-notes/version-1.5.html" class="md-nav__link">
|
|
3837
|
+
Version 1.5
|
|
3838
|
+
</a>
|
|
3839
|
+
</li>
|
|
3840
|
+
|
|
3841
|
+
|
|
3842
|
+
|
|
3843
|
+
|
|
3844
|
+
|
|
3845
|
+
|
|
3846
|
+
|
|
3847
|
+
|
|
3848
|
+
|
|
3849
|
+
<li class="md-nav__item">
|
|
3850
|
+
<a href="../../release-notes/version-1.4.html" class="md-nav__link">
|
|
3851
|
+
Version 1.4
|
|
3852
|
+
</a>
|
|
3853
|
+
</li>
|
|
3854
|
+
|
|
3855
|
+
|
|
3856
|
+
|
|
3857
|
+
|
|
3858
|
+
|
|
3859
|
+
|
|
3860
|
+
|
|
3861
|
+
|
|
3862
|
+
|
|
3863
|
+
<li class="md-nav__item">
|
|
3864
|
+
<a href="../../release-notes/version-1.3.html" class="md-nav__link">
|
|
3865
|
+
Version 1.3
|
|
3866
|
+
</a>
|
|
3867
|
+
</li>
|
|
3868
|
+
|
|
3869
|
+
|
|
3870
|
+
|
|
3871
|
+
|
|
3872
|
+
|
|
3873
|
+
|
|
3874
|
+
|
|
3875
|
+
|
|
3876
|
+
|
|
3877
|
+
<li class="md-nav__item">
|
|
3878
|
+
<a href="../../release-notes/version-1.2.html" class="md-nav__link">
|
|
3879
|
+
Version 1.2
|
|
3880
|
+
</a>
|
|
3881
|
+
</li>
|
|
3882
|
+
|
|
3883
|
+
|
|
3884
|
+
|
|
3885
|
+
|
|
3886
|
+
|
|
3887
|
+
|
|
3888
|
+
|
|
3889
|
+
|
|
3890
|
+
|
|
3891
|
+
<li class="md-nav__item">
|
|
3892
|
+
<a href="../../release-notes/version-1.1.html" class="md-nav__link">
|
|
3893
|
+
Version 1.1
|
|
3894
|
+
</a>
|
|
3895
|
+
</li>
|
|
3896
|
+
|
|
3897
|
+
|
|
3898
|
+
|
|
3899
|
+
|
|
3900
|
+
|
|
3901
|
+
|
|
3902
|
+
|
|
3903
|
+
|
|
3904
|
+
|
|
3905
|
+
<li class="md-nav__item">
|
|
3906
|
+
<a href="../../release-notes/version-1.0.html" class="md-nav__link">
|
|
3907
|
+
Version 1.0
|
|
3908
|
+
</a>
|
|
3909
|
+
</li>
|
|
3910
|
+
|
|
3911
|
+
|
|
3912
|
+
|
|
3913
|
+
|
|
3914
|
+
</ul>
|
|
3915
|
+
</nav>
|
|
3916
|
+
</li>
|
|
3917
|
+
|
|
3918
|
+
|
|
3919
|
+
|
|
3920
|
+
|
|
3921
|
+
|
|
3922
|
+
|
|
3923
|
+
|
|
3924
|
+
|
|
3925
|
+
|
|
3926
|
+
|
|
3927
|
+
|
|
3928
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
3929
|
+
|
|
3930
|
+
|
|
3931
|
+
|
|
3932
|
+
|
|
3933
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_6" >
|
|
3934
|
+
|
|
3935
|
+
|
|
3936
|
+
|
|
3937
|
+
<label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
|
|
3938
|
+
Nautobot Apps
|
|
3939
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3940
|
+
</label>
|
|
3941
|
+
|
|
3942
|
+
<nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
|
|
3943
|
+
<label class="md-nav__title" for="__nav_6">
|
|
3944
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3945
|
+
Nautobot Apps
|
|
3946
|
+
</label>
|
|
3947
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
3948
|
+
|
|
3949
|
+
|
|
3950
|
+
|
|
3951
|
+
|
|
3952
|
+
|
|
3953
|
+
|
|
3954
|
+
<li class="md-nav__item">
|
|
3955
|
+
<a href="../../apps/index.html" class="md-nav__link">
|
|
3956
|
+
Overview
|
|
3957
|
+
</a>
|
|
3958
|
+
</li>
|
|
3959
|
+
|
|
3960
|
+
|
|
3961
|
+
|
|
3962
|
+
|
|
3963
|
+
|
|
3964
|
+
|
|
3965
|
+
|
|
3966
|
+
|
|
3967
|
+
|
|
3968
|
+
|
|
3969
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
3970
|
+
|
|
3971
|
+
|
|
3972
|
+
|
|
3973
|
+
|
|
3974
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_6_2" >
|
|
3975
|
+
|
|
3976
|
+
|
|
3977
|
+
|
|
3978
|
+
<label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
|
|
3979
|
+
Network to Code App Docs
|
|
3980
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3981
|
+
</label>
|
|
3982
|
+
|
|
3983
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
|
|
3984
|
+
<label class="md-nav__title" for="__nav_6_2">
|
|
3985
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3986
|
+
Network to Code App Docs
|
|
3987
|
+
</label>
|
|
3988
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
3989
|
+
|
|
3990
|
+
|
|
3991
|
+
|
|
3992
|
+
|
|
3993
|
+
|
|
3994
|
+
|
|
3995
|
+
<li class="md-nav__item">
|
|
3996
|
+
<a href="https://docs.nautobot.com/projects/chatops/en/latest/" class="md-nav__link">
|
|
3997
|
+
Nautobot ChatOps
|
|
3998
|
+
</a>
|
|
3999
|
+
</li>
|
|
4000
|
+
|
|
4001
|
+
|
|
4002
|
+
|
|
4003
|
+
|
|
4004
|
+
|
|
4005
|
+
|
|
4006
|
+
|
|
4007
|
+
|
|
4008
|
+
|
|
4009
|
+
<li class="md-nav__item">
|
|
4010
|
+
<a href="https://docs.nautobot.com/projects/circuit-maintenance/en/latest/" class="md-nav__link">
|
|
4011
|
+
Nautobot Circuit Maintenance
|
|
4012
|
+
</a>
|
|
4013
|
+
</li>
|
|
4014
|
+
|
|
4015
|
+
|
|
4016
|
+
|
|
4017
|
+
|
|
4018
|
+
|
|
4019
|
+
|
|
4020
|
+
|
|
4021
|
+
|
|
4022
|
+
|
|
4023
|
+
<li class="md-nav__item">
|
|
4024
|
+
<a href="https://docs.nautobot.com/projects/device-lifecycle/en/latest/" class="md-nav__link">
|
|
4025
|
+
Nautobot Device LifeCycle Management
|
|
4026
|
+
</a>
|
|
4027
|
+
</li>
|
|
4028
|
+
|
|
4029
|
+
|
|
4030
|
+
|
|
4031
|
+
|
|
4032
|
+
|
|
4033
|
+
|
|
4034
|
+
|
|
4035
|
+
|
|
4036
|
+
|
|
4037
|
+
<li class="md-nav__item">
|
|
4038
|
+
<a href="https://docs.nautobot.com/projects/device-onboarding/en/latest/" class="md-nav__link">
|
|
4039
|
+
Nautobot Device Onboarding
|
|
4040
|
+
</a>
|
|
4041
|
+
</li>
|
|
4042
|
+
|
|
4043
|
+
|
|
4044
|
+
|
|
4045
|
+
|
|
4046
|
+
|
|
4047
|
+
|
|
4048
|
+
|
|
4049
|
+
|
|
4050
|
+
|
|
4051
|
+
<li class="md-nav__item">
|
|
4052
|
+
<a href="https://nautobot-plugin-firewall-models.readthedocs.io/en/latest/" class="md-nav__link">
|
|
4053
|
+
Nautobot Firewall Models
|
|
4054
|
+
</a>
|
|
4055
|
+
</li>
|
|
4056
|
+
|
|
4057
|
+
|
|
4058
|
+
|
|
4059
|
+
|
|
4060
|
+
|
|
4061
|
+
|
|
4062
|
+
|
|
4063
|
+
|
|
4064
|
+
|
|
4065
|
+
<li class="md-nav__item">
|
|
4066
|
+
<a href="https://docs.nautobot.com/projects/golden-config/" class="md-nav__link">
|
|
4067
|
+
Nautobot Golden Configuration
|
|
4068
|
+
</a>
|
|
4069
|
+
</li>
|
|
4070
|
+
|
|
4071
|
+
|
|
4072
|
+
|
|
4073
|
+
|
|
4074
|
+
|
|
4075
|
+
|
|
4076
|
+
|
|
4077
|
+
|
|
4078
|
+
|
|
4079
|
+
<li class="md-nav__item">
|
|
4080
|
+
<a href="https://docs.nautobot.com/projects/plugin-nornir/en/latest/" class="md-nav__link">
|
|
4081
|
+
Nautobot Plugin Nornir
|
|
4082
|
+
</a>
|
|
4083
|
+
</li>
|
|
4084
|
+
|
|
4085
|
+
|
|
4086
|
+
|
|
4087
|
+
|
|
4088
|
+
|
|
4089
|
+
|
|
4090
|
+
|
|
4091
|
+
|
|
4092
|
+
|
|
4093
|
+
<li class="md-nav__item">
|
|
4094
|
+
<a href="https://docs.nautobot.com/projects/ssot/en/latest/" class="md-nav__link">
|
|
4095
|
+
Nautobot Single Source of Truth
|
|
4096
|
+
</a>
|
|
4097
|
+
</li>
|
|
4098
|
+
|
|
4099
|
+
|
|
4100
|
+
|
|
4101
|
+
|
|
4102
|
+
</ul>
|
|
4103
|
+
</nav>
|
|
4104
|
+
</li>
|
|
4105
|
+
|
|
4106
|
+
|
|
4107
|
+
|
|
4108
|
+
|
|
4109
|
+
|
|
4110
|
+
|
|
4111
|
+
|
|
4112
|
+
|
|
4113
|
+
|
|
4114
|
+
<li class="md-nav__item">
|
|
4115
|
+
<a href="../../apps/nautobot-apps.html" class="md-nav__link">
|
|
4116
|
+
Community Apps
|
|
4117
|
+
</a>
|
|
4118
|
+
</li>
|
|
4119
|
+
|
|
4120
|
+
|
|
4121
|
+
|
|
4122
|
+
|
|
4123
|
+
</ul>
|
|
4124
|
+
</nav>
|
|
4125
|
+
</li>
|
|
4126
|
+
|
|
4127
|
+
|
|
4128
|
+
|
|
4129
|
+
|
|
4130
|
+
|
|
4131
|
+
|
|
4132
|
+
|
|
4133
|
+
|
|
4134
|
+
|
|
4135
|
+
|
|
4136
|
+
<li class="md-nav__item">
|
|
4137
|
+
<a href="https://docs.nautobot.com/" class="md-nav__link">
|
|
4138
|
+
Nautobot Docs Home ↗︎
|
|
4139
|
+
</a>
|
|
4140
|
+
</li>
|
|
4141
|
+
|
|
4142
|
+
|
|
4143
|
+
|
|
4144
|
+
</ul>
|
|
4145
|
+
</nav>
|
|
4146
|
+
</div>
|
|
4147
|
+
</div>
|
|
4148
|
+
</div>
|
|
4149
|
+
|
|
4150
|
+
|
|
4151
|
+
|
|
4152
|
+
<div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
|
|
4153
|
+
<div class="md-sidebar__scrollwrap">
|
|
4154
|
+
<div class="md-sidebar__inner">
|
|
4155
|
+
|
|
4156
|
+
|
|
4157
|
+
<nav class="md-nav md-nav--secondary" aria-label="Table of contents">
|
|
4158
|
+
|
|
4159
|
+
|
|
4160
|
+
|
|
4161
|
+
|
|
4162
|
+
|
|
4163
|
+
|
|
4164
|
+
<label class="md-nav__title" for="__toc">
|
|
4165
|
+
<span class="md-nav__icon md-icon"></span>
|
|
4166
|
+
Table of contents
|
|
4167
|
+
</label>
|
|
4168
|
+
<ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
|
|
4169
|
+
|
|
4170
|
+
<li class="md-nav__item">
|
|
4171
|
+
<a href="#cve-2025-49142" class="md-nav__link">
|
|
4172
|
+
CVE-2025-49142
|
|
4173
|
+
</a>
|
|
4174
|
+
|
|
4175
|
+
</li>
|
|
4176
|
+
|
|
4177
|
+
<li class="md-nav__item">
|
|
4178
|
+
<a href="#cve-2025-49143" class="md-nav__link">
|
|
4179
|
+
CVE-2025-49143
|
|
4180
|
+
</a>
|
|
4181
|
+
|
|
4182
|
+
</li>
|
|
4183
|
+
|
|
4184
|
+
<li class="md-nav__item">
|
|
4185
|
+
<a href="#cve-2024-36112" class="md-nav__link">
|
|
4186
|
+
CVE-2024-36112
|
|
4187
|
+
</a>
|
|
4188
|
+
|
|
4189
|
+
</li>
|
|
4190
|
+
|
|
4191
|
+
<li class="md-nav__item">
|
|
4192
|
+
<a href="#cve-2024-34707" class="md-nav__link">
|
|
4193
|
+
CVE-2024-34707
|
|
4194
|
+
</a>
|
|
4195
|
+
|
|
4196
|
+
</li>
|
|
4197
|
+
|
|
4198
|
+
<li class="md-nav__item">
|
|
4199
|
+
<a href="#cve-2024-32979" class="md-nav__link">
|
|
4200
|
+
CVE-2024-32979
|
|
4201
|
+
</a>
|
|
4202
|
+
|
|
4203
|
+
</li>
|
|
4204
|
+
|
|
4205
|
+
<li class="md-nav__item">
|
|
4206
|
+
<a href="#cve-2024-29199" class="md-nav__link">
|
|
4207
|
+
CVE-2024-29199
|
|
4208
|
+
</a>
|
|
4209
|
+
|
|
4210
|
+
</li>
|
|
4211
|
+
|
|
4212
|
+
<li class="md-nav__item">
|
|
4213
|
+
<a href="#cve-2024-23345" class="md-nav__link">
|
|
4214
|
+
CVE-2024-23345
|
|
4215
|
+
</a>
|
|
4216
|
+
|
|
4217
|
+
</li>
|
|
4218
|
+
|
|
4219
|
+
<li class="md-nav__item">
|
|
4220
|
+
<a href="#cve-2023-51649" class="md-nav__link">
|
|
4221
|
+
CVE-2023-51649
|
|
4222
|
+
</a>
|
|
4223
|
+
|
|
4224
|
+
</li>
|
|
4225
|
+
|
|
4226
|
+
<li class="md-nav__item">
|
|
4227
|
+
<a href="#cve-2023-50263" class="md-nav__link">
|
|
4228
|
+
CVE-2023-50263
|
|
4229
|
+
</a>
|
|
4230
|
+
|
|
4231
|
+
</li>
|
|
4232
|
+
|
|
4233
|
+
<li class="md-nav__item">
|
|
4234
|
+
<a href="#cve-2023-48705" class="md-nav__link">
|
|
4235
|
+
CVE-2023-48705
|
|
4236
|
+
</a>
|
|
4237
|
+
|
|
4238
|
+
</li>
|
|
4239
|
+
|
|
4240
|
+
<li class="md-nav__item">
|
|
4241
|
+
<a href="#cve-2023-46128" class="md-nav__link">
|
|
4242
|
+
CVE-2023-46128
|
|
4243
|
+
</a>
|
|
4244
|
+
|
|
4245
|
+
</li>
|
|
4246
|
+
|
|
4247
|
+
<li class="md-nav__item">
|
|
4248
|
+
<a href="#cve-2023-25657" class="md-nav__link">
|
|
4249
|
+
CVE-2023-25657
|
|
4250
|
+
</a>
|
|
4251
|
+
|
|
4252
|
+
</li>
|
|
4253
|
+
|
|
4254
|
+
</ul>
|
|
4255
|
+
|
|
4256
|
+
</nav>
|
|
4257
|
+
</div>
|
|
4258
|
+
</div>
|
|
4259
|
+
</div>
|
|
4260
|
+
|
|
4261
|
+
|
|
4262
|
+
|
|
4263
|
+
<div class="md-content" data-md-component="content">
|
|
4264
|
+
<article class="md-content__inner md-typeset">
|
|
4265
|
+
|
|
4266
|
+
|
|
4267
|
+
|
|
4268
|
+
|
|
4269
|
+
|
|
4270
|
+
|
|
4271
|
+
|
|
4272
|
+
<h1 id="nautobot-security-notices">Nautobot Security Notices<a class="headerlink" href="#nautobot-security-notices" title="Permanent link">¶</a></h1>
|
|
4273
|
+
<p>As a part of the Nautobot development team's commitment to security, we maintain the below historical list of security issues which have been fixed and disclosed. Note that this list <strong>only</strong> includes issues in Nautobot itself; while we frequently update our library dependencies to keep them up-to-date and free of known security issues therein, any reported issues in such libraries, and the corresponding updates to Nautobot's specified dependencies, are out of scope for this document.</p>
|
|
4274
|
+
<h2 id="cve-2025-49142">CVE-2025-49142<a class="headerlink" href="#cve-2025-49142" title="Permanent link">¶</a></h2>
|
|
4275
|
+
<!-- markdownlint-disable MD033 -->
|
|
4276
|
+
<table>
|
|
4277
|
+
<tr>
|
|
4278
|
+
<th>Disclosure Date</th>
|
|
4279
|
+
<td>June 9, 2025</td>
|
|
4280
|
+
</tr>
|
|
4281
|
+
<tr>
|
|
4282
|
+
<th>Summary</th>
|
|
4283
|
+
<td>Due to insufficient security configuration of the Jinja2 templating feature used in computed fields, custom links, etc. in Nautobot:
|
|
4284
|
+
<ol>
|
|
4285
|
+
<li>A malicious user could configure this feature set in ways that could expose the value of Secrets defined in Nautobot when the templated content is rendered.</li>
|
|
4286
|
+
<li>A malicious user could configure this feature set in ways that could call Python APIs to modify data within Nautobot when the templated content is rendered, bypassing the object permissions assigned to the viewing user.</li>
|
|
4287
|
+
</ol>
|
|
4288
|
+
</td>
|
|
4289
|
+
</tr>
|
|
4290
|
+
<tr>
|
|
4291
|
+
<th>Full Description</th>
|
|
4292
|
+
<td><a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-wjw6-95h5-4jpx">GHSA-wjw6-95h5-4jpx</a></td>
|
|
4293
|
+
</tr>
|
|
4294
|
+
<tr>
|
|
4295
|
+
<th>Affected Versions</th>
|
|
4296
|
+
<td>
|
|
4297
|
+
<ul>
|
|
4298
|
+
<li><1.6.32</li>
|
|
4299
|
+
<li>≥2.0.0, <2.4.10</li>
|
|
4300
|
+
</ul>
|
|
4301
|
+
</td>
|
|
4302
|
+
</tr>
|
|
4303
|
+
<tr>
|
|
4304
|
+
<th>Patched Versions</th>
|
|
4305
|
+
<td>
|
|
4306
|
+
<ul>
|
|
4307
|
+
<li>1.6.32 (<a href="https://github.com/nautobot/nautobot/commit/1c59263fa0284b7ad5293292c60ed03725a4603f">patch</a>)</li>
|
|
4308
|
+
<li>2.4.10 (<a href="https://github.com/nautobot/nautobot/commit/a8356bc06642de9c7e6b71a8c89bea6f8a86702b">patch</a>)</li>
|
|
4309
|
+
</ul>
|
|
4310
|
+
</td>
|
|
4311
|
+
</tr>
|
|
4312
|
+
</table>
|
|
4313
|
+
|
|
4314
|
+
<h2 id="cve-2025-49143">CVE-2025-49143<a class="headerlink" href="#cve-2025-49143" title="Permanent link">¶</a></h2>
|
|
4315
|
+
<!-- markdownlint-disable MD033 -->
|
|
4316
|
+
<table>
|
|
4317
|
+
<tr>
|
|
4318
|
+
<th>Disclosure Date</th>
|
|
4319
|
+
<td>June 9, 2025</td>
|
|
4320
|
+
</tr>
|
|
4321
|
+
<tr>
|
|
4322
|
+
<th>Summary</th>
|
|
4323
|
+
<td>Files uploaded by users to Nautobot's <code>MEDIA_ROOT</code> directory, including DeviceType image attachments as well as images attached to a Location, Device, or Rack, are served to users via a URL endpoint that was not enforcing user authentication. As a consequence, such files can be retrieved by anonymous users who know or can guess the correct URL for a given file.</td>
|
|
4324
|
+
</tr>
|
|
4325
|
+
<tr>
|
|
4326
|
+
<th>Full Description</th>
|
|
4327
|
+
<td><a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-rh67-4c8j-hjjh">GHSA-rh67-4c8j-hjjh</a></td>
|
|
4328
|
+
</tr>
|
|
4329
|
+
<tr>
|
|
4330
|
+
<th>Affected Versions</th>
|
|
4331
|
+
<td>
|
|
4332
|
+
<ul>
|
|
4333
|
+
<li><1.6.32</li>
|
|
4334
|
+
<li>≥2.0.0, <2.4.10</li>
|
|
4335
|
+
</ul>
|
|
4336
|
+
</td>
|
|
4337
|
+
</tr>
|
|
4338
|
+
<tr>
|
|
4339
|
+
<th>Patched Versions</th>
|
|
4340
|
+
<td>
|
|
4341
|
+
<ul>
|
|
4342
|
+
<li>1.6.32 (<a href="https://github.com/nautobot/nautobot/commit/d99a53b065129cff3a0fa9abe7355a9ef1ad4c95">patch</a>)</li>
|
|
4343
|
+
<li>2.4.10 (<a href="https://github.com/nautobot/nautobot/commit/9c892dc300429948a4714f743c9c2879d8987340">patch</a>)</li>
|
|
4344
|
+
</ul>
|
|
4345
|
+
</td>
|
|
4346
|
+
</tr>
|
|
4347
|
+
</table>
|
|
4348
|
+
|
|
4349
|
+
<h2 id="cve-2024-36112">CVE-2024-36112<a class="headerlink" href="#cve-2024-36112" title="Permanent link">¶</a></h2>
|
|
4350
|
+
<!-- markdownlint-disable MD033 -->
|
|
4351
|
+
<table>
|
|
4352
|
+
<tr>
|
|
4353
|
+
<th>Disclosure Date</th>
|
|
4354
|
+
<td>May 28, 2024</td>
|
|
4355
|
+
</tr>
|
|
4356
|
+
<tr>
|
|
4357
|
+
<th>Summary</th>
|
|
4358
|
+
<td>A user with permissions to view Dynamic Group records can use the Dynamic Group detail UI view and/or the Dynamic Group Members REST API view to list the objects that are members of a given Dynamic Group. Nautobot failed to restrict these listings based on the member object permissions - for example a Dynamic Group of Device objects would list all Devices that it contains, regardless of the user's <code>dcim.view_device</code> permissions or lack thereof.</td>
|
|
4359
|
+
</tr>
|
|
4360
|
+
<tr>
|
|
4361
|
+
<th>Full Description</th>
|
|
4362
|
+
<td><a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-qmjf-wc2h-6x3q">GHSA-qmjf-wc2h-6x3q</a></td>
|
|
4363
|
+
</tr>
|
|
4364
|
+
<tr>
|
|
4365
|
+
<th>Affected Versions</th>
|
|
4366
|
+
<td>
|
|
4367
|
+
<ul>
|
|
4368
|
+
<li>≥1.3.0, <1.6.23</li>
|
|
4369
|
+
<li>≥2.0.0, <2.2.5</li>
|
|
4370
|
+
</ul>
|
|
4371
|
+
</td>
|
|
4372
|
+
</tr>
|
|
4373
|
+
<tr>
|
|
4374
|
+
<th>Patched Versions</th>
|
|
4375
|
+
<td>
|
|
4376
|
+
<ul>
|
|
4377
|
+
<li>1.6.23 (<a href="https://github.com/nautobot/nautobot/commit/3a63aa1327f943b2ac8452757ea2e4d403387ad6">patch</a>)</li>
|
|
4378
|
+
<li>2.2.5 (<a href="https://github.com/nautobot/nautobot/commit/4d1ff2abe2775b0a6fb16e6d1d503a78226a6f8e">patch</a>)</li>
|
|
4379
|
+
</ul>
|
|
4380
|
+
</td>
|
|
4381
|
+
</tr>
|
|
4382
|
+
</table>
|
|
4383
|
+
|
|
4384
|
+
<h2 id="cve-2024-34707">CVE-2024-34707<a class="headerlink" href="#cve-2024-34707" title="Permanent link">¶</a></h2>
|
|
4385
|
+
<!-- markdownlint-disable MD033 -->
|
|
4386
|
+
<table>
|
|
4387
|
+
<tr>
|
|
4388
|
+
<th>Disclosure Date</th>
|
|
4389
|
+
<td>May 13, 2024</td>
|
|
4390
|
+
</tr>
|
|
4391
|
+
<tr>
|
|
4392
|
+
<th>Summary</th>
|
|
4393
|
+
<td>A Nautobot user with admin privileges can modify the <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and/or <code>BANNER_LOGIN</code> configuration settings to inject arbitrary HTML, potentially exposing Nautobot users to security issues such as cross-site scripting (stored XSS).</td>
|
|
4394
|
+
</tr>
|
|
4395
|
+
<tr>
|
|
4396
|
+
<th>Full Description</th>
|
|
4397
|
+
<td><a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-r2hr-4v48-fjv3">GHSA-r2hr-4v48-fjv3</a></td>
|
|
4398
|
+
</tr>
|
|
4399
|
+
<tr>
|
|
4400
|
+
<th>Affected Versions</th>
|
|
4401
|
+
<td>
|
|
4402
|
+
<ul>
|
|
4403
|
+
<li><1.6.22</li>
|
|
4404
|
+
<li>≥2.0.0, <2.2.4</li>
|
|
4405
|
+
</ul>
|
|
4406
|
+
</td>
|
|
4407
|
+
</tr>
|
|
4408
|
+
<tr>
|
|
4409
|
+
<th>Patched Versions</th>
|
|
4410
|
+
<td>
|
|
4411
|
+
<ul>
|
|
4412
|
+
<li>1.6.22 (<a href="https://github.com/nautobot/nautobot/commit/4f0a66bd6307bfe0e0acb899233e0d4ad516f51c">patch</a>)</li>
|
|
4413
|
+
<li>2.2.4 (<a href="https://github.com/nautobot/nautobot/commit/f640aedc69c848d3d1be57f0300fc40033ff6423">patch</a>)</li>
|
|
4414
|
+
</ul>
|
|
4415
|
+
</td>
|
|
4416
|
+
</tr>
|
|
4417
|
+
</table>
|
|
4418
|
+
|
|
4419
|
+
<h2 id="cve-2024-32979">CVE-2024-32979<a class="headerlink" href="#cve-2024-32979" title="Permanent link">¶</a></h2>
|
|
4420
|
+
<!-- markdownlint-disable MD033 -->
|
|
4421
|
+
<table>
|
|
4422
|
+
<tr>
|
|
4423
|
+
<th>Disclosure Date</th>
|
|
4424
|
+
<td>April 30, 2024</td>
|
|
4425
|
+
</tr>
|
|
4426
|
+
<tr>
|
|
4427
|
+
<th>Summary</th>
|
|
4428
|
+
<td>Due to improper handling and escaping of user-provided query parameters, a maliciously crafted Nautobot URL could potentially be used to execute a Reflected Cross-Site Scripting (Reflected XSS) attack against users.</td>
|
|
4429
|
+
</tr>
|
|
4430
|
+
<tr>
|
|
4431
|
+
<th>Full Description</th>
|
|
4432
|
+
<td><a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-jxgr-gcj5-cqqg">GHSA-jxgr-gcj5-cqqg</a></td>
|
|
4433
|
+
</tr>
|
|
4434
|
+
<tr>
|
|
4435
|
+
<th>Affected Versions</th>
|
|
4436
|
+
<td>
|
|
4437
|
+
<ul>
|
|
4438
|
+
<li>≥1.5.0, <1.6.20</li>
|
|
4439
|
+
<li>≥2.0.0, <2.2.3</li>
|
|
4440
|
+
</ul>
|
|
4441
|
+
</td>
|
|
4442
|
+
</tr>
|
|
4443
|
+
<tr>
|
|
4444
|
+
<th>Patched Versions</th>
|
|
4445
|
+
<td>
|
|
4446
|
+
<ul>
|
|
4447
|
+
<li>1.6.20 (<a href="https://github.com/nautobot/nautobot/commit/2ea5797ea43646d5d8b29433e4c707b5a9758146">patch</a>)</li>
|
|
4448
|
+
<li>2.2.3 (<a href="https://github.com/nautobot/nautobot/commit/42440ebd9b381534ad89d62420ebea00d703d64e">patch</a>)</li>
|
|
4449
|
+
</ul>
|
|
4450
|
+
</td>
|
|
4451
|
+
</tr>
|
|
4452
|
+
</table>
|
|
4453
|
+
|
|
4454
|
+
<h2 id="cve-2024-29199">CVE-2024-29199<a class="headerlink" href="#cve-2024-29199" title="Permanent link">¶</a></h2>
|
|
4455
|
+
<!-- markdownlint-disable MD033 -->
|
|
4456
|
+
<table>
|
|
4457
|
+
<tr>
|
|
4458
|
+
<th>Disclosure Date</th>
|
|
4459
|
+
<td>March 25, 2024</td>
|
|
4460
|
+
</tr>
|
|
4461
|
+
<tr>
|
|
4462
|
+
<th>Summary</th>
|
|
4463
|
+
<td>A number of Nautobot URL endpoints were found to be improperly accessible to unauthenticated (anonymous) users and therefore could potentially disclose sensitive information.</td>
|
|
4464
|
+
</tr>
|
|
4465
|
+
<tr>
|
|
4466
|
+
<th>Full Description</th>
|
|
4467
|
+
<td><a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a></td>
|
|
4468
|
+
</tr>
|
|
4469
|
+
<tr>
|
|
4470
|
+
<th>Affected Versions</th>
|
|
4471
|
+
<td>
|
|
4472
|
+
<ul>
|
|
4473
|
+
<li><1.6.16</li>
|
|
4474
|
+
<li>≥2.0.0, <2.1.9</li>
|
|
4475
|
+
</ul>
|
|
4476
|
+
</td>
|
|
4477
|
+
</tr>
|
|
4478
|
+
<tr>
|
|
4479
|
+
<th>Patched Versions</th>
|
|
4480
|
+
<td>
|
|
4481
|
+
<ul>
|
|
4482
|
+
<li>1.6.16 (<a href="https://github.com/nautobot/nautobot/commit/2fd95c365f8477b26e06d60b999ddd36882d5750">patch</a>)</li>
|
|
4483
|
+
<li>2.1.9 (<a href="https://github.com/nautobot/nautobot/commit/dd623e6c3307f48b6357fcc91925bcad5192abfb">patch</a>)</li>
|
|
4484
|
+
</ul>
|
|
4485
|
+
</td>
|
|
4486
|
+
</tr>
|
|
4487
|
+
</table>
|
|
4488
|
+
|
|
4489
|
+
<h2 id="cve-2024-23345">CVE-2024-23345<a class="headerlink" href="#cve-2024-23345" title="Permanent link">¶</a></h2>
|
|
4490
|
+
<!-- markdownlint-disable MD033 -->
|
|
4491
|
+
<table>
|
|
4492
|
+
<tr>
|
|
4493
|
+
<th>Disclosure Date</th>
|
|
4494
|
+
<td>January 22, 2024</td>
|
|
4495
|
+
</tr>
|
|
4496
|
+
<tr>
|
|
4497
|
+
<th>Summary</th>
|
|
4498
|
+
<td>Due to inadequate input sanitization, user-editable fields that support Markdown rendering of their contents could potentially be susceptible to cross-site scripting (XSS) attacks via maliciously crafted data.</td>
|
|
4499
|
+
</tr>
|
|
4500
|
+
<tr>
|
|
4501
|
+
<th>Full Description</th>
|
|
4502
|
+
<td><a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-v4xv-795h-rv4h">GHSA-v4xv-795h-rv4h</a></td>
|
|
4503
|
+
</tr>
|
|
4504
|
+
<tr>
|
|
4505
|
+
<th>Affected Versions</th>
|
|
4506
|
+
<td>
|
|
4507
|
+
<ul>
|
|
4508
|
+
<li><1.6.10</li>
|
|
4509
|
+
<li>≥2.0.0, <2.1.2</li>
|
|
4510
|
+
</ul>
|
|
4511
|
+
</td>
|
|
4512
|
+
</tr>
|
|
4513
|
+
<tr>
|
|
4514
|
+
<th>Patched Versions</th>
|
|
4515
|
+
<td>
|
|
4516
|
+
<ul>
|
|
4517
|
+
<li>1.6.10 (<a href="https://github.com/nautobot/nautobot/commit/64312a4297b5ca49b6cdedf477e41e8e4fd61cce">patch</a>)</li>
|
|
4518
|
+
<li>2.1.2 (<a href="https://github.com/nautobot/nautobot/commit/17effcbe84a72150c82b138565c311bbee357e80">patch</a>)</li>
|
|
4519
|
+
</ul>
|
|
4520
|
+
</td>
|
|
4521
|
+
</tr>
|
|
4522
|
+
</table>
|
|
4523
|
+
|
|
4524
|
+
<h2 id="cve-2023-51649">CVE-2023-51649<a class="headerlink" href="#cve-2023-51649" title="Permanent link">¶</a></h2>
|
|
4525
|
+
<!-- markdownlint-disable MD033 -->
|
|
4526
|
+
<table>
|
|
4527
|
+
<tr>
|
|
4528
|
+
<th>Disclosure Date</th>
|
|
4529
|
+
<td>December 22, 2023</td>
|
|
4530
|
+
</tr>
|
|
4531
|
+
<tr>
|
|
4532
|
+
<th>Summary</th>
|
|
4533
|
+
<td>When submitting a Job to run via a Job Button, only the model-level permission was checked (i.e., does the user have permission to run Jobs in general?). Object-level permissions (i.e., does the user have permission to run this specific Job?) were not enforced, possibly allowing a user to run JobButton Jobs that they should not be permitted to run.</td>
|
|
4534
|
+
</tr>
|
|
4535
|
+
<tr>
|
|
4536
|
+
<th>Full Description</th>
|
|
4537
|
+
<td><a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-vf5m-xrhm-v999">GHSA-vf5m-xrhm-v999</a></td>
|
|
4538
|
+
</tr>
|
|
4539
|
+
<tr>
|
|
4540
|
+
<th>Affected Versions</th>
|
|
4541
|
+
<td>
|
|
4542
|
+
<ul>
|
|
4543
|
+
<li>≥1.5.14, <1.6.8</li>
|
|
4544
|
+
<li>≥2.0.0, <2.1.0</li>
|
|
4545
|
+
</ul>
|
|
4546
|
+
</td>
|
|
4547
|
+
</tr>
|
|
4548
|
+
<tr>
|
|
4549
|
+
<th>Patched Versions</th>
|
|
4550
|
+
<td>
|
|
4551
|
+
<ul>
|
|
4552
|
+
<li>1.6.8 (<a href="https://github.com/nautobot/nautobot/commit/d33d0c15a36948c45244e5b5e10bc79b8e62de7f">patch</a>)</li>
|
|
4553
|
+
<li>2.1.0 (<a href="https://github.com/nautobot/nautobot/commit/3d964f996f4926126c1d7853ca87b2ff475997a2">patch</a>)</li>
|
|
4554
|
+
</ul>
|
|
4555
|
+
</td>
|
|
4556
|
+
</tr>
|
|
4557
|
+
</table>
|
|
4558
|
+
|
|
4559
|
+
<h2 id="cve-2023-50263">CVE-2023-50263<a class="headerlink" href="#cve-2023-50263" title="Permanent link">¶</a></h2>
|
|
4560
|
+
<!-- markdownlint-disable MD033 -->
|
|
4561
|
+
<table>
|
|
4562
|
+
<tr>
|
|
4563
|
+
<th>Disclosure Date</th>
|
|
4564
|
+
<td>December 12, 2023</td>
|
|
4565
|
+
</tr>
|
|
4566
|
+
<tr>
|
|
4567
|
+
<th>Summary</th>
|
|
4568
|
+
<td>Unauthenticated (anonymous) users who know the name of a specific file uploaded as a Job input can potentially download the contents of that file from Nautobot.</td>
|
|
4569
|
+
</tr>
|
|
4570
|
+
<tr>
|
|
4571
|
+
<th>Full Description</th>
|
|
4572
|
+
<td><a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-75mc-3pjc-727q">GHSA-75mc-3pjc-727q</a></td>
|
|
4573
|
+
</tr>
|
|
4574
|
+
<tr>
|
|
4575
|
+
<th>Affected Versions</th>
|
|
4576
|
+
<td>
|
|
4577
|
+
<ul>
|
|
4578
|
+
<li>≥1.1.0, <1.6.7</li>
|
|
4579
|
+
<li>≥2.0.0, <2.0.6</li>
|
|
4580
|
+
</ul>
|
|
4581
|
+
</td>
|
|
4582
|
+
</tr>
|
|
4583
|
+
<tr>
|
|
4584
|
+
<th>Patched Versions</th>
|
|
4585
|
+
<td>
|
|
4586
|
+
<ul>
|
|
4587
|
+
<li>1.6.7 (<a href="https://github.com/nautobot/nautobot/commit/7c4cf3137f45f1541f09f2f6a7f8850cd3a2eaee">patch</a>)</li>
|
|
4588
|
+
<li>2.0.6 (<a href="https://github.com/nautobot/nautobot/commit/458280c359a4833a20da294eaf4b8d55edc91cee">patch</a>)</li>
|
|
4589
|
+
</ul>
|
|
4590
|
+
</td>
|
|
4591
|
+
</tr>
|
|
4592
|
+
</table>
|
|
4593
|
+
|
|
4594
|
+
<h2 id="cve-2023-48705">CVE-2023-48705<a class="headerlink" href="#cve-2023-48705" title="Permanent link">¶</a></h2>
|
|
4595
|
+
<!-- markdownlint-disable MD033 -->
|
|
4596
|
+
<table>
|
|
4597
|
+
<tr>
|
|
4598
|
+
<th>Disclosure Date</th>
|
|
4599
|
+
<td>November 21, 2023</td>
|
|
4600
|
+
</tr>
|
|
4601
|
+
<tr>
|
|
4602
|
+
<th>Summary</th>
|
|
4603
|
+
<td>A user with permission to create or edit custom links, job buttons, and/or computed fields could potentially inject a malicious payload, such as JavaScript code or cross-site scripting (XSS).</td>
|
|
4604
|
+
</tr>
|
|
4605
|
+
<tr>
|
|
4606
|
+
<th>Full Description</th>
|
|
4607
|
+
<td><a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-cf9f-wmhp-v4pr">GHSA-cf9f-wmhp-v4pr</a></td>
|
|
4608
|
+
</tr>
|
|
4609
|
+
<tr>
|
|
4610
|
+
<th>Affected Versions</th>
|
|
4611
|
+
<td>
|
|
4612
|
+
<ul>
|
|
4613
|
+
<li><1.6.6</li>
|
|
4614
|
+
<li>≥2.0.0, <2.0.5</li>
|
|
4615
|
+
</ul>
|
|
4616
|
+
</td>
|
|
4617
|
+
</tr>
|
|
4618
|
+
<tr>
|
|
4619
|
+
<th>Patched Versions</th>
|
|
4620
|
+
<td>
|
|
4621
|
+
<ul>
|
|
4622
|
+
<li>1.6.6 (<a href="https://github.com/nautobot/nautobot/commit/362850f5a94689a4c75e3188bf6de826c3b012b2">patch</a>)</li>
|
|
4623
|
+
<li>2.0.5 (<a href="https://github.com/nautobot/nautobot/commit/54abe23331b6c3d0d82bf1b028c679b1d200920d">patch</a>)</li>
|
|
4624
|
+
</ul>
|
|
4625
|
+
</td>
|
|
4626
|
+
</tr>
|
|
4627
|
+
</table>
|
|
4628
|
+
|
|
4629
|
+
<h2 id="cve-2023-46128">CVE-2023-46128<a class="headerlink" href="#cve-2023-46128" title="Permanent link">¶</a></h2>
|
|
4630
|
+
<!-- markdownlint-disable MD033 -->
|
|
4631
|
+
<table>
|
|
4632
|
+
<tr>
|
|
4633
|
+
<th>Disclosure Date</th>
|
|
4634
|
+
<td>October 24, 2023</td>
|
|
4635
|
+
</tr>
|
|
4636
|
+
<tr>
|
|
4637
|
+
<th>Summary</th>
|
|
4638
|
+
<td>Certain REST API endpoints, in combination with the ?depth=<N> query parameter, could expose hashed user passwords as stored in the database to any authenticated user with access to these endpoints.</td>
|
|
4639
|
+
</tr>
|
|
4640
|
+
<tr>
|
|
4641
|
+
<th>Full Description</th>
|
|
4642
|
+
<td><a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-r2hw-74xv-4gqp">GHSA-r2hw-74xv-4gqp</a></td>
|
|
4643
|
+
</tr>
|
|
4644
|
+
<tr>
|
|
4645
|
+
<th>Affected Versions</th>
|
|
4646
|
+
<td>
|
|
4647
|
+
<ul>
|
|
4648
|
+
<li>≥2.0.0, <2.0.3</li>
|
|
4649
|
+
</ul>
|
|
4650
|
+
</td>
|
|
4651
|
+
</tr>
|
|
4652
|
+
<tr>
|
|
4653
|
+
<th>Patched Versions</th>
|
|
4654
|
+
<td>
|
|
4655
|
+
<ul>
|
|
4656
|
+
<li>2.0.3 (<a href="https://github.com/nautobot/nautobot/commit/1ce8e5c658a075c29554d517cd453675e5d40d71">patch</a>)</li>
|
|
4657
|
+
</ul>
|
|
4658
|
+
</td>
|
|
4659
|
+
</tr>
|
|
4660
|
+
</table>
|
|
4661
|
+
|
|
4662
|
+
<h2 id="cve-2023-25657">CVE-2023-25657<a class="headerlink" href="#cve-2023-25657" title="Permanent link">¶</a></h2>
|
|
4663
|
+
<!-- markdownlint-disable MD033 -->
|
|
4664
|
+
<table>
|
|
4665
|
+
<tr>
|
|
4666
|
+
<th>Disclosure Date</th>
|
|
4667
|
+
<td>February 21, 2023</td>
|
|
4668
|
+
</tr>
|
|
4669
|
+
<tr>
|
|
4670
|
+
<th>Summary</th>
|
|
4671
|
+
<td>Lack of environment sandboxing in Jinja2 template rendering of user-authored data (computed fields, custom links, export templates, etc.) could potentially result in remote code execution.</td>
|
|
4672
|
+
</tr>
|
|
4673
|
+
<tr>
|
|
4674
|
+
<th>Full Description</th>
|
|
4675
|
+
<td><a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-8mfq-f5wj-vw5m">GHSA-8mfq-f5wj-vw5m</a></td>
|
|
4676
|
+
</tr>
|
|
4677
|
+
<tr>
|
|
4678
|
+
<th>Affected Versions</th>
|
|
4679
|
+
<td>
|
|
4680
|
+
<ul>
|
|
4681
|
+
<li><1.5.7</li>
|
|
4682
|
+
</ul>
|
|
4683
|
+
</td>
|
|
4684
|
+
</tr>
|
|
4685
|
+
<tr>
|
|
4686
|
+
<th>Patched Versions</th>
|
|
4687
|
+
<td>
|
|
4688
|
+
<ul>
|
|
4689
|
+
<li>1.5.7 (<a href="https://github.com/nautobot/nautobot/commit/14ec554890ddf9cce6be7dff173ecb0bd9f46793">patch</a>)</li>
|
|
4690
|
+
</ul>
|
|
4691
|
+
</td>
|
|
4692
|
+
</tr>
|
|
4693
|
+
</table>
|
|
4694
|
+
|
|
4695
|
+
|
|
4696
|
+
|
|
4697
|
+
|
|
4698
|
+
|
|
4699
|
+
|
|
4700
|
+
</article>
|
|
4701
|
+
</div>
|
|
4702
|
+
|
|
4703
|
+
|
|
4704
|
+
</div>
|
|
4705
|
+
|
|
4706
|
+
</main>
|
|
4707
|
+
|
|
4708
|
+
<footer class="md-footer">
|
|
4709
|
+
|
|
4710
|
+
<div class="md-footer-meta md-typeset">
|
|
4711
|
+
<div class="md-footer-meta__inner md-grid">
|
|
4712
|
+
<div class="md-copyright">
|
|
4713
|
+
|
|
4714
|
+
<div class="md-copyright__highlight">
|
|
4715
|
+
Copyright © The Authors
|
|
4716
|
+
</div>
|
|
4717
|
+
<a href="https://github.com/nautobot/nautobot/blob/main/LICENSE.txt">Apache-2.0 LICENSE</a>
|
|
4718
|
+
|
|
4719
|
+
</div>
|
|
4720
|
+
|
|
4721
|
+
<div class="md-copyright">
|
|
4722
|
+
<a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">Made with Material for MkDocs</a>
|
|
4723
|
+
| <a href="https://www.networktocode.com/community/" target="_blank" rel="noopener">Join Nautobot Slack</a>
|
|
4724
|
+
|
|
4725
|
+
| <a href="https://networktocode.com" target="_blank" rel="noopener">Sponsored by <img
|
|
4726
|
+
src=../../assets/networktocode_bw.png class="copyright-logo"></a>
|
|
4727
|
+
|
|
4728
|
+
</div>
|
|
4729
|
+
|
|
4730
|
+
<!-- RTD version flyout injected on live site -->
|
|
4731
|
+
<div id="readthedocs-embed-flyout"></div>
|
|
4732
|
+
|
|
4733
|
+
<div class="md-social">
|
|
4734
|
+
|
|
4735
|
+
|
|
4736
|
+
|
|
4737
|
+
|
|
4738
|
+
|
|
4739
|
+
<a href="https://blog.networktocode.com/blog/tags/nautobot" target="_blank" rel="noopener" title="Network to Code Blog" class="md-social__link">
|
|
4740
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64zm0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0zm32-256c159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32s14.3-32 32-32z"/></svg>
|
|
4741
|
+
</a>
|
|
4742
|
+
|
|
4743
|
+
|
|
4744
|
+
|
|
4745
|
+
|
|
4746
|
+
|
|
4747
|
+
<a href="https://www.youtube.com/playlist?list=PLjA0bhxgryJ2Ts4GJMDA-tPzVWEncv4pb" target="_blank" rel="noopener" title="Nautobot Videos" class="md-social__link">
|
|
4748
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"/></svg>
|
|
4749
|
+
</a>
|
|
4750
|
+
|
|
4751
|
+
|
|
4752
|
+
|
|
4753
|
+
|
|
4754
|
+
|
|
4755
|
+
<a href="https://www.networktocode.com/community/" target="_blank" rel="noopener" title="Network to Code Community" class="md-social__link">
|
|
4756
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1c0-25.9 21.16-47.06 47.06-47.06h47.06v47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V315.1zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06H164.9zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06H164.9zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06h-47.06V196.9zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06V196.9zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06v-47.06h47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06 0-25.9 21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06H283.1z"/></svg>
|
|
4757
|
+
</a>
|
|
4758
|
+
|
|
4759
|
+
|
|
4760
|
+
|
|
4761
|
+
|
|
4762
|
+
|
|
4763
|
+
<a href="https://github.com/nautobot/nautobot" target="_blank" rel="noopener" title="GitHub Repo" class="md-social__link">
|
|
4764
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
|
|
4765
|
+
</a>
|
|
4766
|
+
|
|
4767
|
+
|
|
4768
|
+
|
|
4769
|
+
|
|
4770
|
+
|
|
4771
|
+
<a href="https://twitter.com/networktocode" target="_blank" rel="noopener" title="Network to Code Twitter" class="md-social__link">
|
|
4772
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg>
|
|
4773
|
+
</a>
|
|
4774
|
+
|
|
4775
|
+
</div>
|
|
4776
|
+
|
|
4777
|
+
</div>
|
|
4778
|
+
</div>
|
|
4779
|
+
</footer>
|
|
4780
|
+
|
|
4781
|
+
</div>
|
|
4782
|
+
<div class="md-dialog" data-md-component="dialog">
|
|
4783
|
+
<div class="md-dialog__inner md-typeset"></div>
|
|
4784
|
+
</div>
|
|
4785
|
+
|
|
4786
|
+
<script id="__config" type="application/json">{"base": "../..", "features": ["content.code.copy", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../../assets/javascripts/workers/search.74e28a9f.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
|
|
4787
|
+
|
|
4788
|
+
|
|
4789
|
+
<script src="../../assets/javascripts/bundle.220ee61c.min.js"></script>
|
|
4790
|
+
|
|
4791
|
+
|
|
4792
|
+
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
4793
|
+
|
|
4794
|
+
|
|
4795
|
+
|
|
4796
|
+
</body>
|
|
4797
|
+
</html>
|