mkdocs.yml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. site_name: NetBox Documentation
  2. site_dir: netbox/project-static/docs
  3. site_url: https://docs.netbox.dev/
  4. repo_name: netbox-community/netbox
  5. repo_url: https://github.com/netbox-community/netbox
  6. theme:
  7. name: material
  8. custom_dir: docs/_theme/
  9. icon:
  10. repo: fontawesome/brands/github
  11. palette:
  12. - media: "(prefers-color-scheme: light)"
  13. scheme: default
  14. toggle:
  15. icon: material/lightbulb-outline
  16. name: Switch to Dark Mode
  17. - media: "(prefers-color-scheme: dark)"
  18. scheme: slate
  19. toggle:
  20. icon: material/lightbulb
  21. name: Switch to Light Mode
  22. plugins:
  23. - search
  24. - mkdocstrings:
  25. handlers:
  26. python:
  27. setup_commands:
  28. - import os
  29. - import django
  30. - os.chdir('netbox/')
  31. - os.environ.setdefault("DJANGO_SETTINGS_MODULE", "netbox.settings")
  32. - django.setup()
  33. rendering:
  34. heading_level: 3
  35. members_order: source
  36. show_root_heading: true
  37. show_root_full_path: false
  38. show_root_toc_entry: false
  39. show_source: false
  40. extra:
  41. readthedocs: !ENV READTHEDOCS
  42. social:
  43. - icon: fontawesome/brands/github
  44. link: https://github.com/netbox-community/netbox
  45. - icon: fontawesome/brands/slack
  46. link: https://netdev.chat/
  47. extra_css:
  48. - extra.css
  49. markdown_extensions:
  50. - admonition
  51. - attr_list
  52. - pymdownx.emoji:
  53. emoji_index: !!python/name:materialx.emoji.twemoji
  54. emoji_generator: !!python/name:materialx.emoji.to_svg
  55. - pymdownx.superfences:
  56. custom_fences:
  57. - name: mermaid
  58. class: mermaid
  59. format: !!python/name:pymdownx.superfences.fence_code_format
  60. - pymdownx.tabbed:
  61. alternate_style: true
  62. nav:
  63. - Introduction: 'introduction.md'
  64. - Features:
  65. - Facilities: 'features/facilities.md'
  66. - Devices & Cabling: 'features/devices-cabling.md'
  67. - Power Tracking: 'features/power-tracking.md'
  68. - IPAM: 'features/ipam.md'
  69. - VLAN Management: 'features/vlan-management.md'
  70. - L2VPN & Overlay: 'features/l2vpn-overlay.md'
  71. - Circuits: 'features/circuits.md'
  72. - Wireless: 'features/wireless.md'
  73. - Virtualization: 'features/virtualization.md'
  74. - Tenancy: 'features/tenancy.md'
  75. - Contacts: 'features/contacts.md'
  76. - Context Data: 'features/context-data.md'
  77. - Change Logging: 'features/change-logging.md'
  78. - Journaling: 'features/journaling.md'
  79. - Auth & Permissions: 'features/authentication-permissions.md'
  80. - API & Integration: 'features/api-integration.md'
  81. - Customization: 'features/customization.md'
  82. - Installation & Upgrade:
  83. - Installing NetBox: 'installation/index.md'
  84. - 1. PostgreSQL: 'installation/1-postgresql.md'
  85. - 2. Redis: 'installation/2-redis.md'
  86. - 3. NetBox: 'installation/3-netbox.md'
  87. - 4. Gunicorn: 'installation/4-gunicorn.md'
  88. - 5. HTTP Server: 'installation/5-http-server.md'
  89. - 6. LDAP (Optional): 'installation/6-ldap.md'
  90. - Upgrading NetBox: 'installation/upgrading.md'
  91. - Getting Started:
  92. - Planning: 'getting-started/planning.md'
  93. - Populating Data: 'getting-started/populating-data.md'
  94. - Configuration:
  95. - Configuring NetBox: 'configuration/index.md'
  96. - Required Parameters: 'configuration/required-parameters.md'
  97. - System: 'configuration/system.md'
  98. - Security: 'configuration/security.md'
  99. - Remote Authentication: 'configuration/remote-authentication.md'
  100. - Data & Validation: 'configuration/data-validation.md'
  101. - Default Values: 'configuration/default-values.md'
  102. - Error Reporting: 'configuration/error-reporting.md'
  103. - Plugins: 'configuration/plugins.md'
  104. - NAPALM: 'configuration/napalm.md'
  105. - Date & Time: 'configuration/date-time.md'
  106. - Miscellaneous: 'configuration/miscellaneous.md'
  107. - Development: 'configuration/development.md'
  108. - Customization:
  109. - Custom Fields: 'customization/custom-fields.md'
  110. - Custom Links: 'customization/custom-links.md'
  111. - Custom Validation: 'customization/custom-validation.md'
  112. - Export Templates: 'customization/export-templates.md'
  113. - Reports: 'customization/reports.md'
  114. - Custom Scripts: 'customization/custom-scripts.md'
  115. - Integrations:
  116. - REST API: 'integrations/rest-api.md'
  117. - GraphQL API: 'integrations/graphql-api.md'
  118. - Webhooks: 'integrations/webhooks.md'
  119. - NAPALM: 'integrations/napalm.md'
  120. - Prometheus Metrics: 'integrations/prometheus-metrics.md'
  121. - Plugins:
  122. - Using Plugins: 'plugins/index.md'
  123. - Developing Plugins:
  124. - Getting Started: 'plugins/development/index.md'
  125. - Models: 'plugins/development/models.md'
  126. - Views: 'plugins/development/views.md'
  127. - Navigation: 'plugins/development/navigation.md'
  128. - Templates: 'plugins/development/templates.md'
  129. - Tables: 'plugins/development/tables.md'
  130. - Forms: 'plugins/development/forms.md'
  131. - Filters & Filter Sets: 'plugins/development/filtersets.md'
  132. - REST API: 'plugins/development/rest-api.md'
  133. - GraphQL API: 'plugins/development/graphql-api.md'
  134. - Background Tasks: 'plugins/development/background-tasks.md'
  135. - Exceptions: 'plugins/development/exceptions.md'
  136. - Administration:
  137. - Authentication:
  138. - Overview: 'administration/authentication/overview.md'
  139. - Microsoft Azure AD: 'administration/authentication/microsoft-azure-ad.md'
  140. - Okta: 'administration/authentication/okta.md'
  141. - Permissions: 'administration/permissions.md'
  142. - Error Reporting: 'administration/error-reporting.md'
  143. - Housekeeping: 'administration/housekeeping.md'
  144. - Replicating NetBox: 'administration/replicating-netbox.md'
  145. - NetBox Shell: 'administration/netbox-shell.md'
  146. - Data Model:
  147. - Circuits:
  148. - Circuit: 'models/circuits/circuit.md'
  149. - Circuit Termination: 'models/circuits/circuittermination.md'
  150. - Circuit Type: 'models/circuits/circuittype.md'
  151. - Provider: 'models/circuits/provider.md'
  152. - Provider Network: 'models/circuits/providernetwork.md'
  153. - DCIM:
  154. - Cable: 'models/dcim/cable.md'
  155. - ConsolePort: 'models/dcim/consoleport.md'
  156. - ConsolePortTemplate: 'models/dcim/consoleporttemplate.md'
  157. - ConsoleServerPort: 'models/dcim/consoleserverport.md'
  158. - ConsoleServerPortTemplate: 'models/dcim/consoleserverporttemplate.md'
  159. - Device: 'models/dcim/device.md'
  160. - DeviceBay: 'models/dcim/devicebay.md'
  161. - DeviceBayTemplate: 'models/dcim/devicebaytemplate.md'
  162. - DeviceRole: 'models/dcim/devicerole.md'
  163. - DeviceType: 'models/dcim/devicetype.md'
  164. - FrontPort: 'models/dcim/frontport.md'
  165. - FrontPortTemplate: 'models/dcim/frontporttemplate.md'
  166. - Interface: 'models/dcim/interface.md'
  167. - InterfaceTemplate: 'models/dcim/interfacetemplate.md'
  168. - InventoryItem: 'models/dcim/inventoryitem.md'
  169. - InventoryItemRole: 'models/dcim/inventoryitemrole.md'
  170. - InventoryItemTemplate: 'models/dcim/inventoryitemtemplate.md'
  171. - Location: 'models/dcim/location.md'
  172. - Manufacturer: 'models/dcim/manufacturer.md'
  173. - Module: 'models/dcim/module.md'
  174. - ModuleBay: 'models/dcim/modulebay.md'
  175. - ModuleBayTemplate: 'models/dcim/modulebaytemplate.md'
  176. - ModuleType: 'models/dcim/moduletype.md'
  177. - Platform: 'models/dcim/platform.md'
  178. - PowerFeed: 'models/dcim/powerfeed.md'
  179. - PowerOutlet: 'models/dcim/poweroutlet.md'
  180. - PowerOutletTemplate: 'models/dcim/poweroutlettemplate.md'
  181. - PowerPanel: 'models/dcim/powerpanel.md'
  182. - PowerPort: 'models/dcim/powerport.md'
  183. - PowerPortTemplate: 'models/dcim/powerporttemplate.md'
  184. - Rack: 'models/dcim/rack.md'
  185. - RackReservation: 'models/dcim/rackreservation.md'
  186. - RackRole: 'models/dcim/rackrole.md'
  187. - RearPort: 'models/dcim/rearport.md'
  188. - RearPortTemplate: 'models/dcim/rearporttemplate.md'
  189. - Region: 'models/dcim/region.md'
  190. - Site: 'models/dcim/site.md'
  191. - SiteGroup: 'models/dcim/sitegroup.md'
  192. - VirtualChassis: 'models/dcim/virtualchassis.md'
  193. - Extras:
  194. - ConfigContext: 'models/extras/configcontext.md'
  195. - CustomField: 'models/extras/customfield.md'
  196. - CustomLink: 'models/extras/customlink.md'
  197. - ExportTemplate: 'models/extras/exporttemplate.md'
  198. - ImageAttachment: 'models/extras/imageattachment.md'
  199. - Tag: 'models/extras/tag.md'
  200. - Webhook: 'models/extras/webhook.md'
  201. - IPAM:
  202. - ASN: 'models/ipam/asn.md'
  203. - Aggregate: 'models/ipam/aggregate.md'
  204. - FHRPGroup: 'models/ipam/fhrpgroup.md'
  205. - FHRPGroupAssignment: 'models/ipam/fhrpgroupassignment.md'
  206. - IPAddress: 'models/ipam/ipaddress.md'
  207. - IPRange: 'models/ipam/iprange.md'
  208. - L2VPN: 'models/ipam/l2vpn.md'
  209. - L2VPNTermination: 'models/ipam/l2vpntermination.md'
  210. - Prefix: 'models/ipam/prefix.md'
  211. - RIR: 'models/ipam/rir.md'
  212. - Role: 'models/ipam/role.md'
  213. - RouteTarget: 'models/ipam/routetarget.md'
  214. - Service: 'models/ipam/service.md'
  215. - ServiceTemplate: 'models/ipam/servicetemplate.md'
  216. - VLAN: 'models/ipam/vlan.md'
  217. - VLANGroup: 'models/ipam/vlangroup.md'
  218. - VRF: 'models/ipam/vrf.md'
  219. - Tenancy:
  220. - Contact: 'models/tenancy/contact.md'
  221. - ContactGroup: 'models/tenancy/contactgroup.md'
  222. - ContactRole: 'models/tenancy/contactrole.md'
  223. - Tenant: 'models/tenancy/tenant.md'
  224. - TenantGroup: 'models/tenancy/tenantgroup.md'
  225. - Virtualization:
  226. - Cluster: 'models/virtualization/cluster.md'
  227. - ClusterGroup: 'models/virtualization/clustergroup.md'
  228. - ClusterType: 'models/virtualization/clustertype.md'
  229. - VMInterface: 'models/virtualization/vminterface.md'
  230. - VirtualMachine: 'models/virtualization/virtualmachine.md'
  231. - Wireless:
  232. - WirelessLAN: 'models/wireless/wirelesslan.md'
  233. - WirelessLANGroup: 'models/wireless/wirelesslangroup.md'
  234. - WirelessLink: 'models/wireless/wirelesslink.md'
  235. - Reference:
  236. - Filtering: 'reference/filtering.md'
  237. - Conditions: 'reference/conditions.md'
  238. - Markdown: 'reference/markdown.md'
  239. - Development:
  240. - Introduction: 'development/index.md'
  241. - Getting Started: 'development/getting-started.md'
  242. - Style Guide: 'development/style-guide.md'
  243. - Models: 'development/models.md'
  244. - Adding Models: 'development/adding-models.md'
  245. - Extending Models: 'development/extending-models.md'
  246. - Signals: 'development/signals.md'
  247. - Application Registry: 'development/application-registry.md'
  248. - User Preferences: 'development/user-preferences.md'
  249. - Web UI: 'development/web-ui.md'
  250. - Release Checklist: 'development/release-checklist.md'
  251. - Release Notes:
  252. - Summary: 'release-notes/index.md'
  253. - Version 3.3: 'release-notes/version-3.3.md'
  254. - Version 3.2: 'release-notes/version-3.2.md'
  255. - Version 3.1: 'release-notes/version-3.1.md'
  256. - Version 3.0: 'release-notes/version-3.0.md'
  257. - Version 2.11: 'release-notes/version-2.11.md'
  258. - Version 2.10: 'release-notes/version-2.10.md'
  259. - Version 2.9: 'release-notes/version-2.9.md'
  260. - Version 2.8: 'release-notes/version-2.8.md'
  261. - Version 2.7: 'release-notes/version-2.7.md'
  262. - Version 2.6: 'release-notes/version-2.6.md'
  263. - Version 2.5: 'release-notes/version-2.5.md'
  264. - Version 2.4: 'release-notes/version-2.4.md'
  265. - Version 2.3: 'release-notes/version-2.3.md'
  266. - Version 2.2: 'release-notes/version-2.2.md'
  267. - Version 2.1: 'release-notes/version-2.1.md'
  268. - Version 2.0: 'release-notes/version-2.0.md'