nautobot 2.0.4__py3-none-any.whl → 2.1.0b1__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/navigation.py +0 -25
- nautobot/circuits/templates/circuits/circuit_retrieve.html +0 -9
- nautobot/circuits/templates/circuits/providernetwork_retrieve.html +0 -2
- nautobot/circuits/tests/test_api.py +79 -2
- nautobot/circuits/tests/test_filters.py +1 -0
- nautobot/core/api/serializers.py +15 -5
- nautobot/core/api/views.py +18 -19
- nautobot/core/choices.py +1 -1
- nautobot/core/filters.py +12 -4
- nautobot/core/jobs/__init__.py +125 -3
- nautobot/core/management/commands/generate_test_data.py +6 -1
- nautobot/core/middleware.py +12 -4
- nautobot/core/models/fields.py +12 -2
- nautobot/core/settings.py +9 -8
- nautobot/core/tables.py +26 -31
- nautobot/core/templates/base_django.html +2 -2
- nautobot/core/templates/buttons/export.html +57 -30
- nautobot/core/templates/generic/object_list.html +2 -2
- nautobot/core/templates/generic/object_retrieve.html +8 -1
- nautobot/core/templates/home.html +5 -5
- nautobot/core/templates/inc/created_updated.html +2 -2
- nautobot/core/templates/inc/footer.html +2 -2
- nautobot/core/templates/inc/javascript.html +0 -10
- nautobot/core/templates/inc/media.html +2 -0
- nautobot/core/templates/inc/nav_menu.html +66 -68
- nautobot/core/templates/inc/object_details_advanced_panel.html +19 -0
- nautobot/core/templates/nautobot_config.py.j2 +10 -4
- nautobot/core/templates/panel_table.html +1 -1
- nautobot/core/templates/template.css +89 -0
- nautobot/core/templates/utilities/templatetags/table_config_form.html +1 -0
- nautobot/core/templatetags/buttons.py +7 -2
- nautobot/core/templatetags/helpers.py +9 -9
- nautobot/core/testing/views.py +34 -4
- nautobot/core/tests/integration/test_home.py +1 -43
- nautobot/core/tests/integration/test_navbar.py +10 -64
- nautobot/core/tests/integration/test_plugin_home.py +4 -5
- nautobot/core/tests/integration/test_plugin_navbar.py +20 -16
- nautobot/core/tests/integration/test_theme.py +4 -0
- nautobot/core/tests/test_api.py +14 -66
- nautobot/core/tests/test_filters.py +127 -0
- nautobot/core/tests/test_forms.py +4 -4
- nautobot/core/tests/test_graphql.py +165 -2
- nautobot/core/tests/test_jobs.py +112 -0
- nautobot/core/tests/test_openapi.py +6 -0
- nautobot/core/tests/test_utils.py +23 -20
- nautobot/core/tests/test_views.py +11 -85
- nautobot/core/urls.py +6 -1
- nautobot/core/utils/data.py +5 -1
- nautobot/core/utils/filtering.py +6 -4
- nautobot/core/utils/lookup.py +28 -0
- nautobot/core/utils/requests.py +2 -3
- nautobot/core/views/__init__.py +3 -4
- nautobot/core/views/generic.py +15 -11
- nautobot/core/views/mixins.py +9 -8
- nautobot/core/views/renderers.py +5 -0
- nautobot/core/views/utils.py +23 -24
- nautobot/dcim/api/serializers.py +8 -4
- nautobot/dcim/models/device_components.py +1 -0
- nautobot/dcim/models/devices.py +7 -6
- nautobot/dcim/navigation.py +10 -165
- nautobot/dcim/templates/dcim/location.html +1 -1
- nautobot/dcim/tests/features/locations.feature +143 -0
- nautobot/dcim/tests/test_api.py +8 -1
- nautobot/dcim/tests/test_filters.py +11 -3
- nautobot/dcim/views.py +5 -6
- nautobot/extras/admin.py +1 -1
- nautobot/extras/api/serializers.py +33 -0
- nautobot/extras/api/urls.py +6 -0
- nautobot/extras/api/views.py +45 -6
- nautobot/extras/context_managers.py +34 -8
- nautobot/extras/factory.py +28 -2
- nautobot/extras/filters/__init__.py +52 -0
- nautobot/extras/filters/mixins.py +4 -29
- nautobot/extras/forms/forms.py +43 -0
- nautobot/extras/jobs.py +39 -17
- nautobot/extras/migrations/0100_fileproxy_job_result.py +32 -0
- nautobot/extras/migrations/0101_externalintegration.py +61 -0
- nautobot/extras/migrations/0102_set_null_objectchange_contenttype.py +32 -0
- nautobot/extras/models/__init__.py +2 -0
- nautobot/extras/models/change_logging.py +2 -2
- nautobot/extras/models/customfields.py +2 -2
- nautobot/extras/models/models.py +101 -18
- nautobot/extras/models/relationships.py +13 -8
- nautobot/extras/navigation.py +17 -29
- nautobot/extras/signals.py +80 -59
- nautobot/extras/tables.py +28 -2
- nautobot/extras/templates/extras/externalintegration_retrieve.html +37 -0
- nautobot/extras/templates/extras/inc/jobresult.html +24 -0
- nautobot/extras/templates/extras/jobresult.html +24 -0
- nautobot/extras/templatetags/computed_fields.py +6 -13
- nautobot/extras/templatetags/custom_links.py +19 -12
- nautobot/extras/templatetags/job_buttons.py +34 -19
- nautobot/extras/templatetags/plugins.py +1 -1
- nautobot/extras/test_jobs/file_output.py +16 -0
- nautobot/extras/tests/test_api.py +92 -0
- nautobot/extras/tests/test_context_managers.py +94 -4
- nautobot/extras/tests/test_customfields.py +1 -1
- nautobot/extras/tests/test_filters.py +64 -2
- nautobot/extras/tests/test_jobs.py +75 -22
- nautobot/extras/tests/test_models.py +34 -0
- nautobot/extras/tests/test_relationships.py +2 -2
- nautobot/extras/tests/test_views.py +204 -4
- nautobot/extras/tests/test_webhooks.py +61 -25
- nautobot/extras/urls.py +1 -0
- nautobot/extras/views.py +27 -13
- nautobot/extras/webhooks.py +16 -25
- nautobot/ipam/fields.py +5 -0
- nautobot/ipam/forms.py +16 -0
- nautobot/ipam/models.py +13 -2
- nautobot/ipam/navigation.py +2 -59
- nautobot/ipam/tables.py +1 -1
- nautobot/ipam/templates/ipam/ipaddress.html +0 -9
- nautobot/ipam/templates/ipam/prefix.html +0 -9
- nautobot/ipam/tests/features/prefixes.feature +134 -0
- nautobot/ipam/tests/test_filters.py +5 -10
- nautobot/ipam/tests/test_models.py +7 -0
- nautobot/ipam/tests/test_views.py +8 -1
- nautobot/ipam/views.py +99 -58
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css +191 -191
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css +874 -881
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css.map +1 -1
- nautobot/project-static/css/base.css +138 -99
- nautobot/project-static/css/dark.css +65 -6
- nautobot/project-static/docs/404.html +45 -17
- nautobot/project-static/docs/apps/index.html +45 -17
- nautobot/project-static/docs/apps/nautobot-apps.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +1598 -1458
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +229 -152
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +46 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +354 -433
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +67 -39
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +2083 -2234
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +1389 -1247
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +129 -111
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +3601 -3457
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +320 -284
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +3863 -3801
- nautobot/project-static/docs/development/apps/api/configuration-view.html +45 -17
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +45 -17
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +45 -17
- nautobot/project-static/docs/development/apps/api/models/global-search.html +45 -17
- nautobot/project-static/docs/development/apps/api/models/graphql.html +45 -17
- nautobot/project-static/docs/development/apps/api/models/index.html +45 -17
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +45 -17
- nautobot/project-static/docs/development/apps/api/prometheus.html +45 -17
- nautobot/project-static/docs/development/apps/api/setup.html +45 -17
- nautobot/project-static/docs/development/apps/api/testing.html +45 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +45 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +45 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +45 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +45 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-detail-views.html +45 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/tabs.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/base-template.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/index.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/notes.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/urls.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/view-overrides.html +45 -17
- nautobot/project-static/docs/development/apps/index.html +45 -17
- nautobot/project-static/docs/development/apps/migration/code-updates.html +45 -17
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +45 -17
- nautobot/project-static/docs/development/apps/migration/from-v1.html +45 -17
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +45 -17
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +45 -17
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +45 -17
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +45 -17
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +45 -17
- nautobot/project-static/docs/development/core/application-registry.html +45 -17
- nautobot/project-static/docs/development/core/best-practices.html +45 -17
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +45 -17
- nautobot/project-static/docs/development/core/extending-models.html +45 -17
- nautobot/project-static/docs/development/core/generic-views.html +45 -17
- nautobot/project-static/docs/development/core/getting-started.html +45 -17
- nautobot/project-static/docs/development/core/homepage.html +45 -17
- nautobot/project-static/docs/development/core/index.html +45 -17
- nautobot/project-static/docs/development/core/model-features.html +45 -17
- nautobot/project-static/docs/development/core/natural-keys.html +45 -17
- nautobot/project-static/docs/development/core/navigation-menu.html +45 -22
- nautobot/project-static/docs/development/core/react-ui.html +45 -17
- nautobot/project-static/docs/development/core/release-checklist.html +46 -18
- nautobot/project-static/docs/development/core/role-internals.html +45 -17
- nautobot/project-static/docs/development/core/style-guide.html +45 -17
- nautobot/project-static/docs/development/core/templates.html +45 -17
- nautobot/project-static/docs/development/core/testing.html +45 -17
- nautobot/project-static/docs/development/core/user-preferences.html +45 -17
- nautobot/project-static/docs/development/index.html +45 -17
- nautobot/project-static/docs/development/jobs/index.html +281 -235
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +45 -17
- nautobot/project-static/docs/index.html +45 -17
- nautobot/project-static/docs/media/nautobot_application_stack_low_level.png +0 -0
- nautobot/project-static/docs/media/nautobot_application_stack_low_level.txt +1 -0
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/index.html +48 -20
- nautobot/project-static/docs/release-notes/version-1.0.html +45 -17
- nautobot/project-static/docs/release-notes/version-1.1.html +45 -17
- nautobot/project-static/docs/release-notes/version-1.2.html +45 -17
- nautobot/project-static/docs/release-notes/version-1.3.html +45 -17
- nautobot/project-static/docs/release-notes/version-1.4.html +45 -17
- nautobot/project-static/docs/release-notes/version-1.5.html +45 -17
- nautobot/project-static/docs/release-notes/version-1.6.html +46 -18
- nautobot/project-static/docs/release-notes/version-2.0.html +372 -199
- nautobot/project-static/docs/release-notes/version-2.1.html +5724 -0
- nautobot/project-static/docs/requirements.txt +1 -1
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +247 -237
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +45 -17
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +45 -17
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +45 -17
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +45 -17
- nautobot/project-static/docs/user-guide/administration/configuration/node-configuration.html +45 -17
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +110 -44
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +45 -17
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +48 -20
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +45 -17
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +45 -17
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +45 -17
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +45 -17
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +45 -17
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +49 -20
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/docker.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/index.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/services.html +45 -17
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +45 -17
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +45 -17
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +45 -17
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +45 -17
- nautobot/project-static/docs/user-guide/index.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +111 -17
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +48 -20
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +5359 -0
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +48 -20
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +114 -45
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +45 -17
- nautobot/project-static/fonts/UFL.txt +96 -0
- nautobot/project-static/fonts/Ubuntu-Bold.woff2 +0 -0
- nautobot/project-static/fonts/Ubuntu-BoldItalic.woff2 +0 -0
- nautobot/project-static/fonts/Ubuntu-Italic.woff2 +0 -0
- nautobot/project-static/fonts/Ubuntu-Medium.woff2 +0 -0
- nautobot/project-static/fonts/Ubuntu-MediumItalic.woff2 +0 -0
- nautobot/project-static/fonts/Ubuntu-Regular.woff2 +0 -0
- nautobot/project-static/fonts/UbuntuMono-Bold.woff2 +0 -0
- nautobot/project-static/fonts/UbuntuMono-BoldItalic.woff2 +0 -0
- nautobot/project-static/fonts/UbuntuMono-Italic.woff2 +0 -0
- nautobot/project-static/fonts/UbuntuMono-Regular.woff2 +0 -0
- nautobot/project-static/img/dark-theme.png +0 -0
- nautobot/project-static/img/light-theme.png +0 -0
- nautobot/project-static/img/nautobot_chevron.svg +5 -0
- nautobot/project-static/img/nautobot_chevron_header.svg +5 -0
- nautobot/project-static/img/system-theme.png +0 -0
- nautobot/tenancy/navigation.py +0 -13
- nautobot/ui/package-lock.json +2 -2
- nautobot/ui/package.json +1 -1
- nautobot/users/admin.py +44 -0
- nautobot/users/migrations/0007_alter_objectpermission_object_types.py +33 -0
- nautobot/users/models.py +3 -2
- nautobot/virtualization/navigation.py +1 -33
- nautobot/virtualization/tests/test_api.py +1 -1
- nautobot/virtualization/tests/test_filters.py +1 -1
- {nautobot-2.0.4.dist-info → nautobot-2.1.0b1.dist-info}/METADATA +2 -2
- {nautobot-2.0.4.dist-info → nautobot-2.1.0b1.dist-info}/RECORD +405 -786
- CHANGELOG.md +0 -3
- CONTRIBUTING.md +0 -3
- NOTICE +0 -8
- nautobot/docs/apps/index.md +0 -22
- nautobot/docs/apps/nautobot-apps.md +0 -10
- nautobot/docs/assets/app-icons/icon-ChatOps.png +0 -0
- nautobot/docs/assets/app-icons/icon-DataValidationEngine.png +0 -0
- nautobot/docs/assets/app-icons/icon-DeviceLifecycle.png +0 -0
- nautobot/docs/assets/app-icons/icon-DeviceOnboarding.png +0 -0
- nautobot/docs/assets/app-icons/icon-FirewallModels.png +0 -0
- nautobot/docs/assets/app-icons/icon-GoldenConfiguration.png +0 -0
- nautobot/docs/assets/app-icons/icon-NautobotPluginNornir.png +0 -0
- nautobot/docs/assets/app-icons/icon-SSoT.png +0 -0
- nautobot/docs/assets/extra.css +0 -139
- nautobot/docs/assets/favicon.ico +0 -0
- nautobot/docs/assets/nautobot_logo.png +0 -0
- nautobot/docs/assets/nautobot_logo.svg +0 -131
- nautobot/docs/assets/networktocode_bw.png +0 -0
- nautobot/docs/assets/overrides/partials/copyright.html +0 -20
- nautobot/docs/development/apps/api/configuration-view.md +0 -35
- nautobot/docs/development/apps/api/database-backend-config.md +0 -26
- nautobot/docs/development/apps/api/models/django-admin.md +0 -20
- nautobot/docs/development/apps/api/models/global-search.md +0 -11
- nautobot/docs/development/apps/api/models/graphql.md +0 -97
- nautobot/docs/development/apps/api/models/index.md +0 -81
- nautobot/docs/development/apps/api/nautobot-app-config.md +0 -84
- nautobot/docs/development/apps/api/platform-features/custom-validators.md +0 -30
- nautobot/docs/development/apps/api/platform-features/filter-extensions.md +0 -49
- nautobot/docs/development/apps/api/platform-features/git-repository-content.md +0 -62
- nautobot/docs/development/apps/api/platform-features/index.md +0 -1
- nautobot/docs/development/apps/api/platform-features/jinja2-filters.md +0 -28
- nautobot/docs/development/apps/api/platform-features/jobs.md +0 -29
- nautobot/docs/development/apps/api/platform-features/populating-extensibility-features.md +0 -58
- nautobot/docs/development/apps/api/platform-features/secrets-providers.md +0 -64
- nautobot/docs/development/apps/api/platform-features/uniquely-identify-objects.md +0 -63
- nautobot/docs/development/apps/api/prometheus.md +0 -25
- nautobot/docs/development/apps/api/setup.md +0 -132
- nautobot/docs/development/apps/api/testing.md +0 -55
- nautobot/docs/development/apps/api/ui-extensions/banners.md +0 -26
- nautobot/docs/development/apps/api/ui-extensions/home-page.md +0 -9
- nautobot/docs/development/apps/api/ui-extensions/index.md +0 -1
- nautobot/docs/development/apps/api/ui-extensions/navigation.md +0 -15
- nautobot/docs/development/apps/api/ui-extensions/object-detail-views.md +0 -74
- nautobot/docs/development/apps/api/ui-extensions/tabs.md +0 -52
- nautobot/docs/development/apps/api/views/base-template.md +0 -38
- nautobot/docs/development/apps/api/views/core-view-overrides.md +0 -26
- nautobot/docs/development/apps/api/views/django-generic-views.md +0 -23
- nautobot/docs/development/apps/api/views/help-documentation.md +0 -16
- nautobot/docs/development/apps/api/views/index.md +0 -3
- nautobot/docs/development/apps/api/views/nautobot-generic-views.md +0 -35
- nautobot/docs/development/apps/api/views/nautobotuiviewset.md +0 -147
- nautobot/docs/development/apps/api/views/nautobotuiviewsetrouter.md +0 -41
- nautobot/docs/development/apps/api/views/notes.md +0 -25
- nautobot/docs/development/apps/api/views/rest-api.md +0 -64
- nautobot/docs/development/apps/api/views/urls.md +0 -26
- nautobot/docs/development/apps/api/views/view-overrides.md +0 -50
- nautobot/docs/development/apps/index.md +0 -75
- nautobot/docs/development/apps/migration/code-updates.md +0 -160
- nautobot/docs/development/apps/migration/dependency-updates.md +0 -13
- nautobot/docs/development/apps/migration/from-v1.md +0 -56
- nautobot/docs/development/apps/migration/model-updates/dcim.md +0 -285
- nautobot/docs/development/apps/migration/model-updates/extras.md +0 -30
- nautobot/docs/development/apps/migration/model-updates/global.md +0 -5
- nautobot/docs/development/apps/migration/model-updates/ipam.md +0 -22
- nautobot/docs/development/apps/porting-from-netbox.md +0 -23
- nautobot/docs/development/core/application-registry.md +0 -216
- nautobot/docs/development/core/best-practices.md +0 -469
- nautobot/docs/development/core/docker-compose-advanced-use-cases.md +0 -228
- nautobot/docs/development/core/extending-models.md +0 -93
- nautobot/docs/development/core/generic-views.md +0 -65
- nautobot/docs/development/core/getting-started.md +0 -859
- nautobot/docs/development/core/homepage.md +0 -63
- nautobot/docs/development/core/index.md +0 -334
- nautobot/docs/development/core/model-features.md +0 -44
- nautobot/docs/development/core/natural-keys.md +0 -121
- nautobot/docs/development/core/navigation-menu.md +0 -142
- nautobot/docs/development/core/react-ui.md +0 -137
- nautobot/docs/development/core/release-checklist.md +0 -312
- nautobot/docs/development/core/role-internals.md +0 -28
- nautobot/docs/development/core/style-guide.md +0 -200
- nautobot/docs/development/core/templates.md +0 -101
- nautobot/docs/development/core/testing.md +0 -238
- nautobot/docs/development/core/user-preferences.md +0 -11
- nautobot/docs/development/index.md +0 -1
- nautobot/docs/development/jobs/index.md +0 -835
- nautobot/docs/development/jobs/migration/from-v1.md +0 -160
- nautobot/docs/generate_code_reference_pages.py +0 -20
- nautobot/docs/img/edge_dev_circuit_relationship.png +0 -0
- nautobot/docs/img/leaf_dev_no_circuit_relationship.png +0 -0
- nautobot/docs/img/relationship_w_json_filter.png +0 -0
- nautobot/docs/index.md +0 -105
- nautobot/docs/media/admin_ui_run_permission.png +0 -0
- nautobot/docs/media/development/homepage_changelog_panel.png +0 -0
- nautobot/docs/media/development/homepage_dcim_panel.png +0 -0
- nautobot/docs/media/development/index_bug_wf.jpg +0 -0
- nautobot/docs/media/development/index_feature_request_wf.jpg +0 -0
- nautobot/docs/media/development/index_release_cadence.drawio +0 -90
- nautobot/docs/media/development/index_release_cadence.jpg +0 -0
- nautobot/docs/media/installation/nautobot_ui_admin.png +0 -0
- nautobot/docs/media/installation/nautobot_ui_guest.png +0 -0
- nautobot/docs/media/models/dcim_cable_trace.png +0 -0
- nautobot/docs/media/models/dcim_cable_trace_circuit.png +0 -0
- nautobot/docs/media/models/dynamicgroup_filtering_01.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_1_01.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_1_02.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_1_03.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_1_04.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_1_05.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_01.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_02.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_03.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_04.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_05.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_06.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_07.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_basic_01.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_basic_02.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_basic_03.png +0 -0
- nautobot/docs/media/models/jobbutton_form.png +0 -0
- nautobot/docs/media/models/site_jobbuttons.png +0 -0
- nautobot/docs/media/nautobot_application_stack_high_level.drawio +0 -1
- nautobot/docs/media/nautobot_application_stack_high_level.png +0 -0
- nautobot/docs/media/nautobot_application_stack_low_level.drawio +0 -1
- nautobot/docs/media/nautobot_application_stack_low_level.png +0 -0
- nautobot/docs/media/nautobot_chatops.gif +0 -0
- nautobot/docs/media/nautobot_config_context.gif +0 -0
- nautobot/docs/media/nautobot_golden_config.gif +0 -0
- nautobot/docs/media/nautobot_graphql.gif +0 -0
- nautobot/docs/media/nautobot_mainpage.gif +0 -0
- nautobot/docs/media/nautobot_prefix_hierarchy.gif +0 -0
- nautobot/docs/media/plugins/plugin_admin_config.png +0 -0
- nautobot/docs/media/plugins/plugin_admin_ui.png +0 -0
- nautobot/docs/media/plugins/plugin_rest_api_endpoint.png +0 -0
- nautobot/docs/media/power_distribution.png +0 -0
- nautobot/docs/media/ss_config_contexts.png +0 -0
- nautobot/docs/media/ss_graphiql.png +0 -0
- nautobot/docs/media/ss_main_page.png +0 -0
- nautobot/docs/media/ss_plugin_chatops.png +0 -0
- nautobot/docs/media/ss_plugin_golden_config.png +0 -0
- nautobot/docs/media/ss_prefix_hierarchy.png +0 -0
- nautobot/docs/media/user-guide/administration/guides/s3-django-storage/user-guide-s3-1.png +0 -0
- nautobot/docs/media/user-guide/administration/guides/s3-django-storage/user-guide-s3-2.png +0 -0
- nautobot/docs/media/user-guide/administration/upgrading/from-v1/ipam/tenant-affinity.png +0 -0
- nautobot/docs/nautobot_logo.png +0 -0
- nautobot/docs/nautobot_logo.svg +0 -131
- nautobot/docs/release-notes/index.md +0 -3
- nautobot/docs/release-notes/version-1.0.md +0 -530
- nautobot/docs/release-notes/version-1.1.md +0 -337
- nautobot/docs/release-notes/version-1.2.md +0 -509
- nautobot/docs/release-notes/version-1.3.md +0 -554
- nautobot/docs/release-notes/version-1.4.md +0 -677
- nautobot/docs/release-notes/version-1.5.md +0 -840
- nautobot/docs/release-notes/version-1.6.md +0 -290
- nautobot/docs/release-notes/version-2.0.md +0 -1359
- nautobot/docs/requirements.txt +0 -12
- nautobot/docs/user-guide/administration/configuration/authentication/ldap.md +0 -286
- nautobot/docs/user-guide/administration/configuration/authentication/remote.md +0 -46
- nautobot/docs/user-guide/administration/configuration/authentication/sso.md +0 -528
- nautobot/docs/user-guide/administration/configuration/index.md +0 -190
- nautobot/docs/user-guide/administration/configuration/node-configuration.md +0 -31
- nautobot/docs/user-guide/administration/configuration/optional-settings.md +0 -1302
- nautobot/docs/user-guide/administration/configuration/required-settings.md +0 -244
- nautobot/docs/user-guide/administration/guides/caching.md +0 -108
- nautobot/docs/user-guide/administration/guides/celery-queues.md +0 -42
- nautobot/docs/user-guide/administration/guides/healthcheck.md +0 -11
- nautobot/docs/user-guide/administration/guides/permissions.md +0 -98
- nautobot/docs/user-guide/administration/guides/prometheus-metrics.md +0 -55
- nautobot/docs/user-guide/administration/guides/replicating-nautobot.md +0 -70
- nautobot/docs/user-guide/administration/guides/s3-django-storage.md +0 -145
- nautobot/docs/user-guide/administration/installation/app-install.md +0 -94
- nautobot/docs/user-guide/administration/installation/docker.md +0 -286
- nautobot/docs/user-guide/administration/installation/external-authentication.md +0 -9
- nautobot/docs/user-guide/administration/installation/http-server.md +0 -279
- nautobot/docs/user-guide/administration/installation/index.md +0 -101
- nautobot/docs/user-guide/administration/installation/install_system.md +0 -493
- nautobot/docs/user-guide/administration/installation/nautobot.md +0 -367
- nautobot/docs/user-guide/administration/installation/selinux-troubleshooting.md +0 -194
- nautobot/docs/user-guide/administration/installation/services.md +0 -340
- nautobot/docs/user-guide/administration/migration/migrating-from-netbox.md +0 -336
- nautobot/docs/user-guide/administration/migration/migrating-from-postgresql.md +0 -122
- nautobot/docs/user-guide/administration/tools/nautobot-server.md +0 -858
- nautobot/docs/user-guide/administration/tools/nautobot-shell.md +0 -263
- nautobot/docs/user-guide/administration/upgrading/database-backup.md +0 -11
- nautobot/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.md +0 -55
- nautobot/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.md +0 -73
- nautobot/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.md +0 -211
- nautobot/docs/user-guide/administration/upgrading/from-v1/ipam/index.md +0 -16
- nautobot/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.md +0 -157
- nautobot/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.md +0 -153
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-api-behavior-changes.yaml +0 -82
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-api-removed-fields.yaml +0 -175
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-api-renamed-fields.yaml +0 -124
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-location-changes.yaml +0 -241
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-removals.yaml +0 -57
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-renames.yaml +0 -5
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-database-behavior-changes.yaml +0 -76
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-database-removed-fields.yaml +0 -202
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-database-renamed-fields.yaml +0 -343
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-filters-corrected-fields.yaml +0 -31
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-filters-enhanced-fields.yaml +0 -244
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-filters-removed-fields.yaml +0 -595
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-filters-renamed-fields.yaml +0 -253
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-logging-renamed-loggers.yaml +0 -23
- nautobot/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.md +0 -574
- nautobot/docs/user-guide/administration/upgrading/upgrading.md +0 -127
- nautobot/docs/user-guide/core-data-model/circuits/circuit.md +0 -19
- nautobot/docs/user-guide/core-data-model/circuits/circuittermination.md +0 -10
- nautobot/docs/user-guide/core-data-model/circuits/circuittype.md +0 -8
- nautobot/docs/user-guide/core-data-model/circuits/provider.md +0 -5
- nautobot/docs/user-guide/core-data-model/circuits/providernetwork.md +0 -7
- nautobot/docs/user-guide/core-data-model/dcim/cable.md +0 -43
- nautobot/docs/user-guide/core-data-model/dcim/consoleport.md +0 -8
- nautobot/docs/user-guide/core-data-model/dcim/consoleporttemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/consoleserverport.md +0 -8
- nautobot/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/device.md +0 -29
- nautobot/docs/user-guide/core-data-model/dcim/devicebay.md +0 -11
- nautobot/docs/user-guide/core-data-model/dcim/devicebaytemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/deviceredundancygroup.md +0 -279
- nautobot/docs/user-guide/core-data-model/dcim/devicetype.md +0 -44
- nautobot/docs/user-guide/core-data-model/dcim/frontport.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/frontporttemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/interface.md +0 -34
- nautobot/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.md +0 -24
- nautobot/docs/user-guide/core-data-model/dcim/interfacetemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/inventoryitem.md +0 -10
- nautobot/docs/user-guide/core-data-model/dcim/location.md +0 -15
- nautobot/docs/user-guide/core-data-model/dcim/locationtype.md +0 -43
- nautobot/docs/user-guide/core-data-model/dcim/manufacturer.md +0 -3
- nautobot/docs/user-guide/core-data-model/dcim/platform.md +0 -19
- nautobot/docs/user-guide/core-data-model/dcim/powerfeed.md +0 -25
- nautobot/docs/user-guide/core-data-model/dcim/poweroutlet.md +0 -14
- nautobot/docs/user-guide/core-data-model/dcim/poweroutlettemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/powerpanel.md +0 -12
- nautobot/docs/user-guide/core-data-model/dcim/powerport.md +0 -15
- nautobot/docs/user-guide/core-data-model/dcim/powerporttemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/rack.md +0 -41
- nautobot/docs/user-guide/core-data-model/dcim/rackgroup.md +0 -7
- nautobot/docs/user-guide/core-data-model/dcim/rackreservation.md +0 -3
- nautobot/docs/user-guide/core-data-model/dcim/rearport.md +0 -9
- nautobot/docs/user-guide/core-data-model/dcim/rearporttemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/virtualchassis.md +0 -8
- nautobot/docs/user-guide/core-data-model/extras/configcontext.md +0 -78
- nautobot/docs/user-guide/core-data-model/extras/configcontextschema.md +0 -73
- nautobot/docs/user-guide/core-data-model/ipam/ipaddress.md +0 -69
- nautobot/docs/user-guide/core-data-model/ipam/media/ipam_namespace_documentation.drawio +0 -1
- nautobot/docs/user-guide/core-data-model/ipam/media/ipam_namespace_documentation.drawio.svg +0 -4
- nautobot/docs/user-guide/core-data-model/ipam/namespace.md +0 -18
- nautobot/docs/user-guide/core-data-model/ipam/prefix.md +0 -65
- nautobot/docs/user-guide/core-data-model/ipam/rir.md +0 -10
- nautobot/docs/user-guide/core-data-model/ipam/routetarget.md +0 -5
- nautobot/docs/user-guide/core-data-model/ipam/service.md +0 -8
- nautobot/docs/user-guide/core-data-model/ipam/vlan.md +0 -17
- nautobot/docs/user-guide/core-data-model/ipam/vlangroup.md +0 -5
- nautobot/docs/user-guide/core-data-model/ipam/vrf.md +0 -15
- nautobot/docs/user-guide/core-data-model/tenancy/tenant.md +0 -20
- nautobot/docs/user-guide/core-data-model/tenancy/tenantgroup.md +0 -5
- nautobot/docs/user-guide/core-data-model/virtualization/cluster.md +0 -5
- nautobot/docs/user-guide/core-data-model/virtualization/clustergroup.md +0 -3
- nautobot/docs/user-guide/core-data-model/virtualization/clustertype.md +0 -3
- nautobot/docs/user-guide/core-data-model/virtualization/virtualmachine.md +0 -17
- nautobot/docs/user-guide/core-data-model/virtualization/vminterface.md +0 -19
- nautobot/docs/user-guide/feature-guides/custom-fields.md +0 -350
- nautobot/docs/user-guide/feature-guides/getting-started/creating-devices.md +0 -130
- nautobot/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.md +0 -113
- nautobot/docs/user-guide/feature-guides/getting-started/index.md +0 -29
- nautobot/docs/user-guide/feature-guides/getting-started/interfaces.md +0 -100
- nautobot/docs/user-guide/feature-guides/getting-started/ipam.md +0 -104
- nautobot/docs/user-guide/feature-guides/getting-started/platforms.md +0 -78
- nautobot/docs/user-guide/feature-guides/getting-started/search-bar.md +0 -40
- nautobot/docs/user-guide/feature-guides/getting-started/tenants.md +0 -40
- nautobot/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.md +0 -87
- nautobot/docs/user-guide/feature-guides/git-data-source.md +0 -307
- nautobot/docs/user-guide/feature-guides/graphql.md +0 -342
- nautobot/docs/user-guide/feature-guides/images/custom-fields/custom_field_choices.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/custom-fields/custom_field_detail_grouped.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/custom-fields/custom_field_detail_label.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/custom-fields/custom_field_edit.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/custom-fields/custom_field_select.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/1-create-location-type.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/10-add-platform.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/11-platforms-page.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/12-add-tenant.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/13-assign-tenant-to-device.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/14-assign-tenant-to-device-2.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/15-create-device-type.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/16-interface-templates.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/17-templated-interfaces.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/18-assign-device-type.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/19-edit-ints-for-lag.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/2-create-manufacturer.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/20-ints-int-lag.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/21-device-type.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/22-create-vlans.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/23-create-vlans-2.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/24-vlan-main-page.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/25-add-vlan-to-interface.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/26-add-vlan-to-interface-2.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/27-add-rir.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/3-create-role.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/30-add-prefix.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/32-add-ip-addr.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/33-assign-address.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/34-assign-address-2.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/35-assign-address-3.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/36-verify-address.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/37-verify-prefix.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/38-verify-prefix2.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/39-address-search.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/4-create-device-type.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/40-addr-main-page.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/41-device-search-results.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/42-address-search-v2.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/43-get-to-device-main-page.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/44-add-platform.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/5-create-device.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/6-create-location.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/7-location-type-page.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/8-location-page.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/01-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/02-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/03-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/04-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/05-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/06-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/07-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/08-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/09-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/10-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/11-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/12-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/13-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/14-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/15-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/16-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/17-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/18-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/00-graphiql.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/01-graphiql-explorer.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/02-graphiql-explorer-device-query.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/03-graphiql-explorer-device-attributes.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/04-graphql-query-01.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/05-graphiql-autocomplete.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/06-graphql-query-02.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/07-graphql-query-03.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/08-graphql-query-04.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/09-graphql-query-05.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/10-graphql-swagger.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/11-graphql-query-06.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/ip-address-merge-tool/ip_merge_button.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/ip-address-merge-tool/merge_button.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/ip-address-merge-tool/merge_view.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/ip-address-merge-tool/no_more_dup_ips.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/ip-address-merge-tool/skip_button.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/ip-address-merge-tool/unselect_ips.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/01-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/02-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/03-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/04-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/05-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/06-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/07-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/08-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/09-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/10-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/11-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/ip-address-merge-tool.md +0 -63
- nautobot/docs/user-guide/feature-guides/relationships.md +0 -125
- nautobot/docs/user-guide/index.md +0 -1
- nautobot/docs/user-guide/platform-functionality/change-logging.md +0 -21
- nautobot/docs/user-guide/platform-functionality/computedfield.md +0 -89
- nautobot/docs/user-guide/platform-functionality/customfield.md +0 -123
- nautobot/docs/user-guide/platform-functionality/customlink.md +0 -59
- nautobot/docs/user-guide/platform-functionality/dynamicgroup.md +0 -660
- nautobot/docs/user-guide/platform-functionality/exporttemplate.md +0 -55
- nautobot/docs/user-guide/platform-functionality/gitrepository.md +0 -353
- nautobot/docs/user-guide/platform-functionality/graphql.md +0 -259
- nautobot/docs/user-guide/platform-functionality/graphqlquery.md +0 -28
- nautobot/docs/user-guide/platform-functionality/imageattachment.md +0 -10
- nautobot/docs/user-guide/platform-functionality/jobs/index.md +0 -193
- nautobot/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.md +0 -78
- nautobot/docs/user-guide/platform-functionality/jobs/jobbutton.md +0 -79
- nautobot/docs/user-guide/platform-functionality/jobs/jobhook.md +0 -15
- nautobot/docs/user-guide/platform-functionality/jobs/models.md +0 -65
- nautobot/docs/user-guide/platform-functionality/napalm.md +0 -85
- nautobot/docs/user-guide/platform-functionality/note.md +0 -7
- nautobot/docs/user-guide/platform-functionality/relationship.md +0 -158
- nautobot/docs/user-guide/platform-functionality/rest-api/authentication.md +0 -67
- nautobot/docs/user-guide/platform-functionality/rest-api/filtering.md +0 -142
- nautobot/docs/user-guide/platform-functionality/rest-api/overview.md +0 -1045
- nautobot/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.md +0 -9
- nautobot/docs/user-guide/platform-functionality/role.md +0 -17
- nautobot/docs/user-guide/platform-functionality/secret.md +0 -136
- nautobot/docs/user-guide/platform-functionality/status.md +0 -92
- nautobot/docs/user-guide/platform-functionality/tag.md +0 -62
- nautobot/docs/user-guide/platform-functionality/template-filters.md +0 -306
- nautobot/docs/user-guide/platform-functionality/users/objectpermission.md +0 -56
- nautobot/docs/user-guide/platform-functionality/users/token.md +0 -21
- nautobot/docs/user-guide/platform-functionality/webhook.md +0 -137
- nautobot/project-static/docs/media/nautobot_application_stack_low_level.drawio +0 -1
- nautobot/project-static/docs/media/nautobot_chatops.gif +0 -0
- nautobot/project-static/docs/media/nautobot_config_context.gif +0 -0
- nautobot/project-static/docs/media/nautobot_golden_config.gif +0 -0
- nautobot/project-static/docs/media/nautobot_graphql.gif +0 -0
- nautobot/project-static/docs/media/nautobot_mainpage.gif +0 -0
- nautobot/project-static/docs/media/nautobot_prefix_hierarchy.gif +0 -0
- nautobot-2.0.4.dist-info/LICENSE.txt +0 -177
- /LICENSE.txt → /nautobot-2.1.0b1.dist-info/LICENSE.txt +0 -0
- {nautobot-2.0.4.dist-info → nautobot-2.1.0b1.dist-info}/WHEEL +0 -0
- {nautobot-2.0.4.dist-info → nautobot-2.1.0b1.dist-info}/entry_points.txt +0 -0
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!-- Do not edit this file with editors other than diagrams.net -->
|
|
3
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="1493px" height="1114px" viewBox="-0.5 -0.5 1493 1114" content="<mxfile host="app.diagrams.net" modified="2023-09-20T20:34:56.447Z" agent="5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36" etag="8MqqLsQ26hSuqF-_dJkI" version="20.8.23" type="device"><diagram name="Page-1" id="HMSZJAy41G0naUgyjOcL">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</diagram></mxfile>" style="background-color: rgb(255, 255, 255);"><defs/><g><rect x="1" y="1" width="1490" height="1110" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" stroke-width="3" pointer-events="all"/><rect x="1" y="1" width="360" height="1110" fill="#e1d5e7" stroke="#9673a6" pointer-events="all"/><rect x="1" y="91" width="360" height="60" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 358px; height: 1px; padding-top: 121px; margin-left: 2px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 32px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Namespace "Corp"</div></div></div></foreignObject><text x="181" y="131" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="32px" text-anchor="middle">Namespace "Corp"</text></switch></g><rect x="191" y="821" width="53" height="78" fill="none" stroke="none" pointer-events="all"/><rect x="192.99" y="823.07" width="49.86" height="74.78" fill="#ffffff" stroke="none" pointer-events="all"/><path d="M 228.24 864.6 L 231.57 864.6 L 231.57 872.57 L 228.24 872.57 Z M 215.8 864.6 L 219.14 864.6 L 219.14 872.57 L 215.8 872.57 Z M 203.37 864.6 L 206.7 864.6 L 206.7 872.57 L 203.37 872.57 Z M 226.91 861.61 C 226.04 861.61 225.61 862.22 225.45 862.55 C 225.29 862.88 225.25 863.16 225.25 863.45 L 225.25 873.72 C 225.25 874.01 225.29 874.29 225.45 874.62 C 225.61 874.95 226.04 875.56 226.91 875.56 L 232.9 875.56 C 233.78 875.56 234.21 874.95 234.37 874.62 C 234.53 874.29 234.57 874.01 234.57 873.72 L 234.57 863.45 C 234.57 863.16 234.53 862.88 234.37 862.55 C 234.21 862.22 233.78 861.61 232.9 861.61 Z M 214.48 861.61 C 213.6 861.61 213.17 862.22 213.01 862.55 C 212.85 862.88 212.81 863.16 212.81 863.45 L 212.81 873.72 C 212.81 874.01 212.85 874.29 213.01 874.62 C 213.17 874.95 213.6 875.56 214.48 875.56 L 220.47 875.56 C 221.34 875.56 221.77 874.95 221.93 874.62 C 222.09 874.29 222.13 874.01 222.13 873.72 L 222.13 863.45 C 222.13 863.16 222.09 862.88 221.93 862.55 C 221.77 862.22 221.34 861.61 220.47 861.61 Z M 202.04 861.61 C 201.16 861.61 200.73 862.22 200.57 862.55 C 200.41 862.88 200.38 863.16 200.38 863.45 L 200.38 873.72 C 200.38 874.01 200.41 874.29 200.57 874.62 C 200.73 874.95 201.16 875.56 202.04 875.56 L 208.03 875.56 C 208.9 875.56 209.33 874.95 209.49 874.62 C 209.65 874.29 209.69 874.01 209.69 873.72 L 209.69 863.45 C 209.69 863.16 209.65 862.88 209.49 862.55 C 209.33 862.22 208.9 861.61 208.03 861.61 Z M 228.24 847.46 L 231.57 847.46 L 231.57 855.43 L 228.24 855.43 Z M 215.8 847.46 L 219.14 847.46 L 219.14 855.43 L 215.8 855.43 Z M 203.37 847.46 L 206.7 847.46 L 206.7 855.43 L 203.37 855.43 Z M 226.91 844.46 C 226.04 844.46 225.61 845.08 225.45 845.41 C 225.29 845.74 225.25 846.02 225.25 846.3 L 225.25 856.58 C 225.25 856.87 225.29 857.15 225.45 857.48 C 225.61 857.81 226.04 858.42 226.91 858.42 L 232.9 858.42 C 233.78 858.42 234.21 857.81 234.37 857.48 C 234.53 857.15 234.57 856.87 234.57 856.58 L 234.57 846.3 C 234.57 846.02 234.53 845.74 234.37 845.41 C 234.21 845.08 233.78 844.46 232.9 844.46 Z M 214.48 844.46 C 213.6 844.46 213.17 845.08 213.01 845.41 C 212.85 845.74 212.81 846.02 212.81 846.3 L 212.81 856.58 C 212.81 856.87 212.85 857.15 213.01 857.48 C 213.17 857.81 213.6 858.42 214.48 858.42 L 220.47 858.42 C 221.34 858.42 221.77 857.81 221.93 857.48 C 222.09 857.15 222.13 856.87 222.13 856.58 L 222.13 846.3 C 222.13 846.02 222.09 845.74 221.93 845.41 C 221.77 845.08 221.34 844.46 220.47 844.46 Z M 202.04 844.46 C 201.16 844.46 200.73 845.08 200.57 845.41 C 200.41 845.74 200.38 846.02 200.38 846.3 L 200.38 856.58 C 200.38 856.87 200.41 857.15 200.57 857.48 C 200.73 857.81 201.16 858.42 202.04 858.42 L 208.03 858.42 C 208.9 858.42 209.33 857.81 209.49 857.48 C 209.65 857.15 209.69 856.87 209.69 856.58 L 209.69 846.3 C 209.69 846.02 209.65 845.74 209.49 845.41 C 209.33 845.08 208.9 844.46 208.03 844.46 Z M 228.24 830.32 L 231.57 830.32 L 231.57 838.29 L 228.24 838.29 Z M 215.8 830.32 L 219.14 830.32 L 219.14 838.29 L 215.8 838.29 Z M 203.37 830.32 L 206.7 830.32 L 206.7 838.29 L 203.37 838.29 Z M 226.91 827.32 C 226.04 827.32 225.61 827.94 225.45 828.27 C 225.29 828.6 225.25 828.87 225.25 829.16 L 225.25 839.44 C 225.25 839.73 225.29 840.01 225.45 840.34 C 225.61 840.67 226.04 841.28 226.91 841.28 L 232.9 841.28 C 233.78 841.28 234.21 840.67 234.37 840.34 C 234.53 840.01 234.57 839.73 234.57 839.44 L 234.57 829.16 C 234.57 828.87 234.53 828.6 234.37 828.27 C 234.21 827.94 233.78 827.32 232.9 827.32 Z M 214.48 827.32 C 213.6 827.32 213.17 827.94 213.01 828.27 C 212.85 828.6 212.81 828.87 212.81 829.16 L 212.81 839.44 C 212.81 839.73 212.85 840.01 213.01 840.34 C 213.17 840.67 213.6 841.28 214.48 841.28 L 220.47 841.28 C 221.34 841.28 221.77 840.67 221.93 840.34 C 222.09 840.01 222.13 839.73 222.13 839.44 L 222.13 829.16 C 222.13 828.87 222.09 828.6 221.93 828.27 C 221.77 827.94 221.34 827.32 220.47 827.32 Z M 202.04 827.32 C 201.16 827.32 200.73 827.94 200.57 828.27 C 200.41 828.6 200.38 828.87 200.38 829.16 L 200.38 839.44 C 200.38 839.73 200.41 840.01 200.57 840.34 C 200.73 840.67 201.16 841.28 202.04 841.28 L 208.03 841.28 C 208.9 841.28 209.33 840.67 209.49 840.34 C 209.65 840.01 209.69 839.73 209.69 839.44 L 209.69 829.16 C 209.69 828.87 209.65 828.6 209.49 828.27 C 209.33 827.94 208.9 827.32 208.03 827.32 Z M 196.43 824.21 L 238.54 824.21 C 240.08 824.21 240.87 825.49 240.87 826.96 L 240.88 895.82 L 194.09 895.79 L 194.12 826.54 C 194.12 825.27 194.96 824.21 196.43 824.21 Z M 238.54 821.08 L 196.58 821.11 C 193.89 821.11 191.05 823.1 191.05 826.68 L 191 896.8 C 191 898.21 191.72 898.9 193.01 898.9 L 241.8 898.92 C 243.14 898.92 243.93 898.35 243.93 896.9 L 244 826.89 C 244 823.77 241.6 821.08 238.54 821.08 Z" fill="#000000" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 906px; margin-left: 218px;"><div data-drawio-colors="color: #232F3E; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(35, 47, 62); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;">Datacenters<br style="font-size: 16px;" />10.128.0.0/9</div></div></div></foreignObject><text x="218" y="922" fill="#232F3E" font-family="Helvetica" font-size="16px" text-anchor="middle" font-weight="bold">Datacen...</text></switch></g><rect x="61" y="821" width="50" height="78" fill="none" stroke="none" pointer-events="all"/><rect x="75.18" y="822.75" width="21.02" height="24.53" rx="3.15" ry="3.15" fill="#ffffff" stroke="none" pointer-events="all"/><rect x="62.92" y="840.27" width="45.55" height="57.81" rx="6.83" ry="6.83" fill="#ffffff" stroke="none" pointer-events="all"/><path d="M 101.14 892.51 L 104.65 892.51 L 104.65 883.22 L 101.14 883.22 Z M 94.95 892.52 L 98.46 892.52 L 98.46 883.22 L 94.95 883.22 Z M 87.23 892.52 L 90.74 892.52 L 90.74 883.22 L 87.23 883.22 Z M 81.11 892.52 L 84.62 892.52 L 84.62 883.22 L 81.11 883.22 Z M 73.32 892.52 L 76.83 892.52 L 76.83 883.22 L 73.32 883.22 Z M 67.06 892.52 L 70.56 892.52 L 70.56 883.22 L 67.06 883.22 Z M 101.14 878.53 L 104.65 878.53 L 104.65 870.89 L 101.14 870.89 Z M 94.95 878.53 L 98.46 878.53 L 98.46 870.89 L 94.95 870.89 Z M 87.23 878.53 L 90.74 878.53 L 90.74 870.89 L 87.23 870.89 Z M 81.11 878.53 L 84.62 878.53 L 84.62 870.89 L 81.11 870.89 Z M 73.32 878.53 L 76.83 878.53 L 76.83 870.89 L 73.32 870.89 Z M 67.06 878.53 L 70.56 878.53 L 70.56 870.89 L 67.06 870.89 Z M 101.14 866.23 L 104.65 866.23 L 104.65 858.58 L 101.14 858.58 Z M 94.95 866.23 L 98.46 866.23 L 98.46 858.58 L 94.95 858.58 Z M 87.23 866.23 L 90.74 866.23 L 90.74 858.58 L 87.23 858.58 Z M 81.11 866.23 L 84.62 866.23 L 84.62 858.58 L 81.11 858.58 Z M 73.32 866.23 L 76.83 866.23 L 76.83 858.58 L 73.32 858.58 Z M 67.06 866.23 L 70.56 866.23 L 70.56 858.58 L 67.06 858.58 Z M 101.14 853.99 L 104.65 853.99 L 104.65 846.35 L 101.14 846.35 Z M 94.95 853.99 L 98.46 853.99 L 98.46 846.35 L 94.95 846.35 Z M 87.23 853.99 L 90.74 853.99 L 90.74 846.35 L 87.23 846.35 Z M 81.11 853.99 L 84.62 853.99 L 84.62 846.35 L 81.11 846.35 Z M 73.32 853.99 L 76.83 853.99 L 76.83 846.35 L 73.32 846.35 Z M 67.06 853.99 L 70.56 853.99 L 70.56 846.35 L 67.06 846.35 Z M 87.28 841.58 L 90.79 841.58 L 90.79 827.87 L 87.28 827.87 Z M 81.09 841.58 L 84.6 841.58 L 84.6 827.87 L 81.09 827.87 Z M 107.33 895.5 L 64.67 895.5 L 64.67 843.51 L 75 843.51 C 75.97 843.51 76.75 842.73 76.75 841.76 L 76.75 824.5 L 95.22 824.5 L 95.22 841.76 C 95.22 842.73 96 843.51 96.97 843.51 L 107.33 843.51 Z M 107.7 840.01 L 98.72 840.01 L 98.72 824.13 C 98.72 822.41 97.32 821 95.59 821 L 76.38 821 C 74.66 821 73.25 822.41 73.25 824.13 L 73.25 840.01 L 64.3 840.01 C 62.57 840.01 61.16 841.41 61.16 843.14 L 61.16 895.87 C 61.16 897.59 62.57 899 64.3 899 L 107.7 899 C 109.43 899 110.84 897.59 110.84 895.87 L 110.84 843.14 C 110.84 841.41 109.43 840.01 107.7 840.01 Z" fill="#000000" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 906px; margin-left: 86px;"><div data-drawio-colors="color: #232F3E; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(35, 47, 62); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;">Offices<br style="font-size: 16px;" />10.0.0.0/9</div></div></div></foreignObject><text x="86" y="922" fill="#232F3E" font-family="Helvetica" font-size="16px" text-anchor="middle" font-weight="bold">Office...</text></switch></g><rect x="361" y="1" width="470" height="1110" fill="#f2f2f2" stroke="rgb(0, 0, 0)" pointer-events="all"/><rect x="361" y="21" width="470" height="90" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 468px; height: 1px; padding-top: 66px; margin-left: 362px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 32px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Namespace<br />"MPLS Backbone"</div></div></div></foreignObject><text x="596" y="76" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="32px" text-anchor="middle">Namespace...</text></switch></g><rect x="321" y="302.5" width="78" height="78" fill="none" stroke="none" pointer-events="all"/><ellipse cx="360" cy="341.5" rx="39" ry="39" fill="#ffffff" stroke="none" pointer-events="all"/><path d="M 392.28 342.75 L 384.52 350.51 L 382.02 348 L 386.75 343.27 L 361.77 343.27 L 361.77 368.24 L 366.5 363.51 L 369.01 366.02 L 361.25 373.78 C 360.91 374.12 360.45 374.3 360 374.3 C 359.55 374.3 359.09 374.12 358.75 373.78 L 350.99 366.02 L 353.5 363.51 L 358.23 368.24 L 358.23 343.27 L 333.26 343.27 L 337.99 348 L 335.48 350.51 L 327.73 342.75 C 327.03 342.06 327.03 340.94 327.73 340.25 L 335.48 332.49 L 337.99 335 L 333.26 339.73 L 358.23 339.73 L 358.23 314.75 L 353.5 319.48 L 350.99 316.98 L 358.75 309.22 C 359.44 308.53 360.56 308.53 361.25 309.22 L 369.01 316.98 L 366.5 319.48 L 361.77 314.75 L 361.77 339.73 L 386.75 339.73 L 382.02 335 L 384.52 332.49 L 392.28 340.25 C 392.97 340.94 392.97 342.06 392.28 342.75 M 360 376.95 C 340.45 376.95 324.55 361.05 324.55 341.5 C 324.55 321.95 340.45 306.05 360 306.05 C 379.55 306.05 395.45 321.95 395.45 341.5 C 395.45 361.05 379.55 376.95 360 376.95 M 360 302.5 C 338.5 302.5 321 320 321 341.5 C 321 363 338.5 380.5 360 380.5 C 381.5 380.5 399 363 399 341.5 C 399 320 381.5 302.5 360 302.5" fill="#4d27aa" stroke="none" pointer-events="all"/><rect x="831" y="221" width="640" height="241" rx="19.28" ry="19.28" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><rect x="1111" y="233" width="280" height="60" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 278px; height: 1px; padding-top: 263px; margin-left: 1112px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 32px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Namespace "Customer A"</div></div></div></foreignObject><text x="1251" y="273" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="32px" text-anchor="middle">Namespace "Custome...</text></switch></g><rect x="791" y="358" width="78" height="78" fill="none" stroke="none" pointer-events="all"/><ellipse cx="830" cy="397" rx="39" ry="39" fill="#ffffff" stroke="none" pointer-events="all"/><path d="M 862.28 398.25 L 854.52 406.01 L 852.02 403.5 L 856.75 398.77 L 831.77 398.77 L 831.77 423.74 L 836.5 419.01 L 839.01 421.52 L 831.25 429.28 C 830.91 429.62 830.45 429.8 830 429.8 C 829.55 429.8 829.09 429.62 828.75 429.28 L 820.99 421.52 L 823.5 419.01 L 828.23 423.74 L 828.23 398.77 L 803.26 398.77 L 807.99 403.5 L 805.48 406.01 L 797.73 398.25 C 797.03 397.56 797.03 396.44 797.73 395.75 L 805.48 387.99 L 807.99 390.5 L 803.26 395.23 L 828.23 395.23 L 828.23 370.25 L 823.5 374.98 L 820.99 372.48 L 828.75 364.72 C 829.44 364.03 830.56 364.03 831.25 364.72 L 839.01 372.48 L 836.5 374.98 L 831.77 370.25 L 831.77 395.23 L 856.75 395.23 L 852.02 390.5 L 854.52 387.99 L 862.28 395.75 C 862.97 396.44 862.97 397.56 862.28 398.25 M 830 432.45 C 810.45 432.45 794.55 416.55 794.55 397 C 794.55 377.45 810.45 361.55 830 361.55 C 849.55 361.55 865.45 377.45 865.45 397 C 865.45 416.55 849.55 432.45 830 432.45 M 830 358 C 808.5 358 791 375.5 791 397 C 791 418.5 808.5 436 830 436 C 851.5 436 869 418.5 869 397 C 869 375.5 851.5 358 830 358" fill="#4d27aa" stroke="none" pointer-events="all"/><path d="M 405.37 351 L 590 351 L 590 397 L 784.63 397" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 400.12 351 L 407.12 347.5 L 405.37 351 L 407.12 354.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 789.88 397 L 782.88 400.5 L 784.63 397 L 782.88 393.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 361px; margin-left: 520px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;"><pre>100.64.0.2/31</pre></div></div></div></foreignObject><text x="520" y="366" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="16px" text-anchor="middle" font-weight="bold">100.64....</text></switch></g><path d="M 875.37 397 L 1014.63 397" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 870.12 397 L 877.12 393.5 L 875.37 397 L 877.12 400.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 1019.88 397 L 1012.88 400.5 L 1014.63 397 L 1012.88 393.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><rect x="1176" y="323" width="150" height="98" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 142px; height: 1px; padding-top: 313px; margin-left: 1181px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 108px; overflow: hidden;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><h2 style="line-height: 80%;">Prefixes</h2><pre style="line-height: 80%; font-size: 18px;"><b style=""><font style="font-size: 18px;">10.0.0.0/8</font></b></pre><pre style="line-height: 80%; font-size: 18px;"><b style=""><font style="font-size: 18px;">192.168.0.0/16</font></b></pre></div></div></div></foreignObject><text x="1181" y="329" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="16px">Prefixes...</text></switch></g><rect x="321" y="581.5" width="78" height="78" fill="none" stroke="none" pointer-events="all"/><ellipse cx="360" cy="620.5" rx="39" ry="39" fill="#ffffff" stroke="none" pointer-events="all"/><path d="M 392.28 621.75 L 384.52 629.51 L 382.02 627 L 386.75 622.27 L 361.77 622.27 L 361.77 647.24 L 366.5 642.51 L 369.01 645.02 L 361.25 652.78 C 360.91 653.12 360.45 653.3 360 653.3 C 359.55 653.3 359.09 653.12 358.75 652.78 L 350.99 645.02 L 353.5 642.51 L 358.23 647.24 L 358.23 622.27 L 333.26 622.27 L 337.99 627 L 335.48 629.51 L 327.73 621.75 C 327.03 621.06 327.03 619.94 327.73 619.25 L 335.48 611.49 L 337.99 614 L 333.26 618.73 L 358.23 618.73 L 358.23 593.75 L 353.5 598.48 L 350.99 595.98 L 358.75 588.22 C 359.44 587.53 360.56 587.53 361.25 588.22 L 369.01 595.98 L 366.5 598.48 L 361.77 593.75 L 361.77 618.73 L 386.75 618.73 L 382.02 614 L 384.52 611.49 L 392.28 619.25 C 392.97 619.94 392.97 621.06 392.28 621.75 M 360 655.95 C 340.45 655.95 324.55 640.05 324.55 620.5 C 324.55 600.95 340.45 585.05 360 585.05 C 379.55 585.05 395.45 600.95 395.45 620.5 C 395.45 640.05 379.55 655.95 360 655.95 M 360 581.5 C 338.5 581.5 321 599 321 620.5 C 321 642 338.5 659.5 360 659.5 C 381.5 659.5 399 642 399 620.5 C 399 599 381.5 581.5 360 581.5" fill="#4d27aa" stroke="none" pointer-events="all"/><rect x="321" y="862.5" width="78" height="78" fill="none" stroke="none" pointer-events="all"/><ellipse cx="360" cy="901.5" rx="39" ry="39" fill="#ffffff" stroke="none" pointer-events="all"/><path d="M 392.28 902.75 L 384.52 910.51 L 382.02 908 L 386.75 903.27 L 361.77 903.27 L 361.77 928.24 L 366.5 923.51 L 369.01 926.02 L 361.25 933.78 C 360.91 934.12 360.45 934.3 360 934.3 C 359.55 934.3 359.09 934.12 358.75 933.78 L 350.99 926.02 L 353.5 923.51 L 358.23 928.24 L 358.23 903.27 L 333.26 903.27 L 337.99 908 L 335.48 910.51 L 327.73 902.75 C 327.03 902.06 327.03 900.94 327.73 900.25 L 335.48 892.49 L 337.99 895 L 333.26 899.73 L 358.23 899.73 L 358.23 874.75 L 353.5 879.48 L 350.99 876.98 L 358.75 869.22 C 359.44 868.53 360.56 868.53 361.25 869.22 L 369.01 876.98 L 366.5 879.48 L 361.77 874.75 L 361.77 899.73 L 386.75 899.73 L 382.02 895 L 384.52 892.49 L 392.28 900.25 C 392.97 900.94 392.97 902.06 392.28 902.75 M 360 936.95 C 340.45 936.95 324.55 921.05 324.55 901.5 C 324.55 881.95 340.45 866.05 360 866.05 C 379.55 866.05 395.45 881.95 395.45 901.5 C 395.45 921.05 379.55 936.95 360 936.95 M 360 862.5 C 338.5 862.5 321 880 321 901.5 C 321 923 338.5 940.5 360 940.5 C 381.5 940.5 399 923 399 901.5 C 399 880 381.5 862.5 360 862.5" fill="#4d27aa" stroke="none" pointer-events="all"/><rect x="399" y="111" width="190" height="240" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 182px; height: 1px; padding-top: 101px; margin-left: 404px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 250px; overflow: hidden;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><h2 style="line-height: 80%;">Prefixes</h2><pre style="line-height: 80%; font-size: 18px;"><b style=""><font style="font-size: 18px;">100.64.0.0/10</font></b></pre><pre style="line-height: 80%; font-size: 18px;"><b><font style="font-size: 18px;">- 100.64.0.0/31</font></b></pre><pre style="line-height: 80%; font-size: 18px;"><b><font style="font-size: 18px;">- 100.64.0.2/31</font></b></pre><pre style="line-height: 80%; font-size: 18px;"><b style=""><font style="font-size: 18px;">- etc.</font></b></pre><pre style="line-height: 80%;"><br /></pre></div></div></div></foreignObject><text x="404" y="117" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="16px">Prefixes...</text></switch></g><rect x="1021" y="358" width="53" height="78" fill="none" stroke="none" pointer-events="all"/><rect x="1022.99" y="360.07" width="49.86" height="74.78" fill="#ffffff" stroke="none" pointer-events="all"/><path d="M 1058.24 401.6 L 1061.57 401.6 L 1061.57 409.57 L 1058.24 409.57 Z M 1045.8 401.6 L 1049.14 401.6 L 1049.14 409.57 L 1045.8 409.57 Z M 1033.37 401.6 L 1036.7 401.6 L 1036.7 409.57 L 1033.37 409.57 Z M 1056.91 398.61 C 1056.04 398.61 1055.61 399.22 1055.45 399.55 C 1055.29 399.88 1055.25 400.16 1055.25 400.45 L 1055.25 410.72 C 1055.25 411.01 1055.29 411.29 1055.45 411.62 C 1055.61 411.95 1056.04 412.56 1056.91 412.56 L 1062.9 412.56 C 1063.78 412.56 1064.21 411.95 1064.37 411.62 C 1064.53 411.29 1064.57 411.01 1064.57 410.72 L 1064.57 400.45 C 1064.57 400.16 1064.53 399.88 1064.37 399.55 C 1064.21 399.22 1063.78 398.61 1062.9 398.61 Z M 1044.48 398.61 C 1043.6 398.61 1043.17 399.22 1043.01 399.55 C 1042.85 399.88 1042.81 400.16 1042.81 400.45 L 1042.81 410.72 C 1042.81 411.01 1042.85 411.29 1043.01 411.62 C 1043.17 411.95 1043.6 412.56 1044.48 412.56 L 1050.47 412.56 C 1051.34 412.56 1051.77 411.95 1051.93 411.62 C 1052.09 411.29 1052.13 411.01 1052.13 410.72 L 1052.13 400.45 C 1052.13 400.16 1052.09 399.88 1051.93 399.55 C 1051.77 399.22 1051.34 398.61 1050.47 398.61 Z M 1032.04 398.61 C 1031.16 398.61 1030.73 399.22 1030.57 399.55 C 1030.41 399.88 1030.38 400.16 1030.38 400.45 L 1030.38 410.72 C 1030.38 411.01 1030.41 411.29 1030.57 411.62 C 1030.73 411.95 1031.16 412.56 1032.04 412.56 L 1038.03 412.56 C 1038.9 412.56 1039.33 411.95 1039.49 411.62 C 1039.65 411.29 1039.69 411.01 1039.69 410.72 L 1039.69 400.45 C 1039.69 400.16 1039.65 399.88 1039.49 399.55 C 1039.33 399.22 1038.9 398.61 1038.03 398.61 Z M 1058.24 384.46 L 1061.57 384.46 L 1061.57 392.43 L 1058.24 392.43 Z M 1045.8 384.46 L 1049.14 384.46 L 1049.14 392.43 L 1045.8 392.43 Z M 1033.37 384.46 L 1036.7 384.46 L 1036.7 392.43 L 1033.37 392.43 Z M 1056.91 381.46 C 1056.04 381.46 1055.61 382.08 1055.45 382.41 C 1055.29 382.74 1055.25 383.02 1055.25 383.3 L 1055.25 393.58 C 1055.25 393.87 1055.29 394.15 1055.45 394.48 C 1055.61 394.81 1056.04 395.42 1056.91 395.42 L 1062.9 395.42 C 1063.78 395.42 1064.21 394.81 1064.37 394.48 C 1064.53 394.15 1064.57 393.87 1064.57 393.58 L 1064.57 383.3 C 1064.57 383.02 1064.53 382.74 1064.37 382.41 C 1064.21 382.08 1063.78 381.46 1062.9 381.46 Z M 1044.48 381.46 C 1043.6 381.46 1043.17 382.08 1043.01 382.41 C 1042.85 382.74 1042.81 383.02 1042.81 383.3 L 1042.81 393.58 C 1042.81 393.87 1042.85 394.15 1043.01 394.48 C 1043.17 394.81 1043.6 395.42 1044.48 395.42 L 1050.47 395.42 C 1051.34 395.42 1051.77 394.81 1051.93 394.48 C 1052.09 394.15 1052.13 393.87 1052.13 393.58 L 1052.13 383.3 C 1052.13 383.02 1052.09 382.74 1051.93 382.41 C 1051.77 382.08 1051.34 381.46 1050.47 381.46 Z M 1032.04 381.46 C 1031.16 381.46 1030.73 382.08 1030.57 382.41 C 1030.41 382.74 1030.38 383.02 1030.38 383.3 L 1030.38 393.58 C 1030.38 393.87 1030.41 394.15 1030.57 394.48 C 1030.73 394.81 1031.16 395.42 1032.04 395.42 L 1038.03 395.42 C 1038.9 395.42 1039.33 394.81 1039.49 394.48 C 1039.65 394.15 1039.69 393.87 1039.69 393.58 L 1039.69 383.3 C 1039.69 383.02 1039.65 382.74 1039.49 382.41 C 1039.33 382.08 1038.9 381.46 1038.03 381.46 Z M 1058.24 367.32 L 1061.57 367.32 L 1061.57 375.29 L 1058.24 375.29 Z M 1045.8 367.32 L 1049.14 367.32 L 1049.14 375.29 L 1045.8 375.29 Z M 1033.37 367.32 L 1036.7 367.32 L 1036.7 375.29 L 1033.37 375.29 Z M 1056.91 364.32 C 1056.04 364.32 1055.61 364.94 1055.45 365.27 C 1055.29 365.6 1055.25 365.87 1055.25 366.16 L 1055.25 376.44 C 1055.25 376.73 1055.29 377.01 1055.45 377.34 C 1055.61 377.67 1056.04 378.28 1056.91 378.28 L 1062.9 378.28 C 1063.78 378.28 1064.21 377.67 1064.37 377.34 C 1064.53 377.01 1064.57 376.73 1064.57 376.44 L 1064.57 366.16 C 1064.57 365.87 1064.53 365.6 1064.37 365.27 C 1064.21 364.94 1063.78 364.32 1062.9 364.32 Z M 1044.48 364.32 C 1043.6 364.32 1043.17 364.94 1043.01 365.27 C 1042.85 365.6 1042.81 365.87 1042.81 366.16 L 1042.81 376.44 C 1042.81 376.73 1042.85 377.01 1043.01 377.34 C 1043.17 377.67 1043.6 378.28 1044.48 378.28 L 1050.47 378.28 C 1051.34 378.28 1051.77 377.67 1051.93 377.34 C 1052.09 377.01 1052.13 376.73 1052.13 376.44 L 1052.13 366.16 C 1052.13 365.87 1052.09 365.6 1051.93 365.27 C 1051.77 364.94 1051.34 364.32 1050.47 364.32 Z M 1032.04 364.32 C 1031.16 364.32 1030.73 364.94 1030.57 365.27 C 1030.41 365.6 1030.38 365.87 1030.38 366.16 L 1030.38 376.44 C 1030.38 376.73 1030.41 377.01 1030.57 377.34 C 1030.73 377.67 1031.16 378.28 1032.04 378.28 L 1038.03 378.28 C 1038.9 378.28 1039.33 377.67 1039.49 377.34 C 1039.65 377.01 1039.69 376.73 1039.69 376.44 L 1039.69 366.16 C 1039.69 365.87 1039.65 365.6 1039.49 365.27 C 1039.33 364.94 1038.9 364.32 1038.03 364.32 Z M 1026.43 361.21 L 1068.54 361.21 C 1070.08 361.21 1070.87 362.49 1070.87 363.96 L 1070.88 432.82 L 1024.09 432.79 L 1024.12 363.54 C 1024.12 362.27 1024.96 361.21 1026.43 361.21 Z M 1068.54 358.08 L 1026.58 358.11 C 1023.89 358.11 1021.05 360.1 1021.05 363.68 L 1021 433.8 C 1021 435.21 1021.72 435.9 1023.01 435.9 L 1071.8 435.92 C 1073.14 435.92 1073.93 435.35 1073.93 433.9 L 1074 363.89 C 1074 360.77 1071.6 358.08 1068.54 358.08 Z" fill="#000000" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 443px; margin-left: 1048px;"><div data-drawio-colors="color: #232F3E; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(35, 47, 62); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;">10.0.0.0/8</div></div></div></foreignObject><text x="1048" y="459" fill="#232F3E" font-family="Helvetica" font-size="16px" text-anchor="middle" font-weight="bold">10.0.0....</text></switch></g><rect x="791" y="245" width="78" height="78" fill="none" stroke="none" pointer-events="all"/><ellipse cx="830" cy="284" rx="39" ry="39" fill="#ffffff" stroke="none" pointer-events="all"/><path d="M 862.28 285.25 L 854.52 293.01 L 852.02 290.5 L 856.75 285.77 L 831.77 285.77 L 831.77 310.74 L 836.5 306.01 L 839.01 308.52 L 831.25 316.28 C 830.91 316.62 830.45 316.8 830 316.8 C 829.55 316.8 829.09 316.62 828.75 316.28 L 820.99 308.52 L 823.5 306.01 L 828.23 310.74 L 828.23 285.77 L 803.26 285.77 L 807.99 290.5 L 805.48 293.01 L 797.73 285.25 C 797.03 284.56 797.03 283.44 797.73 282.75 L 805.48 274.99 L 807.99 277.5 L 803.26 282.23 L 828.23 282.23 L 828.23 257.25 L 823.5 261.98 L 820.99 259.48 L 828.75 251.72 C 829.44 251.03 830.56 251.03 831.25 251.72 L 839.01 259.48 L 836.5 261.98 L 831.77 257.25 L 831.77 282.23 L 856.75 282.23 L 852.02 277.5 L 854.52 274.99 L 862.28 282.75 C 862.97 283.44 862.97 284.56 862.28 285.25 M 830 319.45 C 810.45 319.45 794.55 303.55 794.55 284 C 794.55 264.45 810.45 248.55 830 248.55 C 849.55 248.55 865.45 264.45 865.45 284 C 865.45 303.55 849.55 319.45 830 319.45 M 830 245 C 808.5 245 791 262.5 791 284 C 791 305.5 808.5 323 830 323 C 851.5 323 869 305.5 869 284 C 869 262.5 851.5 245 830 245" fill="#4d27aa" stroke="none" pointer-events="all"/><path d="M 875.37 284 L 1016.3 284" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 870.12 284 L 877.12 280.5 L 875.37 284 L 877.12 287.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 1021.55 284 L 1014.55 287.5 L 1016.3 284 L 1014.55 280.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><rect x="1022.5" y="245" width="50" height="78" fill="none" stroke="none" pointer-events="all"/><rect x="1036.68" y="246.75" width="21.02" height="24.53" rx="3.15" ry="3.15" fill="#ffffff" stroke="none" pointer-events="all"/><rect x="1024.42" y="264.27" width="45.55" height="57.81" rx="6.83" ry="6.83" fill="#ffffff" stroke="none" pointer-events="all"/><path d="M 1062.64 316.51 L 1066.15 316.51 L 1066.15 307.22 L 1062.64 307.22 Z M 1056.45 316.52 L 1059.96 316.52 L 1059.96 307.22 L 1056.45 307.22 Z M 1048.73 316.52 L 1052.24 316.52 L 1052.24 307.22 L 1048.73 307.22 Z M 1042.61 316.52 L 1046.12 316.52 L 1046.12 307.22 L 1042.61 307.22 Z M 1034.82 316.52 L 1038.33 316.52 L 1038.33 307.22 L 1034.82 307.22 Z M 1028.56 316.52 L 1032.06 316.52 L 1032.06 307.22 L 1028.56 307.22 Z M 1062.64 302.53 L 1066.15 302.53 L 1066.15 294.89 L 1062.64 294.89 Z M 1056.45 302.53 L 1059.96 302.53 L 1059.96 294.89 L 1056.45 294.89 Z M 1048.73 302.53 L 1052.24 302.53 L 1052.24 294.89 L 1048.73 294.89 Z M 1042.61 302.53 L 1046.12 302.53 L 1046.12 294.89 L 1042.61 294.89 Z M 1034.82 302.53 L 1038.33 302.53 L 1038.33 294.89 L 1034.82 294.89 Z M 1028.56 302.53 L 1032.06 302.53 L 1032.06 294.89 L 1028.56 294.89 Z M 1062.64 290.23 L 1066.15 290.23 L 1066.15 282.58 L 1062.64 282.58 Z M 1056.45 290.23 L 1059.96 290.23 L 1059.96 282.58 L 1056.45 282.58 Z M 1048.73 290.23 L 1052.24 290.23 L 1052.24 282.58 L 1048.73 282.58 Z M 1042.61 290.23 L 1046.12 290.23 L 1046.12 282.58 L 1042.61 282.58 Z M 1034.82 290.23 L 1038.33 290.23 L 1038.33 282.58 L 1034.82 282.58 Z M 1028.56 290.23 L 1032.06 290.23 L 1032.06 282.58 L 1028.56 282.58 Z M 1062.64 277.99 L 1066.15 277.99 L 1066.15 270.35 L 1062.64 270.35 Z M 1056.45 277.99 L 1059.96 277.99 L 1059.96 270.35 L 1056.45 270.35 Z M 1048.73 277.99 L 1052.24 277.99 L 1052.24 270.35 L 1048.73 270.35 Z M 1042.61 277.99 L 1046.12 277.99 L 1046.12 270.35 L 1042.61 270.35 Z M 1034.82 277.99 L 1038.33 277.99 L 1038.33 270.35 L 1034.82 270.35 Z M 1028.56 277.99 L 1032.06 277.99 L 1032.06 270.35 L 1028.56 270.35 Z M 1048.78 265.58 L 1052.29 265.58 L 1052.29 251.87 L 1048.78 251.87 Z M 1042.59 265.58 L 1046.1 265.58 L 1046.1 251.87 L 1042.59 251.87 Z M 1068.83 319.5 L 1026.17 319.5 L 1026.17 267.51 L 1036.5 267.51 C 1037.47 267.51 1038.25 266.73 1038.25 265.76 L 1038.25 248.5 L 1056.72 248.5 L 1056.72 265.76 C 1056.72 266.73 1057.5 267.51 1058.47 267.51 L 1068.83 267.51 Z M 1069.2 264.01 L 1060.22 264.01 L 1060.22 248.13 C 1060.22 246.41 1058.82 245 1057.09 245 L 1037.88 245 C 1036.16 245 1034.75 246.41 1034.75 248.13 L 1034.75 264.01 L 1025.8 264.01 C 1024.07 264.01 1022.66 265.41 1022.66 267.14 L 1022.66 319.87 C 1022.66 321.59 1024.07 323 1025.8 323 L 1069.2 323 C 1070.93 323 1072.34 321.59 1072.34 319.87 L 1072.34 267.14 C 1072.34 265.41 1070.93 264.01 1069.2 264.01 Z" fill="#000000" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 330px; margin-left: 1048px;"><div data-drawio-colors="color: #232F3E; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(35, 47, 62); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;">192.168.0.0/16</div></div></div></foreignObject><text x="1048" y="346" fill="#232F3E" font-family="Helvetica" font-size="16px" text-anchor="middle" font-weight="bold">192.16...</text></switch></g><path d="M 405.37 331 L 590 331 L 590 284 L 784.63 284" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 400.12 331 L 407.12 327.5 L 405.37 331 L 407.12 334.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 789.88 284 L 782.88 287.5 L 784.63 284 L 782.88 280.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 321px; margin-left: 520px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;"><pre>100.64.0.0/31</pre></div></div></div></foreignObject><text x="520" y="326" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="16px" text-anchor="middle" font-weight="bold">100.64....</text></switch></g><rect x="831" y="500" width="640" height="241" rx="19.28" ry="19.28" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><rect x="1111" y="512" width="280" height="60" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 278px; height: 1px; padding-top: 542px; margin-left: 1112px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 32px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Namespace "Customer B"</div></div></div></foreignObject><text x="1251" y="552" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="32px" text-anchor="middle">Namespace "Custome...</text></switch></g><rect x="791" y="637" width="78" height="78" fill="none" stroke="none" pointer-events="all"/><ellipse cx="830" cy="676" rx="39" ry="39" fill="#ffffff" stroke="none" pointer-events="all"/><path d="M 862.28 677.25 L 854.52 685.01 L 852.02 682.5 L 856.75 677.77 L 831.77 677.77 L 831.77 702.74 L 836.5 698.01 L 839.01 700.52 L 831.25 708.28 C 830.91 708.62 830.45 708.8 830 708.8 C 829.55 708.8 829.09 708.62 828.75 708.28 L 820.99 700.52 L 823.5 698.01 L 828.23 702.74 L 828.23 677.77 L 803.26 677.77 L 807.99 682.5 L 805.48 685.01 L 797.73 677.25 C 797.03 676.56 797.03 675.44 797.73 674.75 L 805.48 666.99 L 807.99 669.5 L 803.26 674.23 L 828.23 674.23 L 828.23 649.25 L 823.5 653.98 L 820.99 651.48 L 828.75 643.72 C 829.44 643.03 830.56 643.03 831.25 643.72 L 839.01 651.48 L 836.5 653.98 L 831.77 649.25 L 831.77 674.23 L 856.75 674.23 L 852.02 669.5 L 854.52 666.99 L 862.28 674.75 C 862.97 675.44 862.97 676.56 862.28 677.25 M 830 711.45 C 810.45 711.45 794.55 695.55 794.55 676 C 794.55 656.45 810.45 640.55 830 640.55 C 849.55 640.55 865.45 656.45 865.45 676 C 865.45 695.55 849.55 711.45 830 711.45 M 830 637 C 808.5 637 791 654.5 791 676 C 791 697.5 808.5 715 830 715 C 851.5 715 869 697.5 869 676 C 869 654.5 851.5 637 830 637" fill="#4d27aa" stroke="none" pointer-events="all"/><path d="M 875.37 676 L 1014.63 676" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 870.12 676 L 877.12 672.5 L 875.37 676 L 877.12 679.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 1019.88 676 L 1012.88 679.5 L 1014.63 676 L 1012.88 672.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><rect x="1021" y="637" width="53" height="78" fill="none" stroke="none" pointer-events="all"/><rect x="1022.99" y="639.07" width="49.86" height="74.78" fill="#ffffff" stroke="none" pointer-events="all"/><path d="M 1058.24 680.6 L 1061.57 680.6 L 1061.57 688.57 L 1058.24 688.57 Z M 1045.8 680.6 L 1049.14 680.6 L 1049.14 688.57 L 1045.8 688.57 Z M 1033.37 680.6 L 1036.7 680.6 L 1036.7 688.57 L 1033.37 688.57 Z M 1056.91 677.61 C 1056.04 677.61 1055.61 678.22 1055.45 678.55 C 1055.29 678.88 1055.25 679.16 1055.25 679.45 L 1055.25 689.72 C 1055.25 690.01 1055.29 690.29 1055.45 690.62 C 1055.61 690.95 1056.04 691.56 1056.91 691.56 L 1062.9 691.56 C 1063.78 691.56 1064.21 690.95 1064.37 690.62 C 1064.53 690.29 1064.57 690.01 1064.57 689.72 L 1064.57 679.45 C 1064.57 679.16 1064.53 678.88 1064.37 678.55 C 1064.21 678.22 1063.78 677.61 1062.9 677.61 Z M 1044.48 677.61 C 1043.6 677.61 1043.17 678.22 1043.01 678.55 C 1042.85 678.88 1042.81 679.16 1042.81 679.45 L 1042.81 689.72 C 1042.81 690.01 1042.85 690.29 1043.01 690.62 C 1043.17 690.95 1043.6 691.56 1044.48 691.56 L 1050.47 691.56 C 1051.34 691.56 1051.77 690.95 1051.93 690.62 C 1052.09 690.29 1052.13 690.01 1052.13 689.72 L 1052.13 679.45 C 1052.13 679.16 1052.09 678.88 1051.93 678.55 C 1051.77 678.22 1051.34 677.61 1050.47 677.61 Z M 1032.04 677.61 C 1031.16 677.61 1030.73 678.22 1030.57 678.55 C 1030.41 678.88 1030.38 679.16 1030.38 679.45 L 1030.38 689.72 C 1030.38 690.01 1030.41 690.29 1030.57 690.62 C 1030.73 690.95 1031.16 691.56 1032.04 691.56 L 1038.03 691.56 C 1038.9 691.56 1039.33 690.95 1039.49 690.62 C 1039.65 690.29 1039.69 690.01 1039.69 689.72 L 1039.69 679.45 C 1039.69 679.16 1039.65 678.88 1039.49 678.55 C 1039.33 678.22 1038.9 677.61 1038.03 677.61 Z M 1058.24 663.46 L 1061.57 663.46 L 1061.57 671.43 L 1058.24 671.43 Z M 1045.8 663.46 L 1049.14 663.46 L 1049.14 671.43 L 1045.8 671.43 Z M 1033.37 663.46 L 1036.7 663.46 L 1036.7 671.43 L 1033.37 671.43 Z M 1056.91 660.46 C 1056.04 660.46 1055.61 661.08 1055.45 661.41 C 1055.29 661.74 1055.25 662.02 1055.25 662.3 L 1055.25 672.58 C 1055.25 672.87 1055.29 673.15 1055.45 673.48 C 1055.61 673.81 1056.04 674.42 1056.91 674.42 L 1062.9 674.42 C 1063.78 674.42 1064.21 673.81 1064.37 673.48 C 1064.53 673.15 1064.57 672.87 1064.57 672.58 L 1064.57 662.3 C 1064.57 662.02 1064.53 661.74 1064.37 661.41 C 1064.21 661.08 1063.78 660.46 1062.9 660.46 Z M 1044.48 660.46 C 1043.6 660.46 1043.17 661.08 1043.01 661.41 C 1042.85 661.74 1042.81 662.02 1042.81 662.3 L 1042.81 672.58 C 1042.81 672.87 1042.85 673.15 1043.01 673.48 C 1043.17 673.81 1043.6 674.42 1044.48 674.42 L 1050.47 674.42 C 1051.34 674.42 1051.77 673.81 1051.93 673.48 C 1052.09 673.15 1052.13 672.87 1052.13 672.58 L 1052.13 662.3 C 1052.13 662.02 1052.09 661.74 1051.93 661.41 C 1051.77 661.08 1051.34 660.46 1050.47 660.46 Z M 1032.04 660.46 C 1031.16 660.46 1030.73 661.08 1030.57 661.41 C 1030.41 661.74 1030.38 662.02 1030.38 662.3 L 1030.38 672.58 C 1030.38 672.87 1030.41 673.15 1030.57 673.48 C 1030.73 673.81 1031.16 674.42 1032.04 674.42 L 1038.03 674.42 C 1038.9 674.42 1039.33 673.81 1039.49 673.48 C 1039.65 673.15 1039.69 672.87 1039.69 672.58 L 1039.69 662.3 C 1039.69 662.02 1039.65 661.74 1039.49 661.41 C 1039.33 661.08 1038.9 660.46 1038.03 660.46 Z M 1058.24 646.32 L 1061.57 646.32 L 1061.57 654.29 L 1058.24 654.29 Z M 1045.8 646.32 L 1049.14 646.32 L 1049.14 654.29 L 1045.8 654.29 Z M 1033.37 646.32 L 1036.7 646.32 L 1036.7 654.29 L 1033.37 654.29 Z M 1056.91 643.32 C 1056.04 643.32 1055.61 643.94 1055.45 644.27 C 1055.29 644.6 1055.25 644.87 1055.25 645.16 L 1055.25 655.44 C 1055.25 655.73 1055.29 656.01 1055.45 656.34 C 1055.61 656.67 1056.04 657.28 1056.91 657.28 L 1062.9 657.28 C 1063.78 657.28 1064.21 656.67 1064.37 656.34 C 1064.53 656.01 1064.57 655.73 1064.57 655.44 L 1064.57 645.16 C 1064.57 644.87 1064.53 644.6 1064.37 644.27 C 1064.21 643.94 1063.78 643.32 1062.9 643.32 Z M 1044.48 643.32 C 1043.6 643.32 1043.17 643.94 1043.01 644.27 C 1042.85 644.6 1042.81 644.87 1042.81 645.16 L 1042.81 655.44 C 1042.81 655.73 1042.85 656.01 1043.01 656.34 C 1043.17 656.67 1043.6 657.28 1044.48 657.28 L 1050.47 657.28 C 1051.34 657.28 1051.77 656.67 1051.93 656.34 C 1052.09 656.01 1052.13 655.73 1052.13 655.44 L 1052.13 645.16 C 1052.13 644.87 1052.09 644.6 1051.93 644.27 C 1051.77 643.94 1051.34 643.32 1050.47 643.32 Z M 1032.04 643.32 C 1031.16 643.32 1030.73 643.94 1030.57 644.27 C 1030.41 644.6 1030.38 644.87 1030.38 645.16 L 1030.38 655.44 C 1030.38 655.73 1030.41 656.01 1030.57 656.34 C 1030.73 656.67 1031.16 657.28 1032.04 657.28 L 1038.03 657.28 C 1038.9 657.28 1039.33 656.67 1039.49 656.34 C 1039.65 656.01 1039.69 655.73 1039.69 655.44 L 1039.69 645.16 C 1039.69 644.87 1039.65 644.6 1039.49 644.27 C 1039.33 643.94 1038.9 643.32 1038.03 643.32 Z M 1026.43 640.21 L 1068.54 640.21 C 1070.08 640.21 1070.87 641.49 1070.87 642.96 L 1070.88 711.82 L 1024.09 711.79 L 1024.12 642.54 C 1024.12 641.27 1024.96 640.21 1026.43 640.21 Z M 1068.54 637.08 L 1026.58 637.11 C 1023.89 637.11 1021.05 639.1 1021.05 642.68 L 1021 712.8 C 1021 714.21 1021.72 714.9 1023.01 714.9 L 1071.8 714.92 C 1073.14 714.92 1073.93 714.35 1073.93 712.9 L 1074 642.89 C 1074 639.77 1071.6 637.08 1068.54 637.08 Z" fill="#000000" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 722px; margin-left: 1048px;"><div data-drawio-colors="color: #232F3E; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(35, 47, 62); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;">10.0.0.0/8</div></div></div></foreignObject><text x="1048" y="738" fill="#232F3E" font-family="Helvetica" font-size="16px" text-anchor="middle" font-weight="bold">10.0.0....</text></switch></g><rect x="791" y="524" width="78" height="78" fill="none" stroke="none" pointer-events="all"/><ellipse cx="830" cy="563" rx="39" ry="39" fill="#ffffff" stroke="none" pointer-events="all"/><path d="M 862.28 564.25 L 854.52 572.01 L 852.02 569.5 L 856.75 564.77 L 831.77 564.77 L 831.77 589.74 L 836.5 585.01 L 839.01 587.52 L 831.25 595.28 C 830.91 595.62 830.45 595.8 830 595.8 C 829.55 595.8 829.09 595.62 828.75 595.28 L 820.99 587.52 L 823.5 585.01 L 828.23 589.74 L 828.23 564.77 L 803.26 564.77 L 807.99 569.5 L 805.48 572.01 L 797.73 564.25 C 797.03 563.56 797.03 562.44 797.73 561.75 L 805.48 553.99 L 807.99 556.5 L 803.26 561.23 L 828.23 561.23 L 828.23 536.25 L 823.5 540.98 L 820.99 538.48 L 828.75 530.72 C 829.44 530.03 830.56 530.03 831.25 530.72 L 839.01 538.48 L 836.5 540.98 L 831.77 536.25 L 831.77 561.23 L 856.75 561.23 L 852.02 556.5 L 854.52 553.99 L 862.28 561.75 C 862.97 562.44 862.97 563.56 862.28 564.25 M 830 598.45 C 810.45 598.45 794.55 582.55 794.55 563 C 794.55 543.45 810.45 527.55 830 527.55 C 849.55 527.55 865.45 543.45 865.45 563 C 865.45 582.55 849.55 598.45 830 598.45 M 830 524 C 808.5 524 791 541.5 791 563 C 791 584.5 808.5 602 830 602 C 851.5 602 869 584.5 869 563 C 869 541.5 851.5 524 830 524" fill="#4d27aa" stroke="none" pointer-events="all"/><path d="M 875.37 563 L 1016.3 563" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 870.12 563 L 877.12 559.5 L 875.37 563 L 877.12 566.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 1021.55 563 L 1014.55 566.5 L 1016.3 563 L 1014.55 559.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><rect x="1022.5" y="524" width="50" height="78" fill="none" stroke="none" pointer-events="all"/><rect x="1036.68" y="525.75" width="21.02" height="24.53" rx="3.15" ry="3.15" fill="#ffffff" stroke="none" pointer-events="all"/><rect x="1024.42" y="543.27" width="45.55" height="57.81" rx="6.83" ry="6.83" fill="#ffffff" stroke="none" pointer-events="all"/><path d="M 1062.64 595.51 L 1066.15 595.51 L 1066.15 586.22 L 1062.64 586.22 Z M 1056.45 595.52 L 1059.96 595.52 L 1059.96 586.22 L 1056.45 586.22 Z M 1048.73 595.52 L 1052.24 595.52 L 1052.24 586.22 L 1048.73 586.22 Z M 1042.61 595.52 L 1046.12 595.52 L 1046.12 586.22 L 1042.61 586.22 Z M 1034.82 595.52 L 1038.33 595.52 L 1038.33 586.22 L 1034.82 586.22 Z M 1028.56 595.52 L 1032.06 595.52 L 1032.06 586.22 L 1028.56 586.22 Z M 1062.64 581.53 L 1066.15 581.53 L 1066.15 573.89 L 1062.64 573.89 Z M 1056.45 581.53 L 1059.96 581.53 L 1059.96 573.89 L 1056.45 573.89 Z M 1048.73 581.53 L 1052.24 581.53 L 1052.24 573.89 L 1048.73 573.89 Z M 1042.61 581.53 L 1046.12 581.53 L 1046.12 573.89 L 1042.61 573.89 Z M 1034.82 581.53 L 1038.33 581.53 L 1038.33 573.89 L 1034.82 573.89 Z M 1028.56 581.53 L 1032.06 581.53 L 1032.06 573.89 L 1028.56 573.89 Z M 1062.64 569.23 L 1066.15 569.23 L 1066.15 561.58 L 1062.64 561.58 Z M 1056.45 569.23 L 1059.96 569.23 L 1059.96 561.58 L 1056.45 561.58 Z M 1048.73 569.23 L 1052.24 569.23 L 1052.24 561.58 L 1048.73 561.58 Z M 1042.61 569.23 L 1046.12 569.23 L 1046.12 561.58 L 1042.61 561.58 Z M 1034.82 569.23 L 1038.33 569.23 L 1038.33 561.58 L 1034.82 561.58 Z M 1028.56 569.23 L 1032.06 569.23 L 1032.06 561.58 L 1028.56 561.58 Z M 1062.64 556.99 L 1066.15 556.99 L 1066.15 549.35 L 1062.64 549.35 Z M 1056.45 556.99 L 1059.96 556.99 L 1059.96 549.35 L 1056.45 549.35 Z M 1048.73 556.99 L 1052.24 556.99 L 1052.24 549.35 L 1048.73 549.35 Z M 1042.61 556.99 L 1046.12 556.99 L 1046.12 549.35 L 1042.61 549.35 Z M 1034.82 556.99 L 1038.33 556.99 L 1038.33 549.35 L 1034.82 549.35 Z M 1028.56 556.99 L 1032.06 556.99 L 1032.06 549.35 L 1028.56 549.35 Z M 1048.78 544.58 L 1052.29 544.58 L 1052.29 530.87 L 1048.78 530.87 Z M 1042.59 544.58 L 1046.1 544.58 L 1046.1 530.87 L 1042.59 530.87 Z M 1068.83 598.5 L 1026.17 598.5 L 1026.17 546.51 L 1036.5 546.51 C 1037.47 546.51 1038.25 545.73 1038.25 544.76 L 1038.25 527.5 L 1056.72 527.5 L 1056.72 544.76 C 1056.72 545.73 1057.5 546.51 1058.47 546.51 L 1068.83 546.51 Z M 1069.2 543.01 L 1060.22 543.01 L 1060.22 527.13 C 1060.22 525.41 1058.82 524 1057.09 524 L 1037.88 524 C 1036.16 524 1034.75 525.41 1034.75 527.13 L 1034.75 543.01 L 1025.8 543.01 C 1024.07 543.01 1022.66 544.41 1022.66 546.14 L 1022.66 598.87 C 1022.66 600.59 1024.07 602 1025.8 602 L 1069.2 602 C 1070.93 602 1072.34 600.59 1072.34 598.87 L 1072.34 546.14 C 1072.34 544.41 1070.93 543.01 1069.2 543.01 Z" fill="#000000" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 609px; margin-left: 1048px;"><div data-drawio-colors="color: #232F3E; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(35, 47, 62); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;">172.16.0.0/12</div></div></div></foreignObject><text x="1048" y="625" fill="#232F3E" font-family="Helvetica" font-size="16px" text-anchor="middle" font-weight="bold">172.16...</text></switch></g><rect x="831" y="781" width="640" height="241" rx="19.28" ry="19.28" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/><rect x="1111" y="793" width="280" height="60" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 278px; height: 1px; padding-top: 823px; margin-left: 1112px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 32px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Namespace "Customer C"</div></div></div></foreignObject><text x="1251" y="833" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="32px" text-anchor="middle">Namespace "Custome...</text></switch></g><rect x="791" y="918" width="78" height="78" fill="none" stroke="none" pointer-events="all"/><ellipse cx="830" cy="957" rx="39" ry="39" fill="#ffffff" stroke="none" pointer-events="all"/><path d="M 862.28 958.25 L 854.52 966.01 L 852.02 963.5 L 856.75 958.77 L 831.77 958.77 L 831.77 983.74 L 836.5 979.01 L 839.01 981.52 L 831.25 989.28 C 830.91 989.62 830.45 989.8 830 989.8 C 829.55 989.8 829.09 989.62 828.75 989.28 L 820.99 981.52 L 823.5 979.01 L 828.23 983.74 L 828.23 958.77 L 803.26 958.77 L 807.99 963.5 L 805.48 966.01 L 797.73 958.25 C 797.03 957.56 797.03 956.44 797.73 955.75 L 805.48 947.99 L 807.99 950.5 L 803.26 955.23 L 828.23 955.23 L 828.23 930.25 L 823.5 934.98 L 820.99 932.48 L 828.75 924.72 C 829.44 924.03 830.56 924.03 831.25 924.72 L 839.01 932.48 L 836.5 934.98 L 831.77 930.25 L 831.77 955.23 L 856.75 955.23 L 852.02 950.5 L 854.52 947.99 L 862.28 955.75 C 862.97 956.44 862.97 957.56 862.28 958.25 M 830 992.45 C 810.45 992.45 794.55 976.55 794.55 957 C 794.55 937.45 810.45 921.55 830 921.55 C 849.55 921.55 865.45 937.45 865.45 957 C 865.45 976.55 849.55 992.45 830 992.45 M 830 918 C 808.5 918 791 935.5 791 957 C 791 978.5 808.5 996 830 996 C 851.5 996 869 978.5 869 957 C 869 935.5 851.5 918 830 918" fill="#4d27aa" stroke="none" pointer-events="all"/><path d="M 875.37 957 L 1014.63 957" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 870.12 957 L 877.12 953.5 L 875.37 957 L 877.12 960.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 1019.88 957 L 1012.88 960.5 L 1014.63 957 L 1012.88 953.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><rect x="1021" y="918" width="53" height="78" fill="none" stroke="none" pointer-events="all"/><rect x="1022.99" y="920.07" width="49.86" height="74.78" fill="#ffffff" stroke="none" pointer-events="all"/><path d="M 1058.24 961.6 L 1061.57 961.6 L 1061.57 969.57 L 1058.24 969.57 Z M 1045.8 961.6 L 1049.14 961.6 L 1049.14 969.57 L 1045.8 969.57 Z M 1033.37 961.6 L 1036.7 961.6 L 1036.7 969.57 L 1033.37 969.57 Z M 1056.91 958.61 C 1056.04 958.61 1055.61 959.22 1055.45 959.55 C 1055.29 959.88 1055.25 960.16 1055.25 960.45 L 1055.25 970.72 C 1055.25 971.01 1055.29 971.29 1055.45 971.62 C 1055.61 971.95 1056.04 972.56 1056.91 972.56 L 1062.9 972.56 C 1063.78 972.56 1064.21 971.95 1064.37 971.62 C 1064.53 971.29 1064.57 971.01 1064.57 970.72 L 1064.57 960.45 C 1064.57 960.16 1064.53 959.88 1064.37 959.55 C 1064.21 959.22 1063.78 958.61 1062.9 958.61 Z M 1044.48 958.61 C 1043.6 958.61 1043.17 959.22 1043.01 959.55 C 1042.85 959.88 1042.81 960.16 1042.81 960.45 L 1042.81 970.72 C 1042.81 971.01 1042.85 971.29 1043.01 971.62 C 1043.17 971.95 1043.6 972.56 1044.48 972.56 L 1050.47 972.56 C 1051.34 972.56 1051.77 971.95 1051.93 971.62 C 1052.09 971.29 1052.13 971.01 1052.13 970.72 L 1052.13 960.45 C 1052.13 960.16 1052.09 959.88 1051.93 959.55 C 1051.77 959.22 1051.34 958.61 1050.47 958.61 Z M 1032.04 958.61 C 1031.16 958.61 1030.73 959.22 1030.57 959.55 C 1030.41 959.88 1030.38 960.16 1030.38 960.45 L 1030.38 970.72 C 1030.38 971.01 1030.41 971.29 1030.57 971.62 C 1030.73 971.95 1031.16 972.56 1032.04 972.56 L 1038.03 972.56 C 1038.9 972.56 1039.33 971.95 1039.49 971.62 C 1039.65 971.29 1039.69 971.01 1039.69 970.72 L 1039.69 960.45 C 1039.69 960.16 1039.65 959.88 1039.49 959.55 C 1039.33 959.22 1038.9 958.61 1038.03 958.61 Z M 1058.24 944.46 L 1061.57 944.46 L 1061.57 952.43 L 1058.24 952.43 Z M 1045.8 944.46 L 1049.14 944.46 L 1049.14 952.43 L 1045.8 952.43 Z M 1033.37 944.46 L 1036.7 944.46 L 1036.7 952.43 L 1033.37 952.43 Z M 1056.91 941.46 C 1056.04 941.46 1055.61 942.08 1055.45 942.41 C 1055.29 942.74 1055.25 943.02 1055.25 943.3 L 1055.25 953.58 C 1055.25 953.87 1055.29 954.15 1055.45 954.48 C 1055.61 954.81 1056.04 955.42 1056.91 955.42 L 1062.9 955.42 C 1063.78 955.42 1064.21 954.81 1064.37 954.48 C 1064.53 954.15 1064.57 953.87 1064.57 953.58 L 1064.57 943.3 C 1064.57 943.02 1064.53 942.74 1064.37 942.41 C 1064.21 942.08 1063.78 941.46 1062.9 941.46 Z M 1044.48 941.46 C 1043.6 941.46 1043.17 942.08 1043.01 942.41 C 1042.85 942.74 1042.81 943.02 1042.81 943.3 L 1042.81 953.58 C 1042.81 953.87 1042.85 954.15 1043.01 954.48 C 1043.17 954.81 1043.6 955.42 1044.48 955.42 L 1050.47 955.42 C 1051.34 955.42 1051.77 954.81 1051.93 954.48 C 1052.09 954.15 1052.13 953.87 1052.13 953.58 L 1052.13 943.3 C 1052.13 943.02 1052.09 942.74 1051.93 942.41 C 1051.77 942.08 1051.34 941.46 1050.47 941.46 Z M 1032.04 941.46 C 1031.16 941.46 1030.73 942.08 1030.57 942.41 C 1030.41 942.74 1030.38 943.02 1030.38 943.3 L 1030.38 953.58 C 1030.38 953.87 1030.41 954.15 1030.57 954.48 C 1030.73 954.81 1031.16 955.42 1032.04 955.42 L 1038.03 955.42 C 1038.9 955.42 1039.33 954.81 1039.49 954.48 C 1039.65 954.15 1039.69 953.87 1039.69 953.58 L 1039.69 943.3 C 1039.69 943.02 1039.65 942.74 1039.49 942.41 C 1039.33 942.08 1038.9 941.46 1038.03 941.46 Z M 1058.24 927.32 L 1061.57 927.32 L 1061.57 935.29 L 1058.24 935.29 Z M 1045.8 927.32 L 1049.14 927.32 L 1049.14 935.29 L 1045.8 935.29 Z M 1033.37 927.32 L 1036.7 927.32 L 1036.7 935.29 L 1033.37 935.29 Z M 1056.91 924.32 C 1056.04 924.32 1055.61 924.94 1055.45 925.27 C 1055.29 925.6 1055.25 925.87 1055.25 926.16 L 1055.25 936.44 C 1055.25 936.73 1055.29 937.01 1055.45 937.34 C 1055.61 937.67 1056.04 938.28 1056.91 938.28 L 1062.9 938.28 C 1063.78 938.28 1064.21 937.67 1064.37 937.34 C 1064.53 937.01 1064.57 936.73 1064.57 936.44 L 1064.57 926.16 C 1064.57 925.87 1064.53 925.6 1064.37 925.27 C 1064.21 924.94 1063.78 924.32 1062.9 924.32 Z M 1044.48 924.32 C 1043.6 924.32 1043.17 924.94 1043.01 925.27 C 1042.85 925.6 1042.81 925.87 1042.81 926.16 L 1042.81 936.44 C 1042.81 936.73 1042.85 937.01 1043.01 937.34 C 1043.17 937.67 1043.6 938.28 1044.48 938.28 L 1050.47 938.28 C 1051.34 938.28 1051.77 937.67 1051.93 937.34 C 1052.09 937.01 1052.13 936.73 1052.13 936.44 L 1052.13 926.16 C 1052.13 925.87 1052.09 925.6 1051.93 925.27 C 1051.77 924.94 1051.34 924.32 1050.47 924.32 Z M 1032.04 924.32 C 1031.16 924.32 1030.73 924.94 1030.57 925.27 C 1030.41 925.6 1030.38 925.87 1030.38 926.16 L 1030.38 936.44 C 1030.38 936.73 1030.41 937.01 1030.57 937.34 C 1030.73 937.67 1031.16 938.28 1032.04 938.28 L 1038.03 938.28 C 1038.9 938.28 1039.33 937.67 1039.49 937.34 C 1039.65 937.01 1039.69 936.73 1039.69 936.44 L 1039.69 926.16 C 1039.69 925.87 1039.65 925.6 1039.49 925.27 C 1039.33 924.94 1038.9 924.32 1038.03 924.32 Z M 1026.43 921.21 L 1068.54 921.21 C 1070.08 921.21 1070.87 922.49 1070.87 923.96 L 1070.88 992.82 L 1024.09 992.79 L 1024.12 923.54 C 1024.12 922.27 1024.96 921.21 1026.43 921.21 Z M 1068.54 918.08 L 1026.58 918.11 C 1023.89 918.11 1021.05 920.1 1021.05 923.68 L 1021 993.8 C 1021 995.21 1021.72 995.9 1023.01 995.9 L 1071.8 995.92 C 1073.14 995.92 1073.93 995.35 1073.93 993.9 L 1074 923.89 C 1074 920.77 1071.6 918.08 1068.54 918.08 Z" fill="#000000" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 1003px; margin-left: 1048px;"><div data-drawio-colors="color: #232F3E; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(35, 47, 62); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;">192.168.0.0/23</div></div></div></foreignObject><text x="1048" y="1019" fill="#232F3E" font-family="Helvetica" font-size="16px" text-anchor="middle" font-weight="bold">192.168...</text></switch></g><rect x="791" y="805" width="78" height="78" fill="none" stroke="none" pointer-events="all"/><ellipse cx="830" cy="844" rx="39" ry="39" fill="#ffffff" stroke="none" pointer-events="all"/><path d="M 862.28 845.25 L 854.52 853.01 L 852.02 850.5 L 856.75 845.77 L 831.77 845.77 L 831.77 870.74 L 836.5 866.01 L 839.01 868.52 L 831.25 876.28 C 830.91 876.62 830.45 876.8 830 876.8 C 829.55 876.8 829.09 876.62 828.75 876.28 L 820.99 868.52 L 823.5 866.01 L 828.23 870.74 L 828.23 845.77 L 803.26 845.77 L 807.99 850.5 L 805.48 853.01 L 797.73 845.25 C 797.03 844.56 797.03 843.44 797.73 842.75 L 805.48 834.99 L 807.99 837.5 L 803.26 842.23 L 828.23 842.23 L 828.23 817.25 L 823.5 821.98 L 820.99 819.48 L 828.75 811.72 C 829.44 811.03 830.56 811.03 831.25 811.72 L 839.01 819.48 L 836.5 821.98 L 831.77 817.25 L 831.77 842.23 L 856.75 842.23 L 852.02 837.5 L 854.52 834.99 L 862.28 842.75 C 862.97 843.44 862.97 844.56 862.28 845.25 M 830 879.45 C 810.45 879.45 794.55 863.55 794.55 844 C 794.55 824.45 810.45 808.55 830 808.55 C 849.55 808.55 865.45 824.45 865.45 844 C 865.45 863.55 849.55 879.45 830 879.45 M 830 805 C 808.5 805 791 822.5 791 844 C 791 865.5 808.5 883 830 883 C 851.5 883 869 865.5 869 844 C 869 822.5 851.5 805 830 805" fill="#4d27aa" stroke="none" pointer-events="all"/><path d="M 875.37 844 L 1016.3 844" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 870.12 844 L 877.12 840.5 L 875.37 844 L 877.12 847.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 1021.55 844 L 1014.55 847.5 L 1016.3 844 L 1014.55 840.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><rect x="1022.5" y="805" width="50" height="78" fill="none" stroke="none" pointer-events="all"/><rect x="1036.68" y="806.75" width="21.02" height="24.53" rx="3.15" ry="3.15" fill="#ffffff" stroke="none" pointer-events="all"/><rect x="1024.42" y="824.27" width="45.55" height="57.81" rx="6.83" ry="6.83" fill="#ffffff" stroke="none" pointer-events="all"/><path d="M 1062.64 876.51 L 1066.15 876.51 L 1066.15 867.22 L 1062.64 867.22 Z M 1056.45 876.52 L 1059.96 876.52 L 1059.96 867.22 L 1056.45 867.22 Z M 1048.73 876.52 L 1052.24 876.52 L 1052.24 867.22 L 1048.73 867.22 Z M 1042.61 876.52 L 1046.12 876.52 L 1046.12 867.22 L 1042.61 867.22 Z M 1034.82 876.52 L 1038.33 876.52 L 1038.33 867.22 L 1034.82 867.22 Z M 1028.56 876.52 L 1032.06 876.52 L 1032.06 867.22 L 1028.56 867.22 Z M 1062.64 862.53 L 1066.15 862.53 L 1066.15 854.89 L 1062.64 854.89 Z M 1056.45 862.53 L 1059.96 862.53 L 1059.96 854.89 L 1056.45 854.89 Z M 1048.73 862.53 L 1052.24 862.53 L 1052.24 854.89 L 1048.73 854.89 Z M 1042.61 862.53 L 1046.12 862.53 L 1046.12 854.89 L 1042.61 854.89 Z M 1034.82 862.53 L 1038.33 862.53 L 1038.33 854.89 L 1034.82 854.89 Z M 1028.56 862.53 L 1032.06 862.53 L 1032.06 854.89 L 1028.56 854.89 Z M 1062.64 850.23 L 1066.15 850.23 L 1066.15 842.58 L 1062.64 842.58 Z M 1056.45 850.23 L 1059.96 850.23 L 1059.96 842.58 L 1056.45 842.58 Z M 1048.73 850.23 L 1052.24 850.23 L 1052.24 842.58 L 1048.73 842.58 Z M 1042.61 850.23 L 1046.12 850.23 L 1046.12 842.58 L 1042.61 842.58 Z M 1034.82 850.23 L 1038.33 850.23 L 1038.33 842.58 L 1034.82 842.58 Z M 1028.56 850.23 L 1032.06 850.23 L 1032.06 842.58 L 1028.56 842.58 Z M 1062.64 837.99 L 1066.15 837.99 L 1066.15 830.35 L 1062.64 830.35 Z M 1056.45 837.99 L 1059.96 837.99 L 1059.96 830.35 L 1056.45 830.35 Z M 1048.73 837.99 L 1052.24 837.99 L 1052.24 830.35 L 1048.73 830.35 Z M 1042.61 837.99 L 1046.12 837.99 L 1046.12 830.35 L 1042.61 830.35 Z M 1034.82 837.99 L 1038.33 837.99 L 1038.33 830.35 L 1034.82 830.35 Z M 1028.56 837.99 L 1032.06 837.99 L 1032.06 830.35 L 1028.56 830.35 Z M 1048.78 825.58 L 1052.29 825.58 L 1052.29 811.87 L 1048.78 811.87 Z M 1042.59 825.58 L 1046.1 825.58 L 1046.1 811.87 L 1042.59 811.87 Z M 1068.83 879.5 L 1026.17 879.5 L 1026.17 827.51 L 1036.5 827.51 C 1037.47 827.51 1038.25 826.73 1038.25 825.76 L 1038.25 808.5 L 1056.72 808.5 L 1056.72 825.76 C 1056.72 826.73 1057.5 827.51 1058.47 827.51 L 1068.83 827.51 Z M 1069.2 824.01 L 1060.22 824.01 L 1060.22 808.13 C 1060.22 806.41 1058.82 805 1057.09 805 L 1037.88 805 C 1036.16 805 1034.75 806.41 1034.75 808.13 L 1034.75 824.01 L 1025.8 824.01 C 1024.07 824.01 1022.66 825.41 1022.66 827.14 L 1022.66 879.87 C 1022.66 881.59 1024.07 883 1025.8 883 L 1069.2 883 C 1070.93 883 1072.34 881.59 1072.34 879.87 L 1072.34 827.14 C 1072.34 825.41 1070.93 824.01 1069.2 824.01 Z" fill="#000000" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 890px; margin-left: 1048px;"><div data-drawio-colors="color: #232F3E; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(35, 47, 62); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;">192.168.2.0/23</div></div></div></foreignObject><text x="1048" y="906" fill="#232F3E" font-family="Helvetica" font-size="16px" text-anchor="middle" font-weight="bold">192.16...</text></switch></g><rect x="1176" y="883" width="150" height="99" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 142px; height: 1px; padding-top: 873px; margin-left: 1181px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 109px; overflow: hidden;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><h2 style="line-height: 80%;">Prefixes</h2><pre style="line-height: 80%; font-size: 18px;"><b style=""><font style="font-size: 18px;">192.168.0.0/23</font></b></pre><pre style="line-height: 80%; font-size: 18px;"><b style=""><font style="font-size: 18px;">192.168.2.0/23</font></b></pre></div></div></div></foreignObject><text x="1181" y="889" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="16px">Prefixes...</text></switch></g><rect x="1176" y="605" width="150" height="98" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 142px; height: 1px; padding-top: 595px; margin-left: 1181px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 108px; overflow: hidden;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><h2 style="line-height: 80%;">Prefixes</h2><pre style="line-height: 80%; font-size: 18px;"><b style=""><font style="font-size: 18px;">10.0.0.0/8</font></b></pre><pre style="line-height: 80%; font-size: 18px;"><b style=""><font style="font-size: 18px;">172.16.0.0/12</font></b></pre></div></div></div></foreignObject><text x="1181" y="611" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="16px">Prefixes...</text></switch></g><path d="M 405.37 911 L 590 911 L 590 957 L 784.63 957" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 400.12 911 L 407.12 907.5 L 405.37 911 L 407.12 914.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 789.88 957 L 782.88 960.5 L 784.63 957 L 782.88 953.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 921px; margin-left: 518px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;"><pre>100.64.0.10/31</pre></div></div></div></foreignObject><text x="518" y="926" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="16px" text-anchor="middle" font-weight="bold">100.64....</text></switch></g><path d="M 405.37 891 L 590 891 L 590 844 L 784.63 844" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 400.12 891 L 407.12 887.5 L 405.37 891 L 407.12 894.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 789.88 844 L 782.88 847.5 L 784.63 844 L 782.88 840.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 881px; margin-left: 520px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;"><pre>100.64.0.8/31</pre></div></div></div></foreignObject><text x="520" y="886" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="16px" text-anchor="middle" font-weight="bold">100.64....</text></switch></g><rect x="51" y="251.5" width="160" height="180" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 152px; height: 1px; padding-top: 242px; margin-left: 56px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 190px; overflow: hidden;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><h2 style="line-height: 80%;">Prefixes</h2><pre style="line-height: 80%; font-size: 18px;"><b style=""><font style="font-size: 18px;">10.0.0.0/8</font></b></pre><pre style="line-height: 80%; font-size: 18px;"><b style=""><font style="font-size: 18px;">- 10.0.0.0/9</font></b></pre><pre style="line-height: 80%; font-size: 18px;"><b style=""><font style="font-size: 18px;">- 10.128.0.0/9</font></b></pre><pre style="line-height: 80%; font-size: 18px;"><b>192.168.0.0/16</b></pre></div></div></div></foreignObject><text x="56" y="258" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="16px">Prefixes...</text></switch></g><path d="M 416.5 413.5 C 380.1 413.5 371 446.5 400.12 453.1 C 371 467.62 403.76 499.3 427.42 486.1 C 443.8 512.5 498.4 512.5 516.6 486.1 C 553 486.1 553 459.7 530.25 446.5 C 553 420.1 516.6 393.7 484.75 406.9 C 462 387.1 425.6 387.1 416.5 413.5 Z" fill="#ffffff" stroke="rgb(0, 0, 0)" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 180px; height: 1px; padding-top: 447px; margin-left: 372px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">MPLS VRF<br />CustA</div></div></div></foreignObject><text x="462" y="451" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="16px" text-anchor="middle">MPLS VRF...</text></switch></g><rect x="152" y="583.5" width="78" height="76" fill="none" stroke="none" pointer-events="all"/><rect x="154.1" y="585.27" width="74.16" height="49.44" fill="#ffffff" stroke="none" pointer-events="all"/><rect x="154.1" y="643.53" width="74.16" height="12.36" fill="#ffffff" stroke="none" pointer-events="all"/><path d="M 225 583.5 L 157.01 583.5 C 154.43 583.5 152.34 585.59 152.34 588.17 L 152.34 633.06 C 152.34 635.63 154.43 637.72 157.01 637.72 L 225 637.72 C 227.57 637.72 229.66 635.63 229.66 633.06 L 229.66 588.17 C 229.66 585.59 227.57 583.5 225 583.5 Z M 226.13 633.06 C 226.13 633.68 225.62 634.19 225 634.19 L 157.01 634.19 C 156.38 634.19 155.87 633.68 155.87 633.06 L 155.87 588.17 C 155.87 587.54 156.38 587.03 157.01 587.03 L 225 587.03 C 225.62 587.03 226.13 587.54 226.13 588.17 Z M 220.92 589.68 L 161.03 589.68 C 159.64 589.68 158.52 590.81 158.52 592.19 L 158.52 629.03 C 158.52 630.42 159.64 631.54 161.03 631.54 L 220.92 631.54 C 222.3 631.54 223.43 630.42 223.43 629.03 L 223.43 592.19 C 223.43 590.81 222.3 589.68 220.92 589.68 Z M 162.05 628.01 L 162.05 593.21 L 219.9 593.21 L 219.9 628.01 Z M 225 640.65 L 157.01 640.65 C 154.43 640.65 152.34 642.74 152.34 645.32 L 152.34 654.83 C 152.34 657.4 154.43 659.5 157.01 659.5 L 225 659.5 C 227.57 659.5 229.66 657.4 229.66 654.83 L 229.66 645.32 C 229.66 642.74 227.57 640.65 225 640.65 Z M 226.13 654.83 C 226.13 655.46 225.62 655.97 225 655.97 L 157.01 655.97 C 156.38 655.97 155.87 655.46 155.87 654.83 L 155.87 645.32 C 155.87 644.69 156.38 644.18 157.01 644.18 L 225 644.18 C 225.62 644.18 226.13 644.69 226.13 645.32 Z M 223.49 648.43 L 223.49 651.82 C 223.49 652.6 222.86 653.22 222.09 653.22 L 203.12 653.22 C 202.34 653.22 201.72 652.6 201.72 651.82 L 201.72 648.43 C 201.72 647.65 202.34 647.03 203.12 647.03 L 222.09 647.03 C 222.86 647.03 223.49 647.65 223.49 648.43 Z" fill="#000000" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 667px; margin-left: 191px;"><div data-drawio-colors="color: #232F3E; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(35, 47, 62); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;">MGMT Network<br style="font-size: 16px;" />192.168.0.0/16</div></div></div></foreignObject><text x="191" y="683" fill="#232F3E" font-family="Helvetica" font-size="16px" text-anchor="middle" font-weight="bold">MGMT Netwo...</text></switch></g><path d="M 231.61 580.78 L 329.98 372.22" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 229.37 585.53 L 229.19 577.7 L 231.61 580.78 L 235.52 580.69 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 332.22 367.47 L 332.4 375.3 L 329.98 372.22 L 326.07 372.31 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 314.63 620.85 L 236.03 621.45" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 319.88 620.81 L 312.91 624.36 L 314.63 620.85 L 312.86 617.36 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 230.78 621.49 L 237.76 617.94 L 236.03 621.45 L 237.81 624.94 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 332.99 864.6 L 232.5 662.16" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 335.32 869.3 L 329.08 864.58 L 332.99 864.6 L 335.35 861.47 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 230.16 657.46 L 236.41 662.18 L 232.5 662.16 L 230.14 665.29 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 405.37 611 L 590 611 L 590 563 L 784.63 563" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 400.12 611 L 407.12 607.5 L 405.37 611 L 407.12 614.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 789.88 563 L 782.88 566.5 L 784.63 563 L 782.88 559.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 601px; margin-left: 520px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;"><pre>100.64.0.4/31</pre></div></div></div></foreignObject><text x="520" y="606" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="16px" text-anchor="middle" font-weight="bold">100.64....</text></switch></g><path d="M 405.37 631 L 590 631 L 590 676 L 784.63 676" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 400.12 631 L 407.12 627.5 L 405.37 631 L 407.12 634.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 789.88 676 L 782.88 679.5 L 784.63 676 L 782.88 672.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 641px; margin-left: 520px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;"><pre>100.64.0.6/31</pre></div></div></div></foreignObject><text x="520" y="646" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="16px" text-anchor="middle" font-weight="bold">100.64....</text></switch></g><path d="M 390.66 371.87 L 413.14 408.09" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 387.89 367.41 L 394.56 371.51 L 390.66 371.87 L 388.61 375.2 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 415.91 412.55 L 409.24 408.45 L 413.14 408.09 L 415.19 404.76 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 410.5 973.5 C 374.1 973.5 365 1006.5 394.12 1013.1 C 365 1027.62 397.76 1059.3 421.42 1046.1 C 437.8 1072.5 492.4 1072.5 510.6 1046.1 C 547 1046.1 547 1019.7 524.25 1006.5 C 547 980.1 510.6 953.7 478.75 966.9 C 456 947.1 419.6 947.1 410.5 973.5 Z" fill="#ffffff" stroke="rgb(0, 0, 0)" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 180px; height: 1px; padding-top: 1006px; margin-left: 366px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">MPLS VRF<br />CustC</div></div></div></foreignObject><text x="456" y="1011" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="16px" text-anchor="middle">MPLS VRF...</text></switch></g><path d="M 416.5 692.5 C 380.1 692.5 371 725.5 400.12 732.1 C 371 746.62 403.76 778.3 427.42 765.1 C 443.8 791.5 498.4 791.5 516.6 765.1 C 553 765.1 553 738.7 530.25 725.5 C 553 699.1 516.6 672.7 484.75 685.9 C 462 666.1 425.6 666.1 416.5 692.5 Z" fill="#ffffff" stroke="rgb(0, 0, 0)" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 180px; height: 1px; padding-top: 725px; margin-left: 372px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">MPLS VRF<br />CustB</div></div></div></foreignObject><text x="462" y="730" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="16px" text-anchor="middle">MPLS VRF...</text></switch></g><path d="M 390.78 653.13 L 413.02 687.17" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 387.91 648.74 L 394.67 652.68 L 390.78 653.13 L 388.81 656.51 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 415.89 691.56 L 409.13 687.62 L 413.02 687.17 L 414.99 683.79 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 407.65 967.81 L 390.93 934.49" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 410 972.5 L 403.73 967.81 L 407.65 967.81 L 409.99 964.67 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 388.58 929.8 L 394.85 934.49 L 390.93 934.49 L 388.59 937.63 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/></g><switch><g requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"/><a transform="translate(0,-5)" xlink:href="https://www.diagrams.net/doc/faq/svg-export-text-problems" target="_blank"><text text-anchor="middle" font-size="10px" x="50%" y="100%">Text is not SVG - cannot display</text></a></switch></svg>
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
# Namespaces
|
|
2
|
-
|
|
3
|
-
+++ 2.0.0
|
|
4
|
-
|
|
5
|
-
A namespace groups together a set of related but distinct [VRFs](vrf.md), [prefixes](prefix.md), and [IP addresses](ipaddress.md). Fundamentally, its purpose is to serve as a constraint or boundary for uniqueness and duplication of IPAM data. If you have a relatively straightforward network, where there are no overlapping prefixes or duplicated IP addresses, a single namespace may be sufficient to model your entire network, even if it has thousands of IPAM records; however, in the case of a managed service provider network or similar, you may need multiple namespaces to accurately model its complexities and clearly distinguish between otherwise seemingly-duplicate records.
|
|
6
|
-
|
|
7
|
-
Each namespace has a name and a description, and can optionally be associated to a location for informational purposes.
|
|
8
|
-
|
|
9
|
-
Within a given namespace, only a single record may exist for each distinct VRF, prefix, or IP address. Although such a record may be used in multiple locations within your network, such as a VRF being configured on multiple devices, or a virtual IP address being assigned to multiple interfaces or devices, it is fundamentally a single network object in these cases, and Nautobot models this data accordingly.
|
|
10
|
-
|
|
11
|
-
+/- 2.0.0
|
|
12
|
-
This is a change from the Nautobot 1.x data model, in which, for example, each instance of a virtual IP address would typically need to be stored as a distinct database record. On migrating existing data from Nautobot 1.x you may need to do some cleanup of your IPAM data to fit the new models.
|
|
13
|
-
|
|
14
|
-
Namespaces exist in Nautobot to model the _exceptions_ to the above case, where a similarly-named VRF, or a prefix or IP address corresponding to the same subnet or host as another, is actually a distinct entity within your network and needs to be modeled as such. Another example where this might be necessary would be during a corporate merger, where perhaps the separate networks of each company might both use parts of the RFC 1918 `10.0.0.0/8` network space and need to coexist for a time as parallel network namespaces rather than parts of a single combined namespace.
|
|
15
|
-
|
|
16
|
-
## Sample Namespace Implementation Diagram
|
|
17
|
-
|
|
18
|
-

