mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 01:41:22 -06:00

* Rename circuit to member on CircuitGroupAssignment * Support group assignment for virtual circuits * Update release notes * Introduce separate nav menu heading for circuit groups * Add generic relations for group assignments * Remove obsolete code * Clean up bulk import & extend tests
26 lines
884 B
Markdown
26 lines
884 B
Markdown
# Circuit Group Assignments
|
|
|
|
Circuits can be assigned to [circuit groups](./circuitgroup.md) for correlation purposes. For instance, three circuits, each belonging to a different provider, may each be assigned to the same circuit group. Each assignment may optionally include a priority designation.
|
|
|
|
## Fields
|
|
|
|
### Group
|
|
|
|
The [circuit group](./circuitgroup.md) being assigned.
|
|
|
|
### Member
|
|
|
|
The [circuit](./circuit.md) or [virtual circuit](./virtualcircuit.md) assigned to the group.
|
|
|
|
### Priority
|
|
|
|
The circuit's operation priority relative to its peers within the group. The assignment of a priority is optional. Choices include:
|
|
|
|
* Primary
|
|
* Secondary
|
|
* Tertiary
|
|
* Inactive
|
|
|
|
!!! tip
|
|
Additional priority choices may be defined by setting `CircuitGroupAssignment.priority` under the [`FIELD_CHOICES`](../../configuration/data-validation.md#field_choices) configuration parameter.
|