[PR #309] [MERGED] Closes #111: Implement VLAN groups #12040

Closed
opened 2025-12-29 22:19:17 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/309
Author: @jeremystretch
Created: 7/15/2016
Status: Merged
Merged: 7/15/2016
Merged by: @jeremystretch

Base: developHead: vlan-groups


📝 Commits (1)

📊 Changes

14 files changed (+377 additions, -29 deletions)

View changed files

📝 netbox/ipam/admin.py (+9 -1)
📝 netbox/ipam/api/serializers.py (+21 -2)
📝 netbox/ipam/api/urls.py (+4 -0)
📝 netbox/ipam/api/views.py (+56 -7)
📝 netbox/ipam/filters.py (+30 -1)
📝 netbox/ipam/forms.py (+54 -2)
netbox/ipam/migrations/0003_ipam_add_vlangroups.py (+38 -0)
netbox/ipam/migrations/0004_ipam_vlangroup_uniqueness.py (+27 -0)
📝 netbox/ipam/models.py (+41 -3)
📝 netbox/ipam/tables.py (+26 -2)
📝 netbox/ipam/urls.py (+6 -0)
📝 netbox/ipam/views.py (+28 -1)
📝 netbox/templates/_base.html (+13 -10)
netbox/templates/ipam/vlangroup_list.html (+24 -0)

📄 Description

This introduces the concept of a VLAN group, within which VLAN IDs and names must be unique. VLAN group assignment is optional: VLANs may still be assigned only to a site. VLAN IDs and name uniqueness is not enforced within a site, only within a VLAN group.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/netbox-community/netbox/pull/309 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 7/15/2016 **Status:** ✅ Merged **Merged:** 7/15/2016 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `develop` ← **Head:** `vlan-groups` --- ### 📝 Commits (1) - [`45a8ee7`](https://github.com/netbox-community/netbox/commit/45a8ee7325d19af7594a180299bf4f93510dbf11) Closes #111: Implement VLAN groups ### 📊 Changes **14 files changed** (+377 additions, -29 deletions) <details> <summary>View changed files</summary> 📝 `netbox/ipam/admin.py` (+9 -1) 📝 `netbox/ipam/api/serializers.py` (+21 -2) 📝 `netbox/ipam/api/urls.py` (+4 -0) 📝 `netbox/ipam/api/views.py` (+56 -7) 📝 `netbox/ipam/filters.py` (+30 -1) 📝 `netbox/ipam/forms.py` (+54 -2) ➕ `netbox/ipam/migrations/0003_ipam_add_vlangroups.py` (+38 -0) ➕ `netbox/ipam/migrations/0004_ipam_vlangroup_uniqueness.py` (+27 -0) 📝 `netbox/ipam/models.py` (+41 -3) 📝 `netbox/ipam/tables.py` (+26 -2) 📝 `netbox/ipam/urls.py` (+6 -0) 📝 `netbox/ipam/views.py` (+28 -1) 📝 `netbox/templates/_base.html` (+13 -10) ➕ `netbox/templates/ipam/vlangroup_list.html` (+24 -0) </details> ### 📄 Description This introduces the concept of a VLAN group, within which VLAN IDs and names must be unique. VLAN group assignment is optional: VLANs may still be assigned only to a site. VLAN IDs and name uniqueness is not enforced within a site, only within a VLAN group. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 22:19:17 +01:00
adam closed this issue 2025-12-29 22:19:17 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12040