|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
# Prefixes
|
|
2
|
-
|
|
3
|
-
A prefix is an IPv4 or IPv6 network and mask expressed in CIDR notation (e.g. 192.0.2.0/24). A prefix entails only the "network portion" of an IP address: All bits in the address not covered by the mask must be zero. (In other words, a prefix cannot be a specific IP address, except in the case of /32 IPv4 prefixes and /128 IPv6 prefixes.)
|
|
4
|
-
|
|
5
|
-
Each prefix belongs to a specific namespace, and is unique within that namespace. Each prefix can also optionally be assigned to a particular location, as well as to zero or more virtual routing and forwarding (VRF) instances. All prefixes not assigned to a VRF are considered to be in the "global" VRF within their namespace.
|
|
6
|
-
|
|
7
|
-
+/- 2.0.0
|
|
8
|
-
In Nautobot 1.x, prior to the introduction of the namespace data model, a prefix might or might not be unique within its assigned VRF. In Nautobot 2.0, prefixes are always unique within their namespace. You may need to do some cleanup of your data after migrating from Nautobot 1.x to suit the new data requirements.
|
|
9
|
-
|
|
10
|
-
Each prefix must be assigned a [`status`](../../platform-functionality/status.md) and can optionally be assigned a role. These terms are often used interchangeably so it's important to recognize the difference between them. The **status** defines a prefix's operational state. The following statuses are provided by default:
|
|
11
|
-
|
|
12
|
-
* Active - Provisioned and in use
|
|
13
|
-
* Reserved - Designated for future use
|
|
14
|
-
* Deprecated - No longer in use
|
|
15
|
-
|
|
16
|
-
+/- 2.0.0
|
|
17
|
-
The "Container" status was removed and its functionality was replaced by the `Prefix.type` field.
|
|
18
|
-
|
|
19
|
-
On the other hand, a prefix's **role** defines its function. Role assignment is optional and roles are fully customizable. For example, you might create roles to differentiate between production and development infrastructure.
|
|
20
|
-
|
|
21
|
-
A prefix may also be assigned to a VLAN. This association is helpful for associating address space with layer two domains. A VLAN may have multiple prefixes assigned to it.
|
|
22
|
-
|
|
23
|
-
The prefix model can be set to one of three types through the `type` field. The valid prefix types are:
|
|
24
|
-
|
|
25
|
-
* Container
|
|
26
|
-
* Network (default)
|
|
27
|
-
* Pool
|
|
28
|
-
|
|
29
|
-
If a prefix's type is set to "Pool", Nautobot will treat this prefix as a range (such as a NAT pool) wherein every IP address is valid and assignable. This logic is used when identifying available IP addresses within a prefix. If type is set to "Network", Nautobot will assume that the first and last (network and broadcast) addresses within an IPv4 prefix are unusable.
|
|
30
|
-
|
|
31
|
-
+/- 2.0.0
|
|
32
|
-
The `is_pool` field was removed and its functionality was replaced by the `Prefix.type` field.
|
|
33
|
-
|
|
34
|
-
A prefix can be assigned to an [RIR](rir.md) to track which RIR has granted your organization permission to use the specified IP space on the public Internet.
|
|
35
|
-
|
|
36
|
-
The `date_allocated` field can be used to track any date and time you would like to define as the "allocated date" for a prefix. This could be the date an RIR assigned a prefix to your organization or the date a prefix was assigned to a specific internal team.
|
|
37
|
-
|
|
38
|
-
+++ 2.0.0
|
|
39
|
-
The `date_allocated` and `rir` fields were added, migrating data from the removed `Aggregate` model.
|
|
40
|
-
|
|
41
|
-
## Prefix utilization calculation
|
|
42
|
-
|
|
43
|
-
+/- 2.0.0
|
|
44
|
-
|
|
45
|
-
The `get_utilization` method on the `ipam.Prefix` model has been updated in 2.0 to account for the `Prefix.type` field. The behavior is now as follows:
|
|
46
|
-
|
|
47
|
-
* If the `Prefix.type` is `Container`, the utilization is calculated as the sum of the total address space of all child prefixes.
|
|
48
|
-
* If the `Prefix.type` is `Pool`, the utilization is calculated as the sum of the total number of IP addresses within the pool's range.
|
|
49
|
-
* If the `Prefix.type` is `Network`:
|
|
50
|
-
* The utilization is calculated as the sum of the total address space of all child `Pool` prefixes plus the total number of child IP addresses.
|
|
51
|
-
* For IPv4 networks larger than /31, if neither the first or last address is occupied by either a pool or an IP address, they are subtracted from the total size of the prefix.
|
|
52
|
-
|
|
53
|
-
## Prefix hierarchy
|
|
54
|
-
|
|
55
|
-
+++ 2.0.0
|
|
56
|
-
|
|
57
|
-
Prefixes and IP addresses within a namespace are organized into a hierarchy using the `parent` field. There is guidance for the types of prefixes that can be assigned as parents:
|
|
58
|
-
|
|
59
|
-
* A `Prefix` of type `Container` should only have a parent (if any) of type `Container`
|
|
60
|
-
* A `Prefix` of type `Network` should only have a parent (if any) of type `Container`
|
|
61
|
-
* A `Prefix` of type `Pool` should only have a parent (if any) of type `Network`
|
|
62
|
-
* Any `Prefix` can be a root prefix (i.e. have no parent)
|
|
63
|
-
|
|
64
|
-
!!! warning
|
|
65
|
-
In a future release of Nautobot, this guidance will become an enforced data constraint.
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
# Regional Internet Registries (RIRs)
|
|
2
|
-
|
|
3
|
-
[Regional Internet registries](https://en.wikipedia.org/wiki/Regional_Internet_registry) are responsible for the allocation of globally-routable address space. The five RIRs are ARIN, RIPE, APNIC, LACNIC, and AFRINIC. However, some address space has been set aside for internal use, such as defined in RFCs 1918 and 6598. Nautobot considers these RFCs as a sort of RIR as well; that is, an authority which "owns" certain address space. There also exist lower-tier registries which serve particular geographic areas.
|
|
4
|
-
|
|
5
|
-
Users can create whatever RIRs they like and optionally assign prefixes to an RIR. The RIR model includes a boolean flag which indicates whether the RIR allocates only private IP space.
|
|
6
|
-
|
|
7
|
-
For example, suppose your organization has been allocated 104.131.0.0/16 by ARIN. It also makes use of RFC 1918 addressing internally. You would first create RIRs named "ARIN" and "RFC 1918," then create a prefix for each of these top-level networks, assigning it to its respective RIR.
|
|
8
|
-
|
|
9
|
-
+/- 2.0.0
|
|
10
|
-
The `Aggregate` model and its relationships to `RIR` were migrated to the `Prefix` model.
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
# Route Targets
|
|
2
|
-
|
|
3
|
-
A route target is a particular type of [extended BGP community](https://tools.ietf.org/html/rfc4360#section-4) used to control the redistribution of routes among VRF tables in a network. Route targets can be assigned to individual VRFs in Nautobot as import or export targets (or both) to model this exchange in an L3VPN. Each route target must be given a unique name, which should be in a format prescribed by [RFC 4364](https://tools.ietf.org/html/rfc4364#section-4.2), similar to a VR route distinguisher.
|
|
4
|
-
|
|
5
|
-
Each route target can optionally be assigned to a tenant, and may have tags assigned to it.
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
# Services
|
|
2
|
-
|
|
3
|
-
A service represents a layer four TCP or UDP service available on a device or virtual machine. For example, you might want to document that an HTTP service is running on a device. Each service includes a name, protocol, and port number; for example, "SSH (TCP/22)" or "DNS (UDP/53)."
|
|
4
|
-
|
|
5
|
-
A service may optionally be bound to one or more specific IP addresses belonging to its parent device or VM. (If no IP addresses are bound, the service is assumed to be reachable via any assigned IP address.)
|
|
6
|
-
|
|
7
|
-
+/- 2.0.0
|
|
8
|
-
- Renamed `ipaddresses` field to `ip_addresses`.
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# VLANs
|
|
2
|
-
|
|
3
|
-
A VLAN represents an isolated layer two domain, identified by a name and a numeric ID (1-4094) as defined in [IEEE 802.1Q](https://en.wikipedia.org/wiki/IEEE_802.1Q). Each VLAN may be assigned to a location, tenant, and/or VLAN group.
|
|
4
|
-
|
|
5
|
-
Each VLAN must be assigned a [`status`](../../platform-functionality/status.md). The following statuses are available by default:
|
|
6
|
-
|
|
7
|
-
* Active
|
|
8
|
-
* Reserved
|
|
9
|
-
* Deprecated
|
|
10
|
-
|
|
11
|
-
As with prefixes, each VLAN may also be assigned a functional role. Prefixes and VLANs share the same set of customizable roles.
|
|
12
|
-
|
|
13
|
-
+/- 1.5.9
|
|
14
|
-
The maximum `name` length was increased from 64 characters to 255 characters.
|
|
15
|
-
|
|
16
|
-
+/- 2.0.0
|
|
17
|
-
- Renamed `group` field to `vlan_group`.
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
# VLAN Groups
|
|
2
|
-
|
|
3
|
-
VLAN groups can be used to organize VLANs within Nautobot. Each group may optionally be assigned to a specific location, but a group cannot belong to multiple locations.
|
|
4
|
-
|
|
5
|
-
Groups can also be used to enforce uniqueness: Each VLAN within a group must have a unique ID and name. VLANs which are not assigned to a group may have overlapping names and IDs (including VLANs which belong to a common location). For example, you can create two VLANs with ID 123, but they cannot both be assigned to the same group.
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
# Virtual Routing and Forwarding (VRF)
|
|
2
|
-
|
|
3
|
-
A VRF object in Nautobot represents a virtual routing and forwarding (VRF) domain. Each VRF is essentially a separate routing table. VRFs are commonly used to isolate customers or organizations from one another within a network, or to route overlapping address space (e.g. multiple instances of the 10.0.0.0/8 space). Each VRF may be assigned to a specific tenant to aid in organizing the available IP space by customer or internal user.
|
|
4
|
-
|
|
5
|
-
+/- 2.0.0
|
|
6
|
-
Each VRF now belongs to a [namespace](namespace.md), which now serves as the uniqueness boundary for address space, similar to how a VRF with the "enforce unique" flag set behaved in Nautobot 1.x. Prefix and address uniqueness is enforced by the namespace now (regardless of VRF association within that namespace) and the "enforce unique" flag has been removed from VRFs.
|
|
7
|
-
|
|
8
|
-
Each VRF is assigned a name and an optional route distinguisher (RD). The RD is expected to take one of the forms prescribed in [RFC 4364](https://tools.ietf.org/html/rfc4364#section-4.2), however its formatting is not strictly enforced. Any given RD is unique within a namespace; in a future Nautobot release, VRF names will also be enforced to be unique per namespace.
|
|
9
|
-
|
|
10
|
-
Each VRF may have one or more import and/or export route targets applied to it. Route targets are used to control the exchange of routes (prefixes) among VRFs in L3VPNs.
|
|
11
|
-
|
|
12
|
-
Prefixes (and, implicitly, their contained IP addresses) can be assigned to zero or more VRFs in their namespace, as best suits their usage within your network. Any prefix or IP address not assigned to a VRF is said to belong to the "global" VRF within their namespace. It's important to distinguish this from the "global" namespace that you may have defined and which may contain any number of distinct VRFs.
|
|
13
|
-
|
|
14
|
-
+/- 2.0.0
|
|
15
|
-
In Nautobot 1.x, each prefix could only be assigned to at most one VRF, and you would have to create multiple prefix records in the database to reflect a prefix's existence in multiple VRFs. On migrating existing data to Nautobot 2.0, you may need to do some cleanup of your IPAM data to fit the new models.
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
# Tenants
|
|
2
|
-
|
|
3
|
-
A tenant represents a discrete grouping of resources used for administrative purposes. Typically, tenants are used to represent individual customers or internal departments within an organization. The following objects can be assigned to tenants:
|
|
4
|
-
|
|
5
|
-
* Locations
|
|
6
|
-
* Racks
|
|
7
|
-
* Rack reservations
|
|
8
|
-
* Devices
|
|
9
|
-
* VRFs
|
|
10
|
-
* Prefixes
|
|
11
|
-
* IP addresses
|
|
12
|
-
* VLANs
|
|
13
|
-
* Circuits
|
|
14
|
-
* Clusters
|
|
15
|
-
* Virtual machines
|
|
16
|
-
|
|
17
|
-
Tenant assignment is used to signify the ownership of an object in Nautobot. As such, each object may only be owned by a single tenant. For example, if you have a firewall dedicated to a particular customer, you would assign it to the tenant which represents that customer. However, if the firewall serves multiple customers, it doesn't *belong* to any particular customer, so tenant assignment would not be appropriate.
|
|
18
|
-
|
|
19
|
-
+/- 2.0.0
|
|
20
|
-
- Renamed `group` field to `tenant_group`.
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
# Tenant Groups
|
|
2
|
-
|
|
3
|
-
Tenants can be organized by custom groups. For instance, you might create one group called "Customers" and one called "Departments." The assignment of a tenant to a group is optional.
|
|
4
|
-
|
|
5
|
-
Tenant groups may be nested recursively to achieve a multi-level hierarchy. For example, you might have a group called "Customers" containing subgroups of individual tenants grouped by product or account team.
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
# Clusters
|
|
2
|
-
|
|
3
|
-
A cluster is a logical grouping of physical resources within which virtual machines run. A cluster must be assigned a type (technological classification), and may optionally be assigned to a cluster group, location, and/or tenant.
|
|
4
|
-
|
|
5
|
-
Physical devices may be associated with clusters as hosts. This allows users to track on which host(s) a particular virtual machine may reside. However, Nautobot does not support pinning a specific VM within a cluster to a particular host device.
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# Virtual Machines
|
|
2
|
-
|
|
3
|
-
A virtual machine represents a virtual compute instance hosted within a cluster. Each VM must be assigned to exactly one cluster.
|
|
4
|
-
|
|
5
|
-
Like devices, each VM can be assigned a platform and/or functional role, and an operational [`status`](../../platform-functionality/status.md). The following statuses are available by default:
|
|
6
|
-
|
|
7
|
-
* Active
|
|
8
|
-
* Offline
|
|
9
|
-
* Planned
|
|
10
|
-
* Staged
|
|
11
|
-
* Failed
|
|
12
|
-
* Decommissioning
|
|
13
|
-
|
|
14
|
-
Additional fields are available for annotating the vCPU count, memory (GB), and disk (GB) allocated to each VM. Each VM may optionally be assigned to a tenant. Virtual machines may have virtual interfaces assigned to them, but do not support any physical component.
|
|
15
|
-
|
|
16
|
-
+/- 2.0.0
|
|
17
|
-
In Nautobot 1.x, it was not possible to delete an IPAddress or an VMInterface that was serving as the primary IP address (`primary_ip4`/`primary_ip6`) for a VirtualMachine. As of Nautobot 2.0, this is now permitted; doing so will clear out the VirtualMachine's corresponding primary IP value.
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# Interfaces
|
|
2
|
-
|
|
3
|
-
Virtual machine interfaces behave similarly to device interfaces, and can be assigned IP addresses, VLANs, an operational [`status`](../../platform-functionality/status.md) and services. However, given their virtual nature, they lack properties pertaining to physical attributes. For example, VM interfaces do not have a physical type and cannot have cables attached to them.
|
|
4
|
-
|
|
5
|
-
The following operational statuses are available by default:
|
|
6
|
-
|
|
7
|
-
* Planned
|
|
8
|
-
* Maintenance
|
|
9
|
-
* Active
|
|
10
|
-
* Decommissioning
|
|
11
|
-
* Failed
|
|
12
|
-
|
|
13
|
-
+++ 1.4.0
|
|
14
|
-
- Added `bridge` field.
|
|
15
|
-
- Added `parent_interface` field.
|
|
16
|
-
- Added `status` field.
|
|
17
|
-
|
|
18
|
-
+/- 2.0.0
|
|
19
|
-
The relationship to IP addresses has been changed to a many-to-many relationship. This allows an IP address to be assigned to multiple VM interfaces, and a VM interface to have multiple IP addresses assigned to it.
